@import url('https://fonts.googleapis.com/css2?family=Aboreto&family=DM+Sans:wght@400;500;700;800&display=swap');

/* ========== 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: #fffaf1;
  --accent: #52816c;
  --primary: #154734;
  --primary-dark: #0d2f23;
  --text: #11241d;
  --text-light: #4d685d;
  --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: 'Aboreto', 'Trajan Pro', 'Playfair Display', serif;
  --font-body: 'DM Sans', 'Clash Grotesk', 'Inter', sans-serif;
  --font-subheading: 'DM Sans', '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:
    radial-gradient(circle at 5% 10%, rgba(21, 71, 52, .08) 0%, transparent 28%),
    radial-gradient(circle at 90% 90%, rgba(126, 198, 165, .14) 0%, transparent 34%),
    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 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary)
}

h3,
h4,
h5,
h6 {
  font-family: var(--font-subheading);
  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-subheading);
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700
}

.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
}

.flow-section {
  position: relative;
  scroll-margin-top: 110px;
}

.flow-section + .flow-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: min(1120px, 88%);
  height: 1px;
  background: linear-gradient(90deg, rgba(21, 71, 52, 0) 0%, rgba(21, 71, 52, .22) 50%, rgba(21, 71, 52, 0) 100%);
}

.flow-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, .7) 0%, rgba(235, 247, 241, .58) 100%);
}

.flow-cta {
  background:
    radial-gradient(circle at 90% 10%, rgba(126, 198, 165, .12), transparent 30%),
    var(--white);
}

.flow-journey {
  padding-top: 84px;
  padding-bottom: 84px;
  display: none;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}

.flow-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(126, 198, 165, .18) 0%, rgba(21, 71, 52, .35) 50%, rgba(126, 198, 165, .18) 100%);
  z-index: 0;
}

.flow-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(165deg, rgba(255, 255, 255, .95) 0%, rgba(236, 247, 242, .9) 100%);
  border: 1px solid rgba(21, 71, 52, .12);
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: 0 16px 44px rgba(13, 47, 35, .1);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.flow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(13, 47, 35, .16);
  border-color: rgba(21, 71, 52, .24);
}

.flow-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #1f5f47);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px rgba(13, 47, 35, .24);
}

.flow-card h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.flow-card p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.68;
}

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

  .flow-grid::before {
    display: none;
  }

  .flow-journey {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

/* ========== 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: #68b68f;
  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: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 5%;
  transition: var(--transition)
}

/* Scrolled state */
.header.scrolled .header-inner {
  background: rgba(244, 248, 244, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 5%;
  box-shadow: 0 8px 24px rgba(10, 37, 28, .14);

   backdrop-filter: blur(20px) saturate(146%);
    -webkit-backdrop-filter: blur(20px) saturate(146%);
    background-color: rgba(244, 248, 244, 0.7);

}

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

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

.logo img {
  height: 60px;
  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-right {
  margin-left: auto;
}

.nav a {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  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 {
  display: none
}

/* 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:#e6cda0;
  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-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;
  filter: saturate(.82) hue-rotate(-14deg) contrast(1.04);
  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, #0d2f239c 0%, #0d2f239e 45%, #15473494 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: 620px;
  padding: 0 0 92px
}

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

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  margin-bottom: 12px;
  line-height: 1.08;
  letter-spacing: .3px;
  color: var(--white)
}
.hero h1 span {
    color: var(--accent);
    font-family: 'Gistesy';
}
.hero p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 22px;
  max-width: 520px;
  line-height: 1.75
}

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

.hero-btns .btn {
  padding: 11px 22px;
  font-size: .78rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

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

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

.hero-stat p {
  font-size: .68rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.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;
  filter: saturate(.82) hue-rotate(-12deg);
  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 {

  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: #e6cda0;
}

.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 18px 42px rgba(24, 16, 8, .14);
}

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

.lcard-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25, .8, .25, 1), filter .4s ease;
  filter: brightness(0.93) saturate(.84) hue-rotate(-14deg);
}

.lcard:hover .lcard-img img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* Bottom gradient overlay */
.lcard-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 24, 18, .92) 0%, rgba(7, 24, 18, .58) 46%, rgba(7, 24, 18, .18) 72%, transparent 100%),
    radial-gradient(circle at 80% 10%, rgba(126, 198, 165, .14) 0%, transparent 34%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px 20px;
  gap: 14px;
}

.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: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.lcard-price {
  font-family: var(--font-body);
  font-size: .92rem;
  color: rgba(255,255,255,.88);
  font-weight: 600;
  letter-spacing: .3px;
}

.lcard-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  z-index: 1;
}

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

