@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ========== RESET & VARIABLES ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #080c14;
  --ink2: #0e1624;
  --ink3: #162030;
  --gold: #c8962b;
  --gold2: #e8b84b;
  --gold3: #f5d98a;
  --white: #ffffff;
  --mist: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --gray: #8896a8;
  --r: 16px;
  --rs: 10px;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  padding-top: 72px;
  margin: 0;
  line-height: 1.5;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

button, a, .property-card, .filter-tab, .amenity-pill, .btn-p, .btn-g, .view-details-btn, .single-featured-box {
  cursor: pointer;
}

/* ========== HEADER SEARCH BAR ========== */
.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-search-icon {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.nav-search-icon svg {
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.55);
}

.nav-search-icon:hover {
  border-color: var(--gold);
  background: rgba(200, 150, 43, 0.1);
}

.nav-search-icon:hover svg {
  color: var(--gold);
}

.nav-search-icon.active {
  border-color: var(--gold);
  background: rgba(200, 150, 43, 0.12);
}

.nav-search-icon.active svg {
  color: var(--gold);
}

/* The expanding input wrapper */
.nav-search-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  background: rgba(8, 12, 20, 0.95);
  border: 1px solid transparent;
  border-radius: 100px;
  overflow: hidden;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
  display: flex;
  align-items: center;
  backdrop-filter: blur(20px);
  pointer-events: none;
}

.nav-search-wrap.expanded {
  width: 300px;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(200, 150, 43, 0.2), 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(200, 150, 43, 0.08);
  pointer-events: all;
}

.nav-search-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(200, 150, 43, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.nav-search-wrap.expanded::before {
  opacity: 1;
}

.nav-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 11px 0 11px 48px;
  width: 100%;
  letter-spacing: 0.3px;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}

.nav-search-wrap.expanded .nav-search-input {
  opacity: 1;
}

.nav-search-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

/* Icon inside the input wrap (always visible) */
.nav-search-ico-inner {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-search-wrap.expanded .nav-search-ico-inner {
  transform: translateY(-50%) scale(1.05);
}

/* Clear button */
.nav-search-clear {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
}

.nav-search-wrap.expanded .nav-search-clear.visible {
  opacity: 1;
  transform: scale(1);
}

.nav-search-clear:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* Shimmer line on focus */
.nav-search-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
  opacity: 0;
  transition: opacity 0.4s, left 0.4s, right 0.4s;
  border-radius: 1px;
}

.nav-search-wrap.expanded::after {
  opacity: 1;
  left: 10%;
  right: 10%;
}

/* DROPDOWN RESULTS */
.nav-search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 340px;
  background: rgba(10, 16, 28, 0.97);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 150, 43, 0.1);
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  z-index: 100;
}

.nav-search-results.show {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

.nsr-header {
  padding: 12px 18px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid var(--border);
}

.nsr-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nsr-item:last-child {
  border-bottom: none;
}

.nsr-item:hover {
  background: rgba(200, 150, 43, 0.07);
}

.nsr-img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--ink3);
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.nsr-info {
  flex: 1;
  min-width: 0;
}

.nsr-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nsr-name mark {
  background: transparent;
  color: var(--gold2);
  font-weight: 700;
}

.nsr-meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
}

.nsr-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold2);
  flex-shrink: 0;
}

.nsr-empty {
  padding: 28px 18px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.25);
}

.nsr-empty svg {
  display: block;
  margin: 0 auto 10px;
  opacity: 0.3;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-search {
    margin-left: auto;
  }
  
  .nav-search-wrap.expanded {
    width: 250px;
  }
  
  .nav-search-results {
    width: 300px;
    right: -20px;
  }
}

/* ========== CUSTOM CURSOR ========== 
#cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999 !important;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

#cur-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(200, 150, 43, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  opacity: 0.8;
}


/* ========== HEADER/NAVIGATION ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.5s, backdrop-filter 0.5s;
  gap: 24px;
}

header.scrolled {
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin: 0;
  background: none;
  -webkit-text-fill-color: var(--white);
}

.logo h1 sup {
  color: var(--gold);
  font-size: 0.65em;
  vertical-align: super;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    left: auto;
    right: 20px;
    top: 72px;
    transform: none;
    background: var(--ink2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
    min-width: 180px;
    backdrop-filter: blur(20px);
    margin: 0;
  }
  
  .nav-links.open {
    display: flex;
  }
}

.nav-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  display: block;
}

.nav-links a:hover {
  color: var(--white);
  background: var(--mist);
}

.nav-links a::after {
  display: none;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 150, 43, 0.35) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--gold);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=70&auto=format&fit=crop') center/cover no-repeat;
  transform: scale(1.05);
  animation: bgDrift 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes bgDrift {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.09) translate(-14px, -8px); }
}

.hero-bg-dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(5, 9, 18, 0.80);
}

/* Star field animation */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: 
    radial-gradient(2px 2px at 10px 20px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 30px 80px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 70px 150px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 150px 40px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 230px 280px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 340px 120px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 420px 360px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 530px 80px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 620px 440px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 730px 190px, #fff, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 1000px 600px;
  opacity: 0.4;
  animation: stars 120s linear infinite;
  pointer-events: none;
}

