/* ========== LOCAL FONTS ========== */
@font-face {
  font-family: 'Trajan Pro';
  src: url('../assets/fonts/TrajanPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trajan Pro';
  src: url('../assets/fonts/TrajanPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clash Grotesk';
  src: url('../assets/fonts/ClashGrotesk-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gistesy';
  src: url('../assets/fonts/Gistesy.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ========== CSS VARIABLES ========== */
:root {
  --bg: #fcf7f0;
  --accent: #ebd4ac;
  --primary: #614d31;
  --primary-dark: #3f2f19;
  --text: #3b2a1a;
  --text-light: #7a6555;
  --white: #ffffff;
  --shadow: 0 4px 30px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
  --radius: 12px;
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  --font-heading: 'Trajan Pro', 'Playfair Display', serif;
  --font-body: 'Clash Grotesk', 'Inter', sans-serif;
  --font-script: 'Gistesy', cursive;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%
}

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

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

/* Stabilize image rendering and reduce layout shifts during decode. */
img[loading="lazy"] {
  contain: paint;
}

a {
  text-decoration: none;
  color: inherit
}

ul,
ol {
  list-style: none
}

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none
}

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

/* ========== UTILITY ========== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto
}

.section-pad {
  padding: 100px 0;
  background-image: none !important;

}

.section-pad .section-sub {
  margin-left: auto;
  margin-right: auto
}

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 40px
}

/* ========== FANCY SECTION HEADING ========== */
.section-heading {
  margin-bottom: 48px;
}
.section-heading .section-label {
  margin-bottom: 8px;
}
.section-heading .heading-main {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 5vw, 4rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  line-height: 1.1;
  margin: 0;
}
.section-heading .heading-script {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--primary);
  line-height: 0.9;
  margin-top: -4px;
  display: block;
  text-transform: none;
  letter-spacing: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.btn-primary {
  background: var(--primary);
  color: var(--white)
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg)
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--primary)
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px)
}

.btn-gold {
  background: var(--accent);
  color: var(--primary)
}

.btn-gold:hover {
  background: #d4b88a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg)
}

.btn-white {
  background: var(--white);
  color: var(--primary)
}

.btn-white:hover {
  background: var(--accent);
  transform: translateY(-2px)
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal.active {
  opacity: 1;
  transform: translateY(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0)
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition)
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 5%;
  transition: var(--transition)
}

/* Scrolled state */
.header.scrolled .header-inner {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 5%;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);

   backdrop-filter: blur(20px) saturate(146%);
    -webkit-backdrop-filter: blur(20px) saturate(146%);
    background-color: rgba(255, 255, 255, 0.632);

}

.header.hidden {
  transform: translateY(-100%)
}

/* ---- Logo (center column) ---- */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition)
}

.logo img {
  height: 80px;
  width: 260px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition)
}

.logo img.logo-desktop {
  display: block;
}

.logo .logo-mobile {
  width: 160px;
  height: 64px;
  display: none
}

.header.scrolled .logo img {
  filter: none
}

/* ---- Nav shared styles ---- */
.nav {
  display: flex;
  align-items: center;
  gap: 28px
}

.nav a {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  transition: var(--transition);
  position: relative;
  white-space: nowrap
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: var(--transition)
}

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

.nav a:hover::after {
  width: 100%
}

.header.scrolled .nav a {
  color: var(--text)
}

.header.scrolled .nav a:hover {
  color: var(--primary)
}

/* Left nav */
.nav-left {
  justify-content: flex-start
}

/* Right nav */
.nav-right {
  justify-content: flex-end
}

/* ---- CTA nav-link style ---- */
.nav-cta {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent) !important;
  position: relative;
  white-space: nowrap;
  transition: var(--transition)
}

.nav-cta::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: var(--transition)
}

.nav-cta:hover::after {
  width: 100%
}

.header.scrolled .nav-cta {
  color: var(--primary) !important
}

.header.scrolled .nav-cta::after {
  background: var(--primary)
}

/* ---- Globe language dropdown ---- */
.lang-dropdown {
  position: relative
}

.lang-globe {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: rgba(255, 255, 255, .88);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  transition: var(--transition)
}

.lang-globe:hover {
  color: var(--accent)
}

.header.scrolled .lang-globe {
  color: var(--text)
}

.header.scrolled .lang-globe:hover {
  color: var(--primary)
}

.lang-current {
  font-size: .72rem;
  font-weight: 700
}

.lang-chevron {
  transition: transform .3s ease;
  flex-shrink: 0
}

.lang-dropdown.open .lang-chevron {
  transform: rotate(180deg)
}

.lang-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  padding: 6px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 999;
  list-style: none;
  margin: 0
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.lang-menu li {
  margin: 0
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 14px;
  border-radius: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: var(--transition)
}

.lang-btn:hover {
  background: var(--bg);
  color: var(--primary)
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white)
}

/* ---- Mobile toggle ---- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%)
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block
}

.header.scrolled .menu-toggle span {
  background: var(--primary)
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px) }
.menu-toggle.open span:nth-child(2) { opacity: 0 }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px) }

/* ---- Mobile drawer ---- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 90px 32px 40px;
  transition: right var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  overflow-y: auto
}

.mobile-nav.open {
  right: 0
}

.mobile-nav a {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: var(--transition)
}

.mobile-nav a:hover {
  color: var(--primary)
}

.mobile-nav .btn {
  margin-top: 16px;
  text-align: center;
  justify-content: center
}

.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 12px
}

.mobile-lang .lang-btn {
  flex: 1;
  justify-content: center;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 8px
}

.mobile-lang .lang-btn.active {
  border-color: var(--primary)
}

/* Overlay behind drawer */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible
}

@media(max-width:900px) {
  .header-inner {
    position: relative
  }
  .nav-left,
  .nav-right {
    display: none
  }
  .menu-toggle {
    display: flex
  }
  .logo img.logo-desktop {
    display: none
  }
  .logo img.logo-mobile {
    display: block
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(.4, 0, .2, 1);
  will-change: transform, opacity
}

.hero-slide.active {
  opacity: 1
}

/* Ken Burns — 4 unique motion directions */
[data-kb="1"].active { animation: kenBurns1 9s ease-out forwards }
[data-kb="2"].active { animation: kenBurns2 9s ease-out forwards }
[data-kb="3"].active { animation: kenBurns3 9s ease-out forwards }
[data-kb="4"].active { animation: kenBurns4 9s ease-out forwards }

@keyframes kenBurns1 {
  from { transform: scale(1)    translate(0,    0)    }
  to   { transform: scale(1.12) translate(-1.5%, -1%) }
}
@keyframes kenBurns2 {
  from { transform: scale(1.1)  translate(2%,   1%)   }
  to   { transform: scale(1)    translate(0,    0)    }
}
@keyframes kenBurns3 {
  from { transform: scale(1)    translate(-2%,  0)    }
  to   { transform: scale(1.1)  translate(1%, -1.5%)  }
}
@keyframes kenBurns4 {
  from { transform: scale(1.08) translate(0,  -1.5%)  }
  to   { transform: scale(1)    translate(-1%, 0.5%)  }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgb(14 14 14 / 68%) 0%, rgb(0 0 0 / 43%) 45%, rgba(39, 27, 13, .12) 100%), linear-gradient(to top, rgba(0, 0, 0, .45) 0%, transparent 38%);
    z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 520px;
  padding: 0 0 72px
}