.lcard-fav:hover {
  transform: translateY(-1px);
}

.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-swiper,
  .listings-swiper .swiper-wrapper,
  .listings-swiper .swiper-slide,
  .listings-track {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }
  .lcard {
    width: 100% !important;
    min-width: 100% !important;
  }
  .lcard-link {
    display: block;
    width: 100%;
  }
  .lcard-img {
    width: 100%;
    min-height: 260px;
    max-width: 100%;
  }
  .lcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .lcard-overlay {
    padding: 18px 16px;
  }
  .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(135deg, #1a1006 0%, var(--primary-dark) 50%, #1a1006 100%);
  padding-top: 86px;
  padding-bottom: 86px;
  position: relative;
  overflow: hidden;
}

.partners::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(126,198,165,.1) 0%, transparent 72%);
  pointer-events: none;
}

.partners .section-label {
  color: var(--accent);
}

.partners .heading-main {
  color: rgba(255,255,255,.92);
}

.partners .heading-script {
  color: var(--accent);
}

.partners .section-sub {
  color: rgba(255,255,255,.75);
}

.partners-strip {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(126,198,165,.28);
    background: rgba(255,255,255,.06);
    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, rgba(13,47,35,.92) 0%, rgba(13,47,35,0) 100%)
}

.partners-strip::after {
  right: 0;
  background: linear-gradient(to left, rgba(13,47,35,.92) 0%, rgba(13,47,35,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: brightness(0) invert(1) saturate(0) contrast(1.15);
  opacity: .95;
}

@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(21, 71, 52, .14);
  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;
  filter: saturate(.84) hue-rotate(-14deg);
  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 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #133d2d;
  border-radius: var(--radius);
  min-height: 360px;
  padding: 20px;
  text-align: left;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, .2)
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: -2;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 29, 22, .22) 0%, rgba(8, 29, 22, .88) 76%);
  z-index: -1;
}

.why-card:nth-child(1)::before { background-image: url('../assets/images/dubai-lifestyle.png'); }
.why-card:nth-child(2)::before { background-image: url('../assets/images/hero-bg.png'); }
.why-card:nth-child(3)::before { background-image: url('../assets/images/property-1.png'); }
.why-card:nth-child(4)::before { background-image: url('../assets/images/property-2.png'); }

.why-card > * {
  position: relative;
  z-index: 1;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(126, 198, 165, .86)
}

.why-card:hover::before {
  transform: scale(1.09);
}

.why-icon {
  width: 24px;
  height: 24px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
  color: #c8f1df;
  transition: var(--transition)
}

.why-card:hover .why-icon {
  background: transparent;
  color: var(--accent)
}

.why-card h3 {
  font-size: .86rem;
  letter-spacing: .6px;
  color: var(--white);
  margin-bottom: 8px
}

.why-card p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .84);
  line-height: 1.5
}

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

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