@keyframes stars {
  from { transform: translateY(0); }
  to { transform: translateY(-600px); }
}

/* Scanning line */
.scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 150, 43, 0.35), transparent);
  z-index: 5;
  animation: scanMove 7s linear infinite;
  pointer-events: none;
}

@keyframes scanMove {
  0% { top: 0; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 0.5; }
  100% { top: 100%; opacity: 0; }
}

/* Orbs for ambient glow */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  z-index: 3;
  will-change: transform;
  animation: orbPulse var(--dur, 12s) ease-in-out infinite var(--del, 0s);
}

.orb1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(200, 150, 43, 0.16), transparent 70%);
  top: -140px;
  left: -100px;
  --dur: 16s;
  --del: 0s;
}

.orb2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(180, 100, 10, 0.14), transparent 70%);
  bottom: -80px;
  right: -80px;
  --dur: 12s;
  --del: -5s;
}

.orb3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232, 184, 75, 0.09), transparent 70%);
  top: 40%;
  left: 55%;
  --dur: 10s;
  --del: -8s;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(14px, -18px); }
}

.hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 1050px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.2s both;
}

.eyebrow-dash {
  width: 28px;
  height: 1px;
  background: var(--gold2);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--white);
  animation: fadeUp 0.9s 0.35s both;
}

.hero-h1 .word-em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  display: block;
}

.hero-h1 .word-strong {
  font-weight: 700;
  display: block;
  background: linear-gradient(135deg, var(--gold3) 0%, var(--gold) 50%, var(--gold2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-h1 .word-plain {
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 28px;
  font-weight: 300;
  letter-spacing: 0.3px;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.5s both;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  animation: fadeUp 1s 0.65s both;
}

.btn-p {
  padding: 16px 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(200, 150, 43, 0.4);
}

.btn-g {
  padding: 16px 38px;
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.btn-g:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* Floating stats */
.hero-floaters {
  position: absolute;
  right: 52px;
  bottom: 90px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 1s 0.8s both;
}

.hf {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 14px 22px;
  text-align: right;
  transition: border-color 0.3s;
}

.hf:hover {
  border-color: rgba(200, 150, 43, 0.4);
}

.hf-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
}

.hf-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 3px;
}

/* Scroll indicator */
.scroll-ind {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeUp 1s 1.1s both;
}

.scroll-ind span {
  font-size: 0.62rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2.2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  80% { top: 18px; opacity: 0; }
  100% { top: 6px; opacity: 0; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== MARQUEE STRIP ========== */
.marquee-strip {
  overflow: hidden;
  padding: 17px 0;
  background: linear-gradient(90deg, #a07015, var(--gold), #b88020, var(--gold2), #a07015);
  position: relative;
  width: 100%;
  z-index: 10;
}

.mtrack {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.mitem {
  padding: 0 36px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
}

.mitem::after {
  content: '◆';
  font-size: 0.45rem;
  color: var(--ink);
}

@-webkit-keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.mtrack {
  animation: marqueeScroll 30s linear infinite;
  -webkit-animation: marqueeScroll 30s linear infinite;
}


/* ========== SEARCH SECTION ========== */
.search-bar {
  background: var(--ink2);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

/* Star field for search section */
.search-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.3), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 60px 120px, rgba(255,255,255,0.3), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 140px 250px, rgba(255,255,255,0.3), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 220px 80px, rgba(255,255,255,0.3), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 320px 360px, rgba(255,255,255,0.3), rgba(0,0,0,0));
  background-repeat: repeat;
  opacity: 0.2;
  animation: stars 100s linear infinite;
  pointer-events: none;
}

.search-main {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 52px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.search-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), transparent);
}

.search-main:hover {
  transform: none;
}

.search-main input[type="text"] {
  display: none;
}

.search-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.sec-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
}

.sec-title strong {
  font-weight: 700;
  color: var(--gold);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-tab {
  padding: 9px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s;
  background: transparent;
}

.filter-tab.active,
.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 150, 43, 0.08);
}