.hero-label {
  font-size: .7rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600
}

.hero h1 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  margin-bottom: 14px;
  line-height: 1.15;
  color: var(--white)
}
.hero h1 span {
    color: var(--accent);
    font-family: 'Gistesy';
}
.hero p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 28px;
  max-width: 400px;
  line-height: 1.7
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .15)
}

.hero-stat h3 {
  font-size: 1.55rem;
  color: var(--accent);
  font-family: var(--font-heading)
}

.hero-stat p {
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
  letter-spacing: 2px;
  animation: float 2s ease-in-out infinite
}

.hero-scroll span {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  position: relative
}

.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 3px;
  animation: scrollDot 1.5s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(-8px)
  }
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 6px
  }

  100% {
    opacity: 0;
    top: 18px
  }
}

/* ---- Slider dots ---- */
.hero-dots {
  position: absolute;
  bottom: 36px;
  right: 5%;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  border: 1.5px solid rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: all .4s ease;
  padding: 0
}

.hero-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  width: 28px;
  border-radius: 6px
}

/* ---- Hero content staggered entrance ---- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px) }
  to   { opacity: 1; transform: translateY(0)    }
}

.hero-content .hero-label { animation: heroFadeUp .65s ease 1.4s both }
.hero-content h1           { animation: heroFadeUp .65s ease 1.6s both }
.hero-content > p          { animation: heroFadeUp .65s ease 1.8s both }
.hero-content .hero-btns   { animation: heroFadeUp .65s ease 1.95s both }
.hero-content .hero-stats  { animation: heroFadeUp .65s ease 2.1s both }

@media(max-width:600px) {
  .hero-content {
    padding: 0 0 100px
  }
  .hero-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: 80px
  }
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden
}

.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition)
}

.about-img:hover img {
  transform: scale(1.03)
}

.about-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border: 3px solid var(--accent);
  border-radius: 0 0 var(--radius) 0;
  pointer-events: none
}

.about-content .section-sub {
  margin-bottom: 24px
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-light)
}

.about-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary)
}

@media(max-width:768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .about-img img {
    height: 350px
  }
}

/* ========== LISTINGS ========== */
.listings {
  background: var(--bg);
  overflow: hidden
}

.lcard-link,
.prop-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none
}

.lcard-link:hover,
.prop-card-link:hover {
  color: inherit
}

/* Two-column split */
.listings-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 56px;
  align-items: center
}

/* ---- Left text panel ---- */
.listings-text {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.listings-text .section-heading {
  margin-bottom: 0
}

.listings-heading {
  margin-bottom: 0;
  text-align: left;
}

.listings-heading .heading-main {
  letter-spacing: 3px;
  line-height: 1;
  color: #ebd4ac;
}

.listings-heading .heading-script {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: .92;
  margin-top: 2px;
  color: var(--primary);
  font-family: var(--font-script);
}

.listings-desc {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 260px;
  text-align: left;
}

.listings-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 8px;
  transition: var(--transition)
}

.listings-all-link svg {
  transition: transform var(--transition)
}

.listings-all-link:hover {
  color: var(--accent)
}

.listings-all-link:hover svg {
  transform: translateX(5px)
}

/* ---- Right slider ---- */
.listings-slider-wrap {
  position: relative;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  padding: 6px 4px 0
}

.listings-swiper {
  width: 100%;
  overflow: hidden
}

.listings-track {
  display: flex;
  transition: transform .75s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
  width: 100%
}

.listings-track.swiper-wrapper {
  align-items: stretch;
  box-sizing: border-box;
  flex-wrap: nowrap
}

.listings-swiper .swiper-slide {
  height: auto;
  display: flex;
  min-width: 0;
  box-sizing: border-box
}

/* ---- Individual card ---- */
.lcard {
  width: 100%;
  height: 100%;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(36, 26, 14, .16)
}

.lcard-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  min-height: 360px
}

.lcard-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.4, 0, .2, 1)
}

.lcard:hover .lcard-img img {
  transform: scale(1.06)
}

/* Bottom gradient overlay */
.lcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25,15,6,.88) 0%, rgba(25,15,6,.3) 45%, transparent 75%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px 20px;
  gap: 12px
}

.lcard-info {
  flex: 1;
  min-width: 0
}

.lcard-area {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px
}

.lcard-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.lcard-price {
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  font-weight: 500
}

.lcard-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 1
}

.lcard-fav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--white);
  transition: var(--transition);
  margin-right: 5px !important;

}

.lcard-fav:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent)
}

/* Progress bar */
.listings-progress-wrap {
  height: 3px;
  background: rgba(0,0,0,.1);
  border-radius: 3px;
  margin-top: 28px;
  overflow: hidden
}

.listings-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--primary);
  border-radius: 3px;
  transition: width .4s ease
}

.listings-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.listings-nav-btn {
  width: 60px;
  height: 60px;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  transition: transform var(--transition), opacity var(--transition)
}

.listings-nav-icon {
  width: 60px;
  height: 60px;
  display: block
}

.listings-nav-circle {
  transition: fill var(--transition)
}

.listings-nav-arrow {
  fill: #000;
  transition: fill var(--transition)
}

.listings-nav-btn:hover {
  transform: translateY(-1px)
}

.listings-nav-btn:hover .listings-nav-circle,
.listings-nav-btn:focus-visible .listings-nav-circle {
  fill: #fff
}

.listings-nav-btn:disabled,
.listings-nav-btn.swiper-button-disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none
}

.listings-nav-btn:disabled:hover,
.listings-nav-btn.swiper-button-disabled:hover {
  transform: none
}

/* Responsive */
@media(max-width:1100px) {
  .listings-layout {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 30px
  }
  .listings-heading .heading-script {
    font-size: clamp(1.9rem, 4.2vw, 2.8rem)
  }
}