/* ========== FAQ (DARK MODERN ACCORDION) ========== */
.faq-section {
  position: relative;
  overflow: hidden;
  padding:60px 0px;
  background: linear-gradient(135deg, #140d07 0%, #0d2f23 52%, #140d07 100%);
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 62% 62% at 82% 46%, rgba(126,198,165,.12) 0%, transparent 72%);
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-section .section-label {
  color: var(--accent);
}

.faq-section .heading-main {
  color: rgba(255,255,255,.94);
}

.faq-section .heading-script {
  color: var(--accent);
}

.faq-accordion {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(126,198,165,.22);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.faq-item:nth-child(1) {
  grid-column: span 2;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(126,198,165,.42);
}

.faq-item.is-open {
  border-color: rgba(126,198,165,.56);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  background: rgba(255,255,255,.1);
}

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

.faq-trigger span:first-child {
  font-family: var(--font-subheading);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.96);
  line-height: 1.45;
}

.faq-plus {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(126,198,165,.48);
  background: rgba(126,198,165,.16);
  position: relative;
  flex: 0 0 30px;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  background: rgba(255,255,255,.96);
  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 22px 20px;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  line-height: 1.78;
}

@media(max-width:860px) {
  .faq-accordion {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-item:nth-child(1) {
    grid-column: auto;
  }
}

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

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

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

.quote-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: quoteParallax 16s ease-in-out infinite alternate;
  filter: saturate(.86) hue-rotate(-12deg);
}

@keyframes quoteParallax {
  from { transform: scale(1.06) translateY(0); }
  to { transform: scale(1.12) translateY(-1.6%); }
}

.quote-banner-overlay {
  position: absolute;
  inset: 0;
  background:
   linear-gradient(209deg, rgba(8, 28, 20, .84) 0%, rgb(8 28 20 / 87%) 48%, rgb(21 71 52) 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: 100vh
  }

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

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

/* ========== WHY DUBAI ========== */


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

.dubai-reason-card {
  background: rgba(255,255,255,.95);
  border-radius: calc(var(--radius) * 1.2);
  padding: 30px 20px 22px;
  text-align: left;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
  border: 1px solid rgba(20, 12, 6, .06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 360px;
  gap: 8px;
}

.dubai-reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(30, 18, 8, .12);
  border-color: rgba(212, 184, 138, .35);
  background: rgba(255,255,255,.98);
}

.dubai-reason-icon {
  width: 42px;
  height: 42px;
  background: radial-gradient(circle at top left, rgba(255,243,219,.95), rgba(208,170,120,.14));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 4px;
  transition: transform .35s ease, background .35s ease, color .35s ease;
  flex-shrink: 0;
  border: 1px solid rgba(212, 184, 138, .32);
}

.dubai-reason-icon svg {
  width: 18px;
  height: 18px;
}

.dubai-reason-card:hover .dubai-reason-icon {
  transform: scale(1.03);
  background: linear-gradient(135deg, rgba(212, 184, 138, .95), rgba(255,255,255,.9));
  color: var(--primary-dark);
}

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

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

.dubai-reason-card h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin: 0;
  font-weight: 600;
  line-height: 1.35;
}

.dubai-reason-card p {
  font-size: .92rem;
  color: rgba(32, 20, 9, .68);
  line-height: 1.75;
  margin: 0;
  max-width: none;
}

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

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

  .dubai-reason-card {
    padding: 24px 18px;
    gap: 12px;
    min-height: auto;
  }

  .dubai-reason-card h3 {
    font-size: 1.02rem;
  }

  .dubai-reason-card p {
    max-width: none;
    font-size: .95rem;
  }
}