.search-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.filter-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  padding: 13px 18px;
  border-radius: var(--rs);
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8962b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.filter-select option {
  background: var(--ink2);
}

.filter-select:focus {
  border-color: var(--gold);
}

/* ========== PRICE RANGE SLIDER ========== */
.price-section {
  margin-bottom: 36px;
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.price-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold2);
}

.range-wrap {
  position: relative;
  margin: 0 10px;
}

.range-track {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 18px 0;
}

.range-fill {
  position: absolute;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  pointer-events: none;
}

input[type=range].range-slider {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  pointer-events: all;
}

.range-thumb {
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--white);
  border: 2.5px solid var(--gold);
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.range-track:hover .range-thumb {
  box-shadow: 0 0 0 8px rgba(200, 150, 43, 0.12);
}

/* ========== AMENITIES PILLS ========== */
.amenities-section {
  margin-bottom: 36px;
}

.amenities-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}

.amenity-pill {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.amenity-pill:hover {
  border-color: rgba(200, 150, 43, 0.5);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(200, 150, 43, 0.06);
}

.amenity-pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 150, 43, 0.1);
  box-shadow: 0 0 18px rgba(200, 150, 43, 0.12);
}

/* Search Button */
.search-main button[type="submit"] {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border: none;
  border-radius: var(--rs);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.search-main button[type="submit"]::before {
  display: none;
}

.search-main button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(200, 150, 43, 0.35);
}

/* ========== PROPERTY CARDS ========== */
.properties,
.featured-properties {
  padding: 70px 60px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

/* Star background for sections */
.properties::before,
.featured-properties::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 10px 10px, rgba(255,255,255,0.3), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 90px 150px, rgba(255,255,255,0.3), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 160px 280px, rgba(255,255,255,0.3), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 280px 90px, rgba(255,255,255,0.3), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 380px 450px, rgba(255,255,255,0.3), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 550px 220px, rgba(255,255,255,0.3), rgba(0,0,0,0));
  background-repeat: repeat;
  opacity: 0.15;
  pointer-events: none;
  animation: starsSlow 200s linear infinite;
}

@keyframes starsSlow {
  from { transform: translateY(0); }
  to { transform: translateY(-800px); }
}

.properties h3,
.featured-properties h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.properties h3::after,
.featured-properties h3::after {
  display: none;
}

.properties h3 i,
.featured-properties h3 i {
  color: var(--gold2);
  font-size: 2rem;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Verified Badge */
.verified-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(46, 213, 115, 0.14);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2ed573;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(46, 213, 115, 0.28);
}

.verified-badge i {
  color: #2ed573;
  font-size: 1rem;
}

/* Gallery Badge */
.gallery-badge {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.gallery-badge i {
  color: var(--gold2);
  font-size: 1rem;
}

.property-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  animation: fadeUp 0.6s ease forwards;
  backdrop-filter: blur(10px);
}

.property-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 150, 43, 0.3);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(200, 150, 43, 0.1);
}

/* Card Image Wrapper */
.card-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: pointer;
}

.card-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: brightness(0.9);
}

.property-card:hover .card-main-image {
  transform: scale(1.08);
  filter: brightness(1);
}

/* Image Overlay with badge */
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(8, 12, 20, 0.75));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.property-card:hover .image-overlay {
  opacity: 1;
}

/* Card Content */
.card-content {
  padding: 24px 26px 26px;
}

.card-content h4 {
  margin: 0 0 8px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.3px;
}

.location {
  margin: 0 0 15px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 6px;
}

.location i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* Price styling */
.price-tag {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.price-period {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 400;
  margin-left: 4px;
}

.price-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.option {
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 8px;
  border-radius: 5px;
  border: 1px solid var(--border);
}

/* Amenities */
.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.amenity {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.amenity i {
  color: var(--gold2);
  font-size: 0.7rem;
}

/* View Details Button */
.view-details-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--rs);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.view-details-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: none;
  box-shadow: none;
}

.view-details-btn i {
  transition: transform 0.3s ease;
}

.view-details-btn:hover i {
  transform: translateX(5px);
}

/* Remove old image grid styles */
.image-grid,
.image-grid::after,
.image-grid > img,
.side-images,
.side-images img {
  display: none;
}

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 16, 0.94);
  z-index: 2000;
  backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: modalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), transparent);
  border-radius: 24px 24px 0 0;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.modal .close:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: none;
  transform: none;
}

.modal-header {
  margin-bottom: 20px;
}

.modal-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.modal-gallery {
  position: relative;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background: var(--ink3);
  border-radius: 16px;
  overflow: hidden;
}