@media(max-width:768px) {
  .listings-layout {
    grid-template-columns: 1fr;
    gap: 28px
  }
  .listings-slider-wrap {
    padding: 2px 0 0
  }
  .listings-heading .heading-script {
    font-size: clamp(1.7rem, 8vw, 2.4rem)
  }
  .listings-desc {
    max-width: 100%
  }
}

@media(max-width:480px) {
  .section-heading .heading-main {
    letter-spacing: 2px
  }

  .section-heading {
    margin-bottom: 28px
  }
}

@media(max-width:560px) {
  .listings-controls {
    justify-content: center
  }
}

/* Keep old listing-card styles for any legacy refs */
.listing-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition: var(--transition);
  cursor: pointer
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.listing-img {
  position: relative;
  height: 260px;
  overflow: hidden
}

.listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition)
}

.listing-card:hover .listing-img img {
  transform: scale(1.08)
}

.listing-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600
}

.listing-fav {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition)
}

.listing-fav:hover {
  background: var(--accent)
}

.listing-body {
  padding: 24px
}

.listing-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 4px
}

.listing-loc {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px
}

.listing-specs {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, .06)
}

.listing-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-light)
}

/* ========== PARTNERS ========== */
.partners {
  background: linear-gradient(180deg, var(--bg) 0%, #f6eee3 100%);
  padding-top: 86px;
  padding-bottom: 86px
}

.partners-strip {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(97, 77, 49, .16);
    background: rgb(255 255 255 / 43%);
    backdrop-filter: blur(6px);
    backdrop-filter: blur(20px) saturate(146%);
}

.partners-strip::before,
.partners-strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none
}

.partners-strip::before {
  left: 0;
  background: linear-gradient(to right, #f7efe4 0%, rgba(247, 239, 228, 0) 100%)
}

.partners-strip::after {
  right: 0;
  background: linear-gradient(to left, #f7efe4 0%, rgba(247, 239, 228, 0) 100%)
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 16px;
  animation: partnerLoop 28s linear infinite
}

.partner-logo {
  min-width: 172px;
  min-height: 92px;
  padding: 14px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

}

.partner-logo img {
  width: 100%;
  max-width: 120px;
  height: 100px;
  object-fit: contain;
  filter: saturate(.95) contrast(1.05)
}

@keyframes partnerLoop {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(calc(-50% - 8px))
  }
}

/* ========== PRIME LOCATIONS ========== */
.prime-locations {
  background: var(--bg)
}

.prime-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.prime-track {
  display: contents
}

.prime-grid.prime-swiper {
  display: block;
  position: relative;
  overflow: hidden
}

.prime-grid.prime-swiper .prime-track {
  display: flex
}

.prime-grid.prime-swiper .prime-card.swiper-slide {
  height: auto;
  box-sizing: border-box
}

.prime-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.prime-nav-btn {
  width: 60px;
  height: 60px;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  transition: transform var(--transition), opacity var(--transition)
}

.prime-nav-icon {
  width: 60px;
  height: 60px;
  display: block
}

.prime-nav-circle {
  transition: fill var(--transition)
}

.prime-nav-btn:hover {
  transform: translateY(-1px)
}

.prime-nav-btn:hover .prime-nav-circle,
.prime-nav-btn:focus-visible .prime-nav-circle {
  fill: #fff
}

.prime-nav-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none
}

.prime-card {
  position: relative;
  min-height: 390px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(97, 77, 49, .08);
  box-shadow: 0 16px 34px rgba(61, 38, 16, .12);
  transition: transform .35s ease, box-shadow .35s ease
}

.prime-card img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1)
}

.prime-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  background: linear-gradient(to top, rgba(18, 12, 6, .88) 0%, rgba(18, 12, 6, .34) 56%, transparent 80%)
}

.prime-meta {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px
}

.prime-overlay h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 6px
}

.prime-overlay p {
  color: rgba(255, 255, 255, .85);
  font-size: .84rem;
  line-height: 1.65
}

.prime-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(61, 38, 16, .2)
}

.prime-card:hover img {
  transform: scale(1.06)
}

@media(max-width:1100px) {
  .prime-grid:not(.prime-swiper) {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .partners-strip::before,
  .partners-strip::after {
    width: 56px
  }

  .partner-logo {
    min-width: 172px;
    min-height: 96px;
    padding: 14px 18px
  }

  .partner-logo img {
    max-width: 132px;
    height: 88px
  }
}

@media(max-width:560px) {
  .prime-grid:not(.prime-swiper) {
    grid-template-columns: 1fr
  }

  .partner-logo {
    min-width: 158px;
    min-height: 88px;
    padding: 14px 16px
  }

  .partner-logo img {
    max-width: 124px;
    height: 68px
  }

  .prime-card {
    min-height: 320px
  }

  .prime-controls {
    justify-content: center
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none
  }
}

/* ========== WHY US ========== */
.why-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, .04)
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent)
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  transition: var(--transition)
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--accent), #d4b88a);
  color: var(--primary)
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px
}

.why-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6
}

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

@media(max-width:500px) {
  .why-grid {
    grid-template-columns: 1fr
  }
}

/* ========== FAQ (MINIMAL ACCORDION) ========== */
.faq-accordion {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  transition: var(--transition)
}

.faq-item.is-open {
  border-color: rgba(235, 212, 172, .95);
  box-shadow: 0 10px 24px rgba(24, 18, 10, .06)
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer
}

.faq-trigger span:first-child {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary-dark);
  line-height: 1.35
}

.faq-plus {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .14);
  background: rgba(235, 212, 172, .24);
  position: relative;
  flex: 0 0 26px
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--primary-dark);
  transform: translate(-50%, -50%);
  transition: var(--transition)
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg)
}

.faq-item.is-open .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0)
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.faq-panel p {
  padding: 0 20px 18px;
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.75
}

@media(max-width:600px) {
  .faq-trigger {
    padding: 16px
  }

  .faq-panel p {
    padding: 0 16px 16px
  }
}

/* ========== QUOTE BANNER ========== */
.quote-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
  isolation: isolate
}

.quote-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04)
}

.quote-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(16, 10, 4, .82) 0%, rgba(36, 24, 12, .48) 48%, rgba(80, 56, 30, .3) 100%),
    linear-gradient(to top, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .08) 60%, transparent 100%)
}

.quote-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  height: 100%;
  margin: 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 24px
}

.quote-banner-text {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(1.5rem, 3.2vw, 2.55rem);
  line-height: 1.35;
  letter-spacing: .6px;
  max-width: 900px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .3)
}