/* 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(230, 205, 160, .08)
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(230, 205, 160, .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(230, 205, 160, .2)
}

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

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

.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(230, 205, 160, .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-swiper {
  position: relative;
  overflow: hidden;
}

.blog-swiper .blog-grid {
  display: flex;
  gap: 0;
}

.blog-swiper .swiper-slide {
  width: auto;
  height: auto;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(21, 71, 52, .18);
  box-shadow: 0 14px 34px rgba(9, 32, 24, .12);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(9, 32, 24, .18);
  border-color: rgba(126, 198, 165, .52);
}

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

.blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) hue-rotate(-12deg);
  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(13, 47, 35, .96) 0%, rgba(13, 47, 35, .64) 38%, rgba(13, 47, 35, .18) 76%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  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.1rem;
  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: .84rem;
  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: .75rem;
  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;
}

.blog-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.blog-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(21, 71, 52, .2);
  background: rgba(255, 255, 255, .82);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

@media(max-width:1024px) {
  .blog-card-image {
    height: 360px;
  }
}

@media(max-width:600px) {
  .blog-card-image {
    height: 380px;
  }

  .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 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(126,198,165,.18) 0%, transparent 34%),
    linear-gradient(180deg, #154734 0%, #0a1f17 100%);
  color: rgba(255, 255, 255, .72);
  padding: 92px 0 0
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 90%);
  pointer-events: none
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 42px;
  margin-bottom: 62px
}

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

.footer-brand p {
  max-width: 28ch;
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 22px;
  color: rgba(255,255,255,.7)
}

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

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

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

.footer h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--white);
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 20px
}

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

.footer-links a {
  font-size: .92rem;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  transition: var(--transition)
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(3px)
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 26px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .84rem;
  color: rgba(255,255,255,.6)
}

.footer-qr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 10px;
  
  backdrop-filter: blur(12px)
}

.footer-qr img {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  padding: 6px
}

.footer-qr span {
  max-width: 120px;
  font-size: .72rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,.7)
}

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

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

.quick-contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch
}

.quick-contact-grid > * {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 28px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  backdrop-filter: blur(10px)
}

.quick-contact-grid a:hover {
  transform: translateY(-3px)
}

@media(max-width:768px) {
  .quick-contact-grid {
    grid-template-columns: 1fr !important
  }
}

/* ========== 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(13, 47, 35, .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 ========== */
/* ========== MINIMAL BRAND 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:
    radial-gradient(circle at 18% 20%, rgba(126, 198, 165, .12) 0%, transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(230, 205, 160, .1) 0%, transparent 32%),
    linear-gradient(165deg, #0c2b20 0%, #154734 60%, #0a2018 100%);
}

.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 .7s cubic-bezier(.4, 0, .2, 1);
}

.loader.reveal .loader-inner {
  transform: translateY(-10px) scale(.985);
  opacity: 0;
}

.loader.reveal .loader-bg {
  opacity: 0;
}

.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: loaderFadeUp .75s ease .1s both;
}

@keyframes loaderFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-logo {
  width: clamp(170px, 25vw, 260px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .32));
}

.loader-subtitle {
  font-family: var(--font-body);
  font-size: .76rem;
  letter-spacing: .24em;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .loader-brand {
    gap: 12px;
  }

  .loader-subtitle {
    font-size: .68rem;
    letter-spacing: .2em;
  }
}

/* ========== 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;
  filter: saturate(.82) hue-rotate(-14deg) contrast(1.04);
  transform: scale(1.04);
  transition: transform 8s ease-out
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:radial-gradient(circle at top right, #15473496 0%, #154734cf 100%);
}

.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(126,198,165,.22);
  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 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.24);
  cursor: pointer
}

.prop-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 29, 22, .92) 0%, rgba(8, 29, 22, .48) 52%, rgba(8, 29, 22, .12) 100%);
  z-index: 1;
  pointer-events: none;
}

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

.prop-card-img {
  position: relative;
  height: 420px;
  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 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px 22px
}

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

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

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

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

.prop-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.86)
}

.prop-spec svg {
  color: #b8e7cf;
  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(126,198,165,.08) 0%, transparent 70%);
  pointer-events: none
}

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

.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-visual {
  position: relative;
  max-width: 620px;
  justify-self: end
}

.dash-visual-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  box-shadow: 0 30px 90px rgba(0,0,0,.35)
}

.dash-visual-frame img {
  width: 100%;
  display: block;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.02) contrast(1.04)
}

.dash-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.34) 100%),
    radial-gradient(circle at top right, rgba(126,198,165,.18), transparent 42%);
  pointer-events: none
}

.dash-visual-chip {
  position: absolute;
  max-width: 210px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(10,31,23,.72);
  border: 1px solid rgba(126,198,165,.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
  color: var(--white)
}

.dash-visual-chip span {
  display: block;
  font-size: .68rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  margin-bottom: 4px
}

.dash-visual-chip strong {
  display: block;
  font-size: .92rem;
  line-height: 1.35;
  font-family: var(--font-body);
  font-weight: 700;
  color: rgba(255,255,255,.92)
}

.dash-chip-top {
  top: 22px;
  left: 22px
}

.dash-chip-bottom {
  right: 22px;
  bottom: 22px
}

.dash-visual-caption {
  margin: 18px 0 0;
  color: rgba(255,255,255,.52);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 540px
}

@media(max-width:900px) {
  .dash-inner { grid-template-columns: 1fr; gap: 48px }
  .dash-visual { max-width: 100%; justify-self: stretch }
}

@media(max-width:560px) {
  .dash-visual-chip {
    max-width: 170px;
    padding: 12px 14px
  }

  .dash-chip-top {
    top: 14px;
    left: 14px
  }

  .dash-chip-bottom {
    right: 14px;
    bottom: 14px
  }

  .dash-visual-caption {
    font-size: .84rem
  }
}

/* ========== 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(126,198,165,.16);
  position: relative;
  overflow: hidden
}

.yt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(126,198,165,.1) 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(126,198,165,.14);
  border: 1px solid rgba(126,198,165,.3);
  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(126,198,165,.28);
  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;
  filter: saturate(.84) hue-rotate(-12deg);
  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 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #133d2d;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.22);
  transition: var(--transition)
}

.about-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}

.about-value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 29, 22, .24) 0%, rgba(8, 29, 22, .9) 82%);
  z-index: -1;
}

.about-value-card:nth-child(1)::before { background-image: url('../assets/images/property-1.png'); }
.about-value-card:nth-child(2)::before { background-image: url('../assets/images/property-2.png'); }
.about-value-card:nth-child(3)::before { background-image: url('../assets/images/hero-bg.png'); }

.about-value-card > * {
  position: relative;
  z-index: 1;
}

.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(215, 187, 122, .8)
}

.about-value-card:hover::before {
  transform: scale(1.08);
}

.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), #68b68f);
  color: var(--primary)
}

.about-value-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white)
}

.about-value-card p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .84);
  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(21, 71, 52, .2);
  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(126,198,165,.2));
  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(126,198,165,.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(126,198,165,.42)
}

.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-detail-hero {
  height: min(78vh, 760px);
  min-height: 560px;
}

.blog-detail-hero .page-hero-content {
  padding-bottom: 92px;
}

.blog-detail-breadcrumb {
  padding: 8px 18px;
  background: rgba(18,14,10,.42);
  border-color: rgba(255,255,255,.2);
}

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

.blog-detail-hero-content h1 {
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.blog-detail-hero-content p {
  max-width: 720px;
  font-size: 1.06rem;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.blog-detail-meta-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.blog-detail-shell {
  max-width: 1280px;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .8fr);
  gap: 30px;
  align-items: start;
}

.blog-article-card {
  padding: clamp(28px, 4vw, 56px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(250,248,244,.94) 100%);
  border: 1px solid rgba(97,77,49,.08);
  box-shadow: 0 24px 80px rgba(0,0,0,.08);
}

.blog-article-intro {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(97,77,49,.1);
}

.blog-article-title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--text);
}

.blog-article-lead {
  margin: 0;
  max-width: 66ch;
  color: var(--text-light);
  font-size: 1.04rem;
  line-height: 1.85;
}

.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-author-line {
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: .78rem;
}

.blog-detail-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 20px;
}

.blog-summary-card,
.blog-callout-card {
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(97,77,49,.1);
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 50px rgba(0,0,0,.06);
}

.blog-summary-card {
  background: linear-gradient(180deg, rgba(20,17,13,.98) 0%, rgba(44,33,20,.96) 100%);
  border-color: rgba(255,255,255,.1);
  color: var(--white);
}

.blog-summary-card h3,
.blog-callout-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.blog-summary-label {
  margin: 0 0 10px;
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-summary-card .blog-summary-label {
  color: rgba(234,208,167,.86);
}

.blog-summary-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}

.blog-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.blog-summary-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-summary-list span {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.blog-summary-list strong {
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  text-align: right;
}

.blog-callout-card {
  background: linear-gradient(180deg, #fff 0%, #faf7f0 100%);
}

/* ==========================================================================
   PREMIUM ENHANCEMENT + RESPONSIVE / ACCESSIBILITY LAYER
   Appended last so it refines the existing design system without overriding
   structural rules. Purely additive: tokens, polish, a11y, overflow safety.
   ========================================================================== */