.modal-main-image {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.modal .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(5px);
  width: auto;
  height: auto;
}

.modal .nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.05);
}

.modal .prev {
  left: 20px;
}

.modal .next {
  right: 20px;
}

.thumbnail-strip {
  display: flex;
  gap: 10px;
  padding: 20px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail-item {
  width: 70px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.thumbnail-item:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.thumbnail-item.active {
  opacity: 1;
  border-color: var(--gold);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-counter {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-top: 10px;
}

#currentImage, #totalImages {
  color: var(--gold2);
  font-weight: 600;
}

/* ========== INFO HELP SECTION ========== */
section.info-help {
  padding: 70px 60px;
  background: var(--ink2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

section.info-help::before,
section.info-help::after {
  display: none;
}

.info-help h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 10px;
  color: var(--white);
  position: relative;
  z-index: 2;
  text-shadow: none;
}

.info-help p {
  color: var(--gray);
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.featured-wrapper {
  margin-top: 64px;
  position: relative;
  z-index: 2;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  border: none;
  padding: 0;
}

.choose-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.single-featured-box {
  padding: 52px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border-radius: 0;
  box-shadow: none;
  animation: none;
  opacity: 1;
}

.single-featured-box:nth-child(1) {
  border-radius: 20px 0 0 0;
}
.single-featured-box:nth-child(2) {
  border-radius: 0 20px 0 0;
}
.single-featured-box:nth-child(3) {
  border-radius: 0 0 0 20px;
}
.single-featured-box:nth-child(4) {
  border-radius: 0 0 20px 0;
}

.single-featured-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 150, 43, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.single-featured-box:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 150, 43, 0.25);
  box-shadow: none;
}

.single-featured-box:hover::before {
  opacity: 1;
}

.single-featured-box .icon {
  margin-bottom: 24px;
}

.single-featured-box .icon i {
  transition: transform 0.3s;
}

.single-featured-box:hover .icon i {
  transform: scale(1.1);
}

.single-featured-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.single-featured-box p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.85;
  margin-bottom: 20px;
}

.read-more-btn {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
}

.read-more-btn:hover {
  color: var(--gold2);
  text-decoration: none;
}

.read-more-btn::after {
  content: '→';
  transition: transform 0.3s;
}

.read-more-btn:hover::after {
  transform: translateX(5px);
}

/* ========== FOOTER ========== */
footer {
  padding: 56px 60px;
  background: var(--ink2);
  color: var(--white);
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 150, 43, 0.5), transparent);
}

footer p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.22);
}

.socials {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.socials li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  transition: all 0.2s;
  text-decoration: none;
  font-size: 1rem;
  border: 1px solid var(--border);
}

.socials li a:hover {
  background: none;
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: none;
}

.go-up {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
}

.go-up:hover {
  background: none;
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: none;
}

.go-up.show {
  opacity: 1;
  visibility: visible;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .choose-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .property-grid {
    padding: 20px;
  }
}

@media (max-width: 900px) {
  header {
    padding: 0 24px;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    right: 20px;
    background: var(--ink2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
    min-width: 180px;
    backdrop-filter: blur(20px);
  }
  
  .nav-links.open a {
    color: var(--white);
    padding: 12px 16px;
  }
  
  .nav-links.open a:hover {
    background: var(--mist);
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-floaters {
    display: none;
  }
  
  .search-bar,
  .properties,
  .featured-properties,
  .info-help,
  footer {
    padding: 50px 24px;
  }
  
  .search-main {
    padding: 28px;
  }
  
  .search-top {
    flex-direction: column;
  }
  
  .search-filters {
    grid-template-columns: 1fr;
  }
  
  .filter-tabs {
    justify-content: flex-start;
  }
  
  .property-grid {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 20px;
  }
  
  .choose-us-grid {
    grid-template-columns: 1fr;
  }
  
  .single-featured-box:nth-child(1) {
    border-radius: 20px 20px 0 0;
  }
  .single-featured-box:nth-child(2),
  .single-featured-box:nth-child(3) {
    border-radius: 0;
  }
  .single-featured-box:nth-child(4) {
    border-radius: 0 0 20px 20px;
  }
  
  .modal-content {
    padding: 30px 20px;
  }
  
  .modal .nav {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  
  .go-up {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }
  
  .btn-p, .btn-g {
    width: 100%;
  }
  
  .price-tag {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .price-options {
    align-items: flex-start;
  }
  
  .thumbnail-item {
    width: 50px;
    height: 38px;
  }
  
  footer {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Selection Color */
::selection {
  background: var(--gold);
  color: var(--ink);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ink2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold2);
}