@media(max-width:640px) {
  .quote-banner {
    min-height: 320px
  }

  .quote-banner-inner {
    padding: 0 16px
  }

  .quote-banner-text {
    line-height: 1.42
  }
}

/* ========== WHY DUBAI ========== */
.dubai-section {
  background: #fcf7f0;
}

.dubai-reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px
}

.dubai-reason-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.dubai-reason-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent)
}

.dubai-reason-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 4px;
  transition: var(--transition);
  flex-shrink: 0
}

.dubai-reason-card:hover .dubai-reason-icon {
  background: linear-gradient(135deg, var(--accent), #d4b88a);
  color: var(--primary)
}

.dubai-reason-stat {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: 1px
}

.dubai-reason-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin: 0
}

.dubai-reason-card p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0
}

@media(max-width:1024px) {
  .dubai-reasons-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:500px) {
  .dubai-reasons-grid {
    grid-template-columns: 1fr
  }
}

/* legacy dubai-block kept for any other uses */
.dubai-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px
}

.dubai-block:nth-child(even) {
  direction: rtl
}

.dubai-block:nth-child(even)>* {
  direction: ltr
}

.dubai-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px
}

.dubai-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition)
}

.dubai-img:hover img {
  transform: scale(1.03)
}

.dubai-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px
}

.dubai-stat {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center
}

.dubai-stat h4 {
  font-size: 1.6rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif
}

.dubai-stat p {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 4px
}

@media(max-width:768px) {

  .dubai-block,
  .dubai-block:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr
  }

  .dubai-img {
    height: 280px
  }
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(235, 212, 172, .08)
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(235, 212, 172, .05)
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1
}

.cta-section .section-title {
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 16px
}

.cta-section .section-sub {
  color: rgba(255, 255, 255, .7);
  margin: 0 auto 36px;
  text-align: center
}

/* ========== SUBSCRIBE ========== */
.subscribe {
  background: var(--bg)
}

.subscribe-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center
}

.subscribe-form {
  display: flex;
  gap: 12px;
  margin-top: 8px
}

.subscribe-form input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .08);
  font-size: .95rem;
  transition: var(--transition)
}

.subscribe-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(235, 212, 172, .2)
}

@media(max-width:500px) {
  .subscribe-form {
    flex-direction: column
  }
}

/* ========== INQUIRY FORM ========== */
.inquiry {
  background: var(--white)
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start
}

.inquiry-info h2 {
  margin-bottom: 16px
}

.inquiry-info p {
  color: var(--text-light);
  margin-bottom: 28px
}

.inquiry-contact {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.inquiry-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem
}

.inquiry-contact-item svg {
  color: var(--primary);
  flex-shrink: 0
}

.form-group {
  margin-bottom: 20px
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text)
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, .1);
  background: var(--bg);
  font-size: .95rem;
  transition: var(--transition);
  color: var(--text)
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(235, 212, 172, .2);
  background: var(--white)
}

.form-group textarea {
  resize: vertical;
  min-height: 120px
}

.form-group .error {
  border-color: #e74c3c !important
}

.form-error {
  font-size: .78rem;
  color: #e74c3c;
  margin-top: 6px;
  display: none
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

@media(max-width:768px) {
  .inquiry-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }
}

/* ========== BLOG SECTION ========== */
.blog {
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.blog-card-image {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--white);
}

.blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.4, 0, .2, 1);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

/* Base overlay - always visible */
.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(97, 77, 49, .95) 0%, rgba(97, 77, 49, .6) 35%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  z-index: 2;
}

.blog-card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Date and title always visible */
.blog-card-date {
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: 1px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

/* Excerpt and link - hidden by default */
.blog-card-excerpt {
  font-size: .95rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
  transform: translateY(15px);
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
}

.blog-card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .3s ease;
}

/* On hover - move date/title up and reveal excerpt/link */
.blog-card:hover .blog-card-date,
.blog-card:hover .blog-card-title {
  transform: translateY(-20px);
}

.blog-card:hover .blog-card-excerpt {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.blog-card:hover .blog-card-link {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.blog-card:hover .blog-card-link::after {
  opacity: 1;
}

@media(max-width:1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .blog-card-image {
    height: 360px;
  }
}

@media(max-width:600px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card-image {
    height: 340px;
  }

  .blog-card-overlay {
    padding: 20px;
  }

  .blog-card-title {
    font-size: 1.15rem;
  }

  .blog-card-content {
    transform: translateY(20px);
  }

  .blog-card:hover .blog-card-content {
    transform: translateY(0);
  }
}

/* ========== FOOTER ========== */
.footer {
  background: #614d31;
  color: rgba(255, 255, 255, .7);
  padding: 80px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px
}

.footer-brand .logo {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: inline-block
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px
}

.footer-social {
  display: flex;
  gap: 12px
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255, 255, 255, .6)
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary)
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-links a {
  font-size: .9rem;
  transition: var(--transition)
}

.footer-links a:hover {
  color: var(--accent)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem
}

@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}

@media(max-width:500px) {
  .footer-grid {
    grid-template-columns: 1fr
  }
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  transition: var(--transition);
  cursor: pointer
}

.contact-float {
  position: fixed;
  bottom: 92px;
  right: 28px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .4px;
  z-index: 998;
  box-shadow: 0 8px 24px rgba(63, 47, 25, .28);
  transition: var(--transition)
}

.contact-float:hover {
  background: var(--primary-dark);
  transform: translateY(-2px)
}

.contact-float svg {
  width: 16px;
  height: 16px
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .45)
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .3);
  animation: waPulse 2s ease-out infinite
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 1
  }

  100% {
    transform: scale(1.4);
    opacity: 0
  }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 96px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px)
}

/* ========== LOADING ========== */
/* ========== CINEMATIC LUXURY LOADER ========== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3f2f19 0%, #614d31 25%, #4a3a24 50%, #3f2f19 75%, #2f1f0e 100%);
  background-size: 400% 400%;
  animation: luxeGradient 8s ease infinite;
}

@keyframes luxeGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.loader-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Zoom-out reveal animation */
.loader.reveal .loader-inner {
  animation: aerialZoomOut 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

.loader.reveal .loader-bg {
  animation: loaderFadeOut 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

@keyframes aerialZoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5) translateZ(500px);
    opacity: 0;
  }
}