:root {
  --gold-grad: linear-gradient(135deg, #f3e2bf 0%, #e6cda0 48%, #d3b683 100%);
  --primary-grad: linear-gradient(135deg, #6f5839 0%, #4a3722 100%);
  --shadow-sm: 0 2px 12px rgba(13, 47, 35, .08);
  --shadow-md: 0 12px 34px rgba(13, 47, 35, .14);
  --shadow-xl: 0 28px 70px rgba(13, 47, 35, .2);
  --ring: 0 0 0 3px rgba(21, 71, 52, .24);
  --transition-fast: .2s cubic-bezier(.4, 0, .2, 1);
}

/* ---- Smooth anchored scrolling clears the fixed header ---- */
html {
  scroll-padding-top: 110px;
}

/* ---- Premium text selection + caret ---- */
::selection {
  background: var(--accent);
  color: var(--primary-dark);
}
body {
  caret-color: var(--primary);
}

/* ---- Keyboard accessibility: visible focus rings everywhere ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible,
.nav-cta:focus-visible,
.lang-globe:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

/* ---- Honeypot anti-spam field (visually removed, off-screen) ---- */
.js-hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* ---- Skip link (added to shared header.php) ---- */
.skip-link {
  position: fixed;
  top: -120px;
  left: 16px;
  z-index: 100000;
  background: var(--primary);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  letter-spacing: .3px;
  box-shadow: var(--shadow-md);
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 0;
}

/* ---- Global no-horizontal-scroll + safe word wrapping ---- */
html,
body {
  max-width: 100%;
}
img,
svg,
video,
iframe,
canvas,
table {
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6,
p, a, li, span, strong, em, label, blockquote, figcaption {
  overflow-wrap: break-word;
}

/* ---- Premium button polish (sheen + refined elevation) ---- */
.btn {
  letter-spacing: .3px;
  will-change: transform;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s ease;
  pointer-events: none;
}
.btn:hover::after {
  transform: translateX(120%);
}
.btn:active {
  transform: translateY(0) scale(.98);
}
.btn-primary {
  background: var(--primary-grad);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  box-shadow: var(--shadow-xl);
}
.btn-gold {
  background: var(--gold-grad);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  background: var(--gold-grad);
  filter: brightness(1.04);
  box-shadow: var(--shadow-xl);
}

/* ---- Card elevation refinement (only confirmed components) ---- */
.lcard,
.blog-card,
.loc-card {
  transition: transform var(--transition), box-shadow var(--transition);
}
.lcard:hover,
.blog-card:hover,
.loc-card:hover {
  box-shadow: var(--shadow-xl);
}

/* ---- Premium custom scrollbar (desktop pointers only) ---- */
@media (min-width: 1025px) and (pointer: fine) {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg);
  }
  ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
  }
  ::-webkit-scrollbar-track {
    background: var(--bg);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
    border: 3px solid var(--bg);
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
  }
}