@keyframes loaderFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.loader-brand {
  margin-bottom: 60px;
  animation: brandSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

@keyframes brandSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-brand h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  background: linear-gradient(90deg, rgba(235, 212, 172, 0.8) 0%, rgba(235, 212, 172, 1) 50%, rgba(235, 212, 172, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(235, 212, 172, 0.3);
}

.loader-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: rgba(235, 212, 172, 0.6);
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  animation: subtitleFade 1.5s ease-in-out infinite;
}

@keyframes subtitleFade {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Luxury Counter */
.loader-counter {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 9999;
  font-family: 'Courier New', monospace;
  animation: counterSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s backwards;
}

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

.counter-value {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(235, 212, 172, 0.4);
  display: inline-block;
  min-width: 140px;
  text-align: right;
  transition: all 0.1s linear;
}

/* Motion blur effect on counter */
.counter-value.updating {
  animation: counterBlur 0.2s ease-out;
}

@keyframes counterBlur {
  0% {
    opacity: 0.6;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* Hide loader gracefully */
.loader.hidden {
  pointer-events: none;
  opacity: 0;
}

/* Motion blur pulse effect on number changes */
@keyframes numberPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .loader-counter {
    bottom: 30px;
    left: 30px;
  }

  .counter-value {
    font-size: 1.8rem;
  }

  .loader-brand h2 {
    font-size: clamp(1.4rem, 4vw, 2.4rem);
  }
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(14,14,14,.72) 0%, rgba(0,0,0,.45) 50%, rgba(39,27,13,.18) 100%), linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 45%)
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 20px;
  max-width: 640px;
  text-align: left;
}

.page-hero-content .hero-label {
  font-size: .72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
  display: block;
  text-align: left;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 16px
}

.page-hero-content h1 span {
  color: var(--accent);

}

.page-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 480px
}

/* breadcrumb */
.page-breadcrumb {
  position: absolute;
  top: 120px;
  left: 5%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5)
}

.page-breadcrumb a {
  color: rgba(255,255,255,.5);
  transition: var(--transition)
}

.page-breadcrumb a:hover { color: var(--accent) }

.page-breadcrumb svg { flex-shrink: 0 }

@media(max-width:600px) {
  .page-hero { height: 360px }
  .page-hero-content { padding: 0 0 80px }
}

/* ========== PROPERTIES GRID PAGE ========== */
.props-filter-bar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 56px
}

.props-filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 160px
}

.props-filter-group label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light)
}

.props-filter-group select,
.props-filter-group input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.1);
  background: var(--bg);
  font-size: .9rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition)
}

.props-filter-group select:focus,
.props-filter-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(235,212,172,.2);
  outline: none
}

.props-filter-btn {
  padding: 12px 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  align-self: flex-end
}

.props-filter-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px)
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.prop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,.05);
  cursor: pointer
}

.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg)
}

.prop-card-img {
  position: relative;
  height: 280px;
  overflow: hidden
}

.prop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.4,0,.2,1)
}

.prop-card:hover .prop-card-img img {
  transform: scale(1.07)
}

.prop-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.prop-card-badge.hot { background: #c0392b }
.prop-card-badge.exclusive { background: var(--primary-dark) }
.prop-card-badge.prime { background: #7d6240 }

.prop-card-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: var(--transition)
}

.prop-card-fav:hover {
  background: var(--accent);
  color: var(--primary)
}

.prop-card-body {
  padding: 24px 22px
}

.prop-card-area {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px
}

.prop-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 8px
}

.prop-card-price {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px
}

.prop-card-specs {
  display: flex;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.06)
}

.prop-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-light)
}

.prop-spec svg {
  color: var(--primary);
  flex-shrink: 0
}

.props-load-more {
  text-align: center;
  margin-top: 56px
}

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

@media(max-width:600px) {
  .props-grid { grid-template-columns: 1fr }
  .props-filter-bar { padding: 20px }
}

/* ========== PROPERTY DETAIL PAGE ========== */
.prop-detail-wrap {
  padding: 80px 0
}

.prop-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: start
}

/* Gallery */
.prop-gallery {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative
}

.prop-gallery-main {
  height: 520px;
  overflow: hidden;
  position: relative
}

.prop-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.prop-gallery-main:hover img {
  transform: scale(1.03)
}

.prop-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px
}

.prop-gallery-thumb {
  height: 100px;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  opacity: .65;
  transition: var(--transition)
}

.prop-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.prop-gallery-thumb.active,
.prop-gallery-thumb:hover {
  opacity: 1;
  outline: 2.5px solid var(--accent)
}

/* Detail body */
.prop-detail-area {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px
}

.prop-detail-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 8px
}

.prop-detail-price {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px
}

.prop-detail-specs-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  margin-bottom: 28px
}

.prop-detail-spec {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  color: var(--text)
}

.prop-detail-spec svg { color: var(--primary) }

.prop-detail-spec strong {
  font-weight: 700;
  color: var(--primary)
}

/* ========== INVESTORS DASHBOARD SECTION ========== */
.dash-section {
  background: linear-gradient(135deg, #1a1006 0%, var(--primary-dark) 50%, #1a1006 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden
}

.dash-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(235,212,172,.06) 0%, transparent 70%);
  pointer-events: none
}

.dash-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.dash-content .section-label {
  color: var(--accent)
}

.dash-content h2 .heading-main {
  color: rgba(255,255,255,.92)
}

.dash-content h2 .heading-script {
  color: var(--accent)
}

.dash-desc {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.75;
  margin: 20px 0 32px;
  max-width: 480px
}

.dash-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px
}

.dash-note {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  gap: 7px
}

.dash-note::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: rgba(255,255,255,.3)
}

.dash-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.dash-feat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(235,212,172,.12);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: var(--transition)
}

.dash-feat:hover {
  background: rgba(235,212,172,.08);
  border-color: rgba(235,212,172,.28);
  transform: translateY(-2px)
}

.dash-feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(235,212,172,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--accent)
}

.dash-feat h4 {
  font-family: var(--font-heading);
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 7px
}

.dash-feat p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6
}

@media(max-width:900px) {
  .dash-inner { grid-template-columns: 1fr; gap: 48px }
  .dash-features { grid-template-columns: 1fr 1fr }
}

@media(max-width:560px) {
  .dash-features { grid-template-columns: 1fr }
}

/* ========== YOUTUBE CHANNEL SECTION ========== */
.yt-section {
  background: var(--bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden
}

.yt-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent)
}

.yt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.yt-content .section-heading { margin-bottom: 20px }

.yt-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 500px
}

.yt-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px
}

.yt-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .93rem;
  color: var(--text);
  line-height: 1.5
}

.yt-feat-dot {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center
}

.yt-feat-dot svg { display: block }

.yt-visual {
  display: flex;
  justify-content: center;
  align-items: center
}

.yt-card {
  background: linear-gradient(145deg, #1a1006, var(--primary-dark));
  border-radius: 20px;
  padding: 52px 44px;
  text-align: center;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(235,212,172,.12);
  position: relative;
  overflow: hidden
}

.yt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(235,212,172,.08) 0%, transparent 70%);
  pointer-events: none
}

.yt-play-btn {
  width: 88px;
  height: 88px;
  background: #FF0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 32px rgba(255,0,0,.35);
  transition: var(--transition);
  cursor: default
}

.yt-play-btn svg {
  margin-left: 4px
}

.yt-card-badge {
  display: inline-block;
  background: rgba(235,212,172,.12);
  border: 1px solid rgba(235,212,172,.25);
  color: var(--accent);
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px
}

.yt-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px
}

.yt-card-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6
}

.yt-card-divider {
  width: 40px;
  height: 1px;
  background: rgba(235,212,172,.25);
  margin: 20px auto
}

.yt-card-handle {
  font-size: .75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px
}

@media(max-width:900px) {
  .yt-inner { grid-template-columns: 1fr; gap: 52px }
  .yt-visual { justify-content: flex-start }
}

@media(max-width:560px) {
  .yt-card { padding: 40px 28px }
  .yt-play-btn { width: 72px; height: 72px }
}

.prop-detail-desc {
  font-size: .97rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 32px
}

.prop-detail-features-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px
}

.prop-detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 36px
}

.prop-detail-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text)
}

.prop-detail-feature svg { color: var(--primary); flex-shrink: 0 }

/* Sidebar sticky card */
.prop-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.prop-sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
  border: 1px solid rgba(0,0,0,.05)
}

.prop-sidebar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--primary)
}

.prop-sidebar-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px
}

.prop-sidebar-card .btn:last-child { margin-bottom: 0 }

.prop-agent-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px
}

.prop-agent-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0
}

.prop-agent-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--primary);
  line-height: 1.3
}

.prop-agent-title {
  font-size: .78rem;
  color: var(--text-light)
}

.prop-sidebar-info li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: .88rem
}

.prop-sidebar-info li:last-child { border-bottom: none }

.prop-sidebar-info li span:first-child {
  color: var(--text-light)
}

.prop-sidebar-info li span:last-child {
  font-weight: 600;
  color: var(--primary)
}

@media(max-width:1024px) {
  .prop-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .prop-sidebar { position: static }
  .prop-gallery-main { height: 400px }
}

@media(max-width:600px) {
  .prop-gallery-thumbs { grid-template-columns: repeat(3, 1fr) }
  .prop-gallery-main { height: 300px }
  .prop-detail-features { grid-template-columns: 1fr }
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(0,0,0,.05);
  transition: var(--transition)
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent)
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 14px
}

.contact-info-card h4 {
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 700
}

.contact-info-card p,
.contact-info-card a {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500
}

.contact-info-card a:hover { color: var(--primary) }

.contact-map-wrap {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--text-light)
}

.contact-map-wrap svg { color: var(--primary); opacity: .4 }

.contact-map-wrap p {
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600
}

@media(max-width:900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px }
  .contact-info-cards { grid-template-columns: 1fr }
}

/* ========== ABOUT PAGE specific ========== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center
}

.about-story-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 540px;
  position: relative
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition)
}

.about-story-img:hover img { transform: scale(1.03) }

.about-story-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 130px;
  height: 130px;
  border: 3px solid var(--accent);
  border-radius: 0 0 var(--radius) 0;
  pointer-events: none
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px
}

.about-value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.04);
  transition: var(--transition)
}

.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent)
}

.about-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 18px;
  transition: var(--transition)
}

.about-value-card:hover .about-value-icon {
  background: linear-gradient(135deg, var(--accent), #d4b88a);
  color: var(--primary)
}

.about-value-card h3 { font-size: 1rem; margin-bottom: 8px }

.about-value-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
  transition: var(--transition)
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.team-card-img {
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.team-card-initials {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent);
  opacity: .6
}

.team-card-body {
  padding: 24px 22px
}

.team-card-body h3 { font-size: 1.1rem; margin-bottom: 4px }

.team-card-role {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block
}

.team-card-body p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65
}

.team-card-social {
  display: flex;
  gap: 8px;
  margin-top: 14px
}

.team-card-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: .75rem;
  transition: var(--transition)
}

.team-card-social a:hover {
  background: var(--primary);
  color: var(--white)
}

.about-partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px
}

.about-partner-item {
  border-radius: 14px;
  border: 1px solid rgba(97, 77, 49, .16);
  background: rgba(255, 255, 255, .88);
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(61, 38, 16, .06)
}

.about-partner-item img {
  width: 100%;
  height: 100px;
  object-fit: contain
}

@media(max-width:900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 40px }
  .about-story-img { height: 380px }
  .about-values-grid { grid-template-columns: 1fr 1fr }
  .team-grid { grid-template-columns: 1fr 1fr }
  .about-partners-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) }
}

@media(max-width:600px) {
  .about-values-grid { grid-template-columns: 1fr }
  .team-grid { grid-template-columns: 1fr }
  .contact-info-cards { grid-template-columns: 1fr }
  .about-partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) }
  .about-partner-item img { height: 84px }
}

/* active nav link for inner pages */
.nav a.nav-active,
.mobile-nav a.nav-active {
  color: var(--accent) !important
}

.nav a.nav-active::after { width: 100% }

/* ========================================================================
   GLOBAL MOBILE IMPROVEMENTS
   ======================================================================== */

@media(max-width:768px) {
  .section-pad { padding: 64px 0 }
  .cta-section { padding: 60px 0 }
}

@media(max-width:480px) {
  .section-pad { padding: 48px 0 }
  .cta-section { padding: 44px 0 }
  .container { width: 94% }
}

/* Hero stats wrap on tiny screens */
@media(max-width:440px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 18px 28px;
  }

  .contact-float {
    bottom: 92px;
    right: 20px;
    min-height: 42px;
    padding: 0 12px;
    font-size: .78rem;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 24px;
  }

  .hero-content { max-width: 100% }
}

/* Buttons comfortable on mobile */
@media(max-width:480px) {
  .btn { padding: 12px 24px; font-size: .88rem }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 10px }
  .hero-btns .btn { width: 100%; justify-content: center }
  .dash-cta-wrap { flex-direction: column; align-items: flex-start }
}

/* ========================================================================
   INVESTMENTS PAGE — STATS BAND GRID
   ======================================================================== */

.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center
}

@media(max-width:768px) {
  .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }
}