/* ---- Generous container on ultra-wide displays ---- */
@media (min-width: 1600px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 2200px) {
  .container {
    max-width: 1480px;
  }
}

/* ---- Active nav indication (shared header.php $activeNav) ---- */
.nav a.is-active {
  color: var(--primary);
  font-weight: 600;
}
.header:not(.scrolled) .nav a.is-active {
  color: var(--white);
}

/* ---- Reduced-motion: ensure content is always visible & calm ---- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .btn::after {
    display: none;
  }
}

.blog-callout-card p {
  margin: 0 0 18px;
  color: var(--text-light);
  line-height: 1.8;
}

.blog-callout-card .btn {
  width: 100%;
  justify-content: center;
}

.blog-detail-prose {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.95;
  max-width: 72ch;
}

.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: 16px 20px;
  border-left: 3px solid rgba(21, 71, 52, .24);
  background: rgba(21, 71, 52, .08);
  border-radius: 0 16px 16px 0;
  color: var(--primary);
}

.blog-detail-prose h2,
.blog-detail-prose h3,
.blog-detail-prose h4 {
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -.02em;
  margin-top: 1.8em;
}

.blog-detail-prose h2 {
  font-size: 1.7rem;
}

.blog-detail-prose h3 {
  font-size: 1.35rem;
}

.blog-detail-prose h4 {
  font-size: 1.15rem;
}

.blog-detail-prose img,
.blog-detail-prose figure {
  display: block;
  max-width: 100%;
  border-radius: 20px;
  margin: 28px 0;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}

.blog-detail-prose img {
  width: 100%;
  height: auto;
}

.blog-detail-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 18px;
}

.blog-detail-prose th,
.blog-detail-prose td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(97,77,49,.1);
  text-align: left;
}

.blog-detail-prose th {
  background: rgba(97,77,49,.06);
  color: var(--primary);
}

.blog-detail-related .blog-grid {
  gap: 28px;
}

.blog-detail-related .blog-card {
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  border-radius: 24px;
  overflow: hidden;
}

.blog-detail-related .blog-card-overlay {
  background: linear-gradient(180deg, rgba(8,8,8,.12) 0%, rgba(12,10,8,.82) 100%);
}

@media(max-width:1024px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: static;
  }
}

@media(max-width:768px) {
  .blog-detail-hero {
    min-height: 470px;
    height: 470px;
  }

  .blog-detail-hero .page-hero-content {
    padding-bottom: 72px;
  }

  .blog-detail-hero-content {
    max-width: 100%;
  }

  .blog-detail-hero-content h1 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .blog-detail-meta {
    gap: 8px;
  }

  .blog-detail-meta-item {
    font-size: .68rem;
    letter-spacing: 1.2px;
    padding: 9px 12px;
  }

  .blog-article-card {
    border-radius: 24px;
  }
}

@media(max-width:480px) {
  .blog-detail-hero {
    min-height: 420px;
    height: 420px;
  }

  .blog-detail-hero .page-hero-content {
    padding-bottom: 58px;
  }

  .blog-detail-author {
    font-size: .72rem;
    letter-spacing: 1px;
  }

  .blog-article-card,
  .blog-summary-card,
  .blog-callout-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .blog-detail-prose {
    font-size: .95rem;
    line-height: 1.8;
  }

  .blog-summary-list li {
    gap: 10px;
  }
}

/* ========================================================================
   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 }

  .footer-qr {
    width: 100%;
    justify-content: center;
    padding: 10px 12px
  }

  .footer-qr span {
    max-width: 160px
  }
}

@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, #15473496 0%, #154734cf 100%);
  z-index: 1
}

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

  max-width: 720px;
  margin-top: 50px;
  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: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  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(126,198,165,.5);
  background: rgba(126,198,165,.18);
  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(126,198,165,.12) 0%, rgba(21,71,52,.08) 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(126,198,165,.85));
  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: clamp(1.9rem, 4.4vw, 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 { margin-top: 50px; padding: 0 20px 60px }
  .location-hero-panel { padding: 20px 18px; border-radius: 12px }
  .page-hero h1 { font-size: clamp(1.9rem, 6vw, 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: clamp(1.8rem, 8vw, 2rem); letter-spacing: 0 }
  .page-label { font-size: .65rem }
  .page-subtitle { font-size: .9rem }
  .page-hero-content { margin-top: 50px; 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 }
}