@media(max-width:380px) {
  .stats-band-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }
}

/* ========================================================================
   MY JOURNEY PAGE — PHOTO & QUOTE
   ======================================================================== */

.journey-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 540px
}

.journey-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center
}

.journey-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  border: 3px solid var(--accent);
  border-radius: 0 0 var(--radius) 0;
  pointer-events: none
}

.journey-quote {
  background: var(--white);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 20px
}

.journey-quote p {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.65;
  font-style: italic
}

.journey-quote cite {
  display: block;
  margin-top: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light)
}

/* ========================================================================
   MY JOURNEY PAGE — TIMELINE
   ======================================================================== */

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 27px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), rgba(235,212,172,.15));
  z-index: 0
}

.timeline-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 36px;
  position: relative
}

.timeline-item:last-child { padding-bottom: 0 }

.timeline-dot {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px rgba(235,212,172,.5)
}

.timeline-body {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  border: 1px solid rgba(0,0,0,.05);
  margin-top: 4px;
  transition: var(--transition)
}

.timeline-body:hover {
  box-shadow: var(--shadow);
  border-color: rgba(235,212,172,.4)
}

.timeline-body h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px
}

.timeline-body p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7
}

@media(max-width:600px) {
  .timeline::before { left: 22px }
  .timeline-dot { width: 44px; height: 44px; font-size: .62rem }
  .timeline-item { gap: 16px; padding-bottom: 28px }
  .timeline-body { padding: 16px 18px }
}

/* ========================================================================
   MY JOURNEY PAGE — DAILY WORK GRID
   ======================================================================== */

.daily-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.daily-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,.05);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition)
}

.daily-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent)
}

.daily-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 2px
}

.daily-card h4 {
  font-size: .95rem;
  color: var(--primary);
  margin-bottom: 8px
}

.daily-card p {
  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.65
}

@media(max-width:1024px) {
  .daily-grid { grid-template-columns: 1fr 1fr }
}

@media(max-width:600px) {
  .daily-grid { grid-template-columns: 1fr }
  .daily-card { padding: 20px 18px }
}

/* ========================================================================
   MY JOURNEY PAGE — PRINCIPLES GRID
   ======================================================================== */

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px
}

.principle-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,.05);
  position: relative;
  transition: var(--transition)
}

.principle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent)
}

.principle-card .num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--accent);
  opacity: .45;
  line-height: 1;
  margin-bottom: 14px
}

.principle-card h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px
}

.principle-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.7
}

@media(max-width:1024px) {
  .principle-grid { grid-template-columns: 1fr 1fr }
}

@media(max-width:600px) {
  .principle-grid { grid-template-columns: 1fr; margin-top: 32px }
}

/* ========================================================================
   BLOG DETAIL — ARTICLE CARD PADDING ON MOBILE
   ======================================================================== */

.blog-article-card {

  padding: 40px;
 
}

.blog-detail-hero {
  height: 520px
}

.blog-detail-hero-content {
  max-width: 760px
}

.blog-detail-author {
  margin-bottom: 10px;
  font-size: .8rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.92) !important
}

.blog-detail-shell {
  max-width: 100%
}

.blog-detail-author-line {
  margin-bottom: 14px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .8px
}

.blog-detail-prose {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.9
}

.blog-detail-prose > :first-child {
  margin-top: 0
}

.blog-detail-prose > :last-child {
  margin-bottom: 0
}

.blog-detail-prose p,
.blog-detail-prose div,
.blog-detail-prose ul,
.blog-detail-prose ol,
.blog-detail-prose blockquote,
.blog-detail-prose h2,
.blog-detail-prose h3,
.blog-detail-prose h4 {
  margin: 0 0 1.1em
}

.blog-detail-prose ul,
.blog-detail-prose ol {
  padding-left: 1.3rem
}

.blog-detail-prose li + li {
  margin-top: .45rem
}

.blog-detail-prose a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px
}

.blog-detail-prose blockquote {
  margin-left: 0;
  padding: 14px 18px;
  border-left: 3px solid rgba(97, 77, 49, .24);
  background: rgba(97, 77, 49, .04);
  border-radius: 0 12px 12px 0;
  color: var(--primary)
}

.blog-detail-prose h2,
.blog-detail-prose h3,
.blog-detail-prose h4 {
  color: var(--text);
  line-height: 1.3
}

@media(max-width:768px) {
  .blog-article-card { padding: 28px 24px }
  .blog-detail-hero {
    height: 440px
  }
  .blog-detail-hero-content {
    max-width: 100%
  }
}

@media(max-width:480px) {
  .blog-article-card { padding: 20px 16px; border-radius: 8px }
  .blog-detail-hero {
    height: 360px
  }
  .blog-detail-author {
    font-size: .72rem;
    letter-spacing: 1px
  }
  .blog-detail-prose {
    font-size: .95rem;
    line-height: 1.8
  }
}

/* ========================================================================
   ADDITIONAL RESPONSIVE TWEAKS
   ======================================================================== */

/* Footer bottom text alignment on mobile */
@media(max-width:480px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px
  }
  .footer { padding: 60px 0 0 }
}

@media(max-width:768px) {
  .contact-info-cards--four {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }

  .quick-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important
  }

  .dash-features--three {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }

  .contact-map-wrap p {
    text-align: center;
    line-height: 1.6;
    padding: 0 16px
  }
}

@media(max-width:560px) {
  .contact-info-cards--four,
  .dash-features--three {
    grid-template-columns: 1fr !important
  }

  .quick-contact-grid {
    gap: 18px !important
  }

  .contact-info-card {
    padding: 24px 18px
  }
}

/* Page hero smaller on very small screens */
@media(max-width:480px) {
  .page-hero { height: 320px }
  .page-hero-content { padding: 0 0 60px }
  .page-breadcrumb { top: 90px }
}

@media(max-width:640px) {
  .page-breadcrumb {
    right: 5%;
    flex-wrap: wrap;
    row-gap: 4px
  }
  .page-hero-content p {
    max-width: 100%
  }
}

/* Contact info cards always single column on small mobile */
@media(max-width:480px) {
  .contact-info-cards { grid-template-columns: 1fr }
  .contact-grid { gap: 36px }
}

/* About page partners responsive */
@media(max-width:480px) {
  .about-partners-grid { grid-template-columns: repeat(2, minmax(0,1fr)) }
}

/* Property specs scroll on mobile */
@media(max-width:480px) {
  .prop-detail-specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }
  .prop-card-specs {
    gap: 12px;
    flex-wrap: wrap
  }
}

/* Prime card min-height on mobile */
@media(max-width:480px) {
  .prime-card { min-height: 260px }
  .prime-grid { gap: 14px }
}

/* Why Dubai cards on mobile */
@media(max-width:480px) {
  .why-card { padding: 28px 20px }
  .dubai-reason-card { padding: 24px 18px }
}

/* Inquiry form padding on mobile */
@media(max-width:480px) {
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 12px 14px }
}

/* Listings card image height on mobile */
@media(max-width:480px) {
  .lcard-img { height: 280px }
  .lcard-name { font-size: 1rem }
}

/* Props filter bar stack on mobile */
@media(max-width:480px) {
  .props-filter-bar {
    flex-direction: column;
    padding: 16px;
    gap: 12px
  }
  .props-filter-group { min-width: 100% }
  .props-filter-btn { width: 100%; padding: 12px }
}

/* ========================================================================
   RESPONSIVE OVERRIDES FOR MY JOURNEY about-story-grid
   — Needed because the inline style was removed; class rules take over
   ======================================================================== */

@media(max-width:900px) {
  .about-story-grid.journey-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important
  }
}

/* Dash features on small mobile */
@media(max-width:400px) {
  .dash-features { grid-template-columns: 1fr }
}

/* ========================================================================
   LOCATION DETAIL PAGE — HERO, ABOUT, ACCESSIBILITY, ATTRACTIONS
   ======================================================================== */

/* Page hero section */
.page-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.2) 50%, rgba(97,77,49,.3) 100%);
  z-index: 1
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, transparent 0%, rgba(0,0,0,.3) 100%);
  z-index: 1
}

.page-hero-content {
  position: relative;
  z-index: 2;

  max-width: 720px;
  padding: 0 24px 80px;
  animation: slideUpFade .8s ease-out
}

.location-hero-panel {


  text-align: left;
}

.page-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.5px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
  text-align: left;
}

.page-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  max-width: 600px;

}

.location-breadcrumb {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  background: rgba(18,14,10,.35);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 7px 16px;
  backdrop-filter: blur(4px)
}

.location-breadcrumb a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  transition: color var(--transition)
}

.location-breadcrumb a:hover {
  color: var(--accent)
}

.location-hero-stats {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap
}

.location-hero-stats span {
  font-size: .72rem;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  border: 1px solid rgba(235,212,172,.52);
  background: rgba(235,212,172,.14);
  padding: 7px 11px;
  border-radius: 999px
}

/* About location section */
.about-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.about-location-content {
  animation: slideLeftFade .8s ease-out
}

.about-location-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px
}

.location-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none
}

.location-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--text);
  font-weight: 500
}

.location-highlights svg {
  color: var(--accent);
  flex-shrink: 0
}

.about-location-image {
  animation: slideRightFade .8s ease-out
}

.about-location-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg)
}

/* Easy access section */
.easy-access-section {
  background: linear-gradient(135deg, rgba(235,212,172,.08) 0%, rgba(97,77,49,.04) 100%)
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.access-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.05);
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center
}

.access-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--accent)
}

.access-card.with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(20,16,12,.68) 0%, rgba(20,16,12,.42) 58%, rgba(97,77,49,.52) 100%);
  z-index: 1
}

.access-card > * {
  position: relative;
  z-index: 2
}

.access-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px
}

.access-time {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: var(--font-heading)
}

.access-desc {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.5
}

.access-card.with-bg h3 {
  color: var(--white)
}

.access-card.with-bg .access-time {
  color: #f6e4bf
}

.access-card.with-bg .access-desc {
  color: rgba(255,255,255,.86)
}

/* Attractions grid */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.attraction-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,.05)
}

.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent)
}

.attraction-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: var(--text-light)
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition)
}

.attraction-card:hover .attraction-image img {
  transform: scale(1.08)
}

.attraction-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--accent), rgba(235,212,172,.8));
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15)
}

.attraction-content {
  padding: 24px
}

.attraction-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4
}

.attraction-desc {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.7;
  min-height: 72px
}

.btn-sm {
  padding: 10px 18px;
  font-size: .85rem
}

/* CTA section for location detail */
.cta-inner {
  text-align: center;
  padding: 60px 40px
}

/* Responsive: page hero */
@media(max-width:1200px) {
  .page-hero { height: 420px }
  .page-hero h1 { font-size: 3rem }
  .about-location-grid { gap: 40px }
  .access-grid { grid-template-columns: repeat(2, 1fr); gap: 24px }
  .attractions-grid { grid-template-columns: repeat(2, 1fr); gap: 24px }
}

@media(max-width:768px) {
  .page-hero { height: 360px }
  .page-hero-content { padding: 0 20px 60px }
  .location-hero-panel { padding: 20px 18px; border-radius: 12px }
  .page-hero h1 { font-size: 2.2rem }
  .page-subtitle { font-size: .95rem }
  .about-location-grid { grid-template-columns: 1fr; gap: 32px }
  .access-grid { grid-template-columns: 1fr; gap: 20px }
  .attractions-grid { grid-template-columns: 1fr; gap: 20px }
  .access-card { padding: 28px 20px }
  .attraction-content { padding: 20px }
  .cta-inner { padding: 48px 28px }
}

@media(max-width:480px) {
  .page-hero { height: 280px }
  .page-hero h1 { font-size: 1.8rem; letter-spacing: 0 }
  .page-label { font-size: .65rem }
  .page-subtitle { font-size: .9rem }
  .page-hero-content { padding: 0 16px 50px }
  .location-breadcrumb {
    font-size: .65rem;
    bottom: 14px;
    max-width: 94%;
    overflow: hidden;
    text-overflow: ellipsis
  }
  .location-hero-stats span {
    font-size: .62rem;
    letter-spacing: .6px;
    padding: 6px 9px
  }
  .about-location-content .section-heading h2 { font-size: 1.8rem }
  .about-location-text { font-size: .95rem; margin-bottom: 20px }
  .location-highlights { gap: 12px }
  .location-highlights li { font-size: .9rem; gap: 10px }
  .access-card h3 { font-size: 1rem }
  .access-time { font-size: 1.1rem }
  .access-desc { font-size: .8rem }
  .attraction-card { border-radius: 8px }
  .attraction-content { padding: 16px }
  .attraction-content h3 { font-size: .95rem; margin-bottom: 8px }
  .attraction-specs { gap: 8px; font-size: .75rem }
  .btn-sm { padding: 8px 14px; font-size: .8rem }
  .cta-inner { padding: 36px 20px }
  .cta-inner .section-heading h2 { font-size: 1.6rem }
}
