/* @import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Cairo+Play:wght@300;400;500;600;700;800;900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Tajawal:wght@300;400;500;700;800;900&display=swap");

/* ==========================================
   CSS VARIABLES — Brand Identity
   ========================================== */
:root {
  /* Core Brand Colors — from logo: deep navy + warm gold */
  --navy-900: #0a1628;
  --navy-800: #0f2040;
  --navy-700: #152a55;
  --navy-600: #1c3668;
  --navy-500: #234480;

  --gold-600: #9a7528;
  --gold-500: #b8913a;
  --gold-400: #c9a44f;
  --gold-300: #d9b86a;
  --gold-100: #f5e9c8;

  --white: #ffffff;
  --cream: #fafaf8;
  --gray-50: #f6f7f9;
  --gray-100: #eef0f4;
  --gray-200: #e2e5ec;
  --gray-400: #9aa3b5;
  --gray-600: #5c6782;
  --dark: #111827;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #b8913a 0%, #d4a84b 35%, #c9a44f 65%, #9a7528 100%);
  --grad-navy: linear-gradient(135deg, #0a1628 0%, #152a55 100%);
  --grad-hero: linear-gradient(180deg,
      rgba(10, 22, 40, 0.15) 0%,
      rgba(10, 22, 40, 0.75) 70%,
      rgba(10, 22, 40, 0.95) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.16);
  --shadow-xl: 0 30px 80px rgba(10, 22, 40, 0.22);
  --shadow-gold: 0 10px 40px rgba(154, 117, 40, 0.4);

  /* Design Tokens */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s var(--ease);
  --t-base: 0.35s var(--ease);
  --t-slow: 0.55s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* overflow-x: hidden removed — it breaks position:sticky */
}

body {
  font-family: "Cairo", sans-serif;
  background: var(--cream);
  color: var(--dark);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* Fix: Bootstrap adds inline padding-right to body when offcanvas/modal opens
   causing white edges on the page — override it */
body[style*="padding"] {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

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

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

ul {
  list-style: none;
  padding: 0;
}

::selection {
  background: var(--gold-500);
  color: var(--navy-900);
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--navy-900);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-500);
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
.txt-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Cairo", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.section-eyebrow::before {
  display: none;
}

.section-title {
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy-900);
  line-height: 1.25;
}

.divider-gold {
  width: 50px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.bg-offwhite {
  background: var(--gray-50);
}

.bg-cream {
  background: var(--cream);
}

.bg-navy {
  background: var(--navy-900);
}

/* ==========================================
   SECTION HEADER
   ========================================== */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.slider-navs {
  display: flex;
  gap: 8px;
  align-items: center;
}

.snav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t-base);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.snav-btn:hover {
  background: var(--grad-gold);
  border-color: transparent;
  color: var(--navy-900);
  transform: scale(1.05);
}

.section-head-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ==========================================
   BUTTONS
   ========================================== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: linear-gradient(135deg, #9e7a2a 0%, #bf8e17 35%, #bf9a3e 65%, #9e7a2a 100%);
  color: #ffffff;
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring);
  box-shadow:
    0 6px 28px rgba(154, 117, 40, 0.5),
    0 2px 8px rgba(154, 117, 40, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.3px;
  will-change: transform, box-shadow;
  text-shadow: 0 1px 3px rgba(100, 60, 0, 0.3);
}

/* shimmer sweep */
.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.cta-primary:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 22px 55px rgba(154, 117, 40, 0.65),
    0 8px 24px rgba(154, 117, 40, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.cta-primary:hover::before {
  left: 130%;
}

.cta-primary:active {
  transform: translateY(-1px) scale(0.99);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  backdrop-filter: blur(16px);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.cta-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.cta-secondary:hover::before {
  opacity: 1;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-4px) scale(1.02);
  color: var(--white);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.cta-secondary:active {
  transform: translateY(-1px) scale(0.99);
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--t-base);
  white-space: nowrap;
}

.cta-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  color: var(--navy-700);
  font-family: "Cairo", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  cursor: pointer;
  transition: var(--t-fast);
  white-space: nowrap;
}

.btn-outline-navy:hover {
  background: var(--navy-900);
  color: var(--gold-400);
  border-color: var(--navy-900);
}


/* ==========================================
   NAVBAR — Modern Luxury 2025
   ========================================== */

#mainNavbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0;
  transition: all 0.45s var(--ease);
}

#mainNavbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 90px;
}

#mainNavbar .collapse.navbar-collapse {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  flex: 0 0 auto;
}



/* FIX: on mobile, hide the collapse entirely to prevent ghost elements */
@media (max-width: 991.98px) {
  #mainNavbar .collapse.navbar-collapse {
    display: none !important;
  }

  /* Also hide desktop CTA buttons on mobile */
  #mainNavbar .d-none.d-lg-flex {
    display: none !important;
  }
}

/* FIX: tight screens 992px–1200px — shrink items so they don't overlap */
@media (min-width: 992px) and (max-width: 1199.98px) {
  #mainNavbar .container {
    height: 78px;
    gap: 6px;
  }

  .nav-logo-img,
  .navbar-scrolled .nav-logo-img {
    height: 56px;
  }

  .nav-link-custom {
    font-size: 0.78rem !important;
    padding: 6px 9px !important;
  }

  .nav-link-custom::after {
    right: 9px;
    left: 9px;
  }

  .btn-ghost-nav {
    font-size: 0.75rem;
    padding: 7px 12px;
    gap: 5px;
  }

  .btn-gold-nav {
    font-size: 0.75rem;
    padding: 7px 13px;
    gap: 5px;
  }

  #mainNavbar .d-none.d-lg-flex {
    gap: 8px !important;
  }
}

/* Transparent state — over hero */
#mainNavbar.navbar-transparent {
  background: transparent;
}

#mainNavbar.navbar-transparent .container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* FIX: ensure nav links are visible on transparent state */
#mainNavbar.navbar-transparent .nav-link-custom {
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

#mainNavbar.navbar-transparent .btn-ghost-nav {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  /* text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); */
}

/* Scrolled state — glassmorphism */
#mainNavbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(185, 145, 58, 0.15), 0 8px 32px rgba(10, 22, 40, 0.08);
}

#mainNavbar.navbar-scrolled .container {
  height: 90px;
  border-bottom: none;
}

/* Logo */
.navbar-brand-logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.nav-logo-img {

  height: 75px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s var(--ease);
  /* FIX: make logo visible on transparent (dark hero) background */
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.navbar-scrolled .nav-logo-img {
  height: 70px;
  /* FIX: restore original logo colors when scrolled (white navbar) */
  filter: none;
}

/* Nav Links */
.nav-link-custom {
  font-family: "Cairo", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.25s var(--ease);
  letter-spacing: 0.3px;
}

.navbar-scrolled .nav-link-custom {
  color: var(--navy-800) !important;
}

/* Underline indicator */
.nav-link-custom::after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 16px;
  left: 16px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
}

.nav-link-custom:hover {
  color: var(--gold-300) !important;
}

.navbar-scrolled .nav-link-custom:hover {
  color: var(--gold-600) !important;
}

/* CTA ghost button */
.btn-ghost-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: "Cairo", sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-spring);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.btn-ghost-nav:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.navbar-scrolled .btn-ghost-nav {
  color: var(--navy-800);
  border-color: var(--navy-800);
  border-width: 1.5px;
  background: transparent;
  backdrop-filter: none;
}

.navbar-scrolled .btn-ghost-nav:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}

/* CTA gold button */
.btn-gold-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #9e7a2a 0%, #bf8e17 35%, #bf9a3e 65%, #9e7a2a 100%);
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-family: "Cairo", sans-serif;
  font-size: 0.83rem;
  font-weight: 800;
  transition: transform 0.38s var(--ease-spring), box-shadow 0.38s var(--ease-spring);
  border: none;
  box-shadow: 0 4px 18px rgba(154, 117, 40, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
  text-shadow: 0 1px 3px rgba(100, 60, 0, 0.3);
}

/* shimmer sweep */
.btn-gold-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn-gold-nav:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 36px rgba(154, 117, 40, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.btn-gold-nav:hover::before {
  left: 130%;
}

/* Navbar progress line */
.navbar-progress-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--grad-gold);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* Toggler — Hamburger → X animation */
.navbar-toggler-custom {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  transition: var(--t-base);
  backdrop-filter: blur(8px);
}

.navbar-toggler-custom span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t-base);
  transform-origin: center;
}

.navbar-toggler-custom span:nth-child(1) {
  transform-origin: center;
}

.navbar-toggler-custom span:nth-child(3) {
  transform-origin: center;
}

body.menu-open .navbar-toggler-custom span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .navbar-toggler-custom span:nth-child(2) {
  transform: scaleX(0);
  opacity: 0;
}

body.menu-open .navbar-toggler-custom span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-scrolled .navbar-toggler-custom {
  background: transparent;
  border-color: var(--gray-300);
}

.navbar-scrolled .navbar-toggler-custom span {
  background: var(--navy-800);
}

/* Offcanvas — Redesigned Mobile Nav */
.mobile-nav-offcanvas {
  background: #0a1628;
  color: #e8edf5;
  max-width: 320px;
  border-left: 1px solid rgba(185, 145, 58, 0.25);
  z-index: 99999 !important;
  /* above navbar z-index: 9999 */
}

/* Backdrop also above navbar */
.offcanvas-backdrop {
  z-index: 99998 !important;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(185, 145, 58, 0.2);
  background: linear-gradient(135deg, rgba(185, 145, 58, 0.08) 0%, transparent 100%);
}

.mobile-nav-logo {
  height: 40px;
  object-fit: contain;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(232, 237, 245, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.mobile-nav-close:hover {
  background: rgba(185, 145, 58, 0.15);
  border-color: rgba(185, 145, 58, 0.5);
  color: var(--gold-600);
}

.mobile-nav-links {
  list-style: none;
  padding: 12px 16px;
  margin: 0;
  flex-grow: 1;
}

.mobile-nav-links li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #c8d4e8;
  font-family: "Cairo", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

.mobile-nav-links li a:hover {
  background: rgba(185, 145, 58, 0.12);
  color: #d4a84b;
}

.mobile-nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(185, 145, 58, 0.08);
  border: 1px solid rgba(185, 145, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold-600);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mobile-nav-links li a:hover .mobile-nav-icon {
  background: rgba(185, 145, 58, 0.18);
  border-color: rgba(154, 117, 40, 0.45);
}

.mobile-nav-arrow {
  margin-right: auto;
  margin-left: 0;
  font-size: 0.7rem;
  opacity: 0.3;
  color: #e8edf5;
}

.mobile-nav-footer {
  padding: 16px 20px 28px;
  border-top: 1px solid rgba(185, 145, 58, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #c8d4e8;
  text-decoration: none;
  font-family: "Cairo", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.mobile-nav-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #e8edf5;
}

.mobile-nav-btn-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #9e7a2a 0%, #e8c060 35%, #bf9a3e 65%, #9e7a2a 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: "Cairo", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 18px rgba(185, 145, 58, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  will-change: transform, box-shadow;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(100, 60, 0, 0.3);
}

.mobile-nav-btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.mobile-nav-btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 32px rgba(185, 145, 58, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.mobile-nav-btn-gold:hover::before {
  left: 130%;
}

/* Keep old .offcanvas styles for any other use */
.offcanvas:not(.mobile-nav-offcanvas) {
  background: var(--navy-900);
  color: var(--white);
  max-width: 300px;
}

.offcanvas:not(.mobile-nav-offcanvas) .offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas:not(.mobile-nav-offcanvas) .nav-link-custom {
  display: block;
  padding: 12px 16px !important;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85) !important;
  border-radius: var(--radius-sm);
  transition: var(--t-fast);
}

.offcanvas:not(.mobile-nav-offcanvas) .nav-link-custom::after {
  display: none;
}

.offcanvas:not(.mobile-nav-offcanvas) .nav-link-custom:hover {
  background: rgba(185, 145, 58, 0.15);
  color: var(--gold-400) !important;
}

.offcanvas:not(.mobile-nav-offcanvas) ul.navbar-nav {
  gap: 4px !important;
}

.offcanvas:not(.mobile-nav-offcanvas) .offcanvas-body {
  padding: 16px 20px 24px;
}

/* ==========================================
   HERO V2 — Fixed & Redesigned
   ========================================== */

/* ── Section container ── */
.hero-v2 {
  position: relative;
  width: 100%;
  height: 100svh;
  /* svh = safe viewport height, avoids mobile bar overlap */
  min-height: 680px;
  max-height: 960px;
  overflow: visible;
  /* FIX: allow cf-dropdowns to show below hero */
  display: flex;
  flex-direction: column;
}

/* ── Background Swiper ── */
.hero-v2 .hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-v2 .hero-swiper .swiper-wrapper,
.hero-v2 .hero-swiper .swiper-slide {
  width: 100% !important;
  height: 100% !important;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

/* ── Overlay layers ── */
.hero-overlay-v2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(6, 15, 30, 0.55) 0%,
      rgba(6, 15, 30, 0.38) 40%,
      rgba(6, 15, 30, 0.72) 80%,
      rgba(6, 15, 30, 0.90) 100%);
}

.hero-gradient-bottom {
  display: none;
  /* merged into overlay-v2 */
}

/* Grain texture — subtle premium feel */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}

/* Ambient glows */
.hero-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 2;
  pointer-events: none;
  animation: ambientPulse 10s ease-in-out infinite alternate;
}

.hero-ambient-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  right: -120px;
  background: radial-gradient(circle, rgba(185, 145, 58, 0.16) 0%, transparent 70%);
}

.hero-ambient-2 {
  width: 450px;
  height: 450px;
  bottom: 10%;
  left: -80px;
  background: radial-gradient(circle, rgba(28, 54, 104, 0.4) 0%, transparent 70%);
  animation-delay: 5s;
}

@keyframes ambientPulse {
  from {
    opacity: 0.5;
    transform: scale(1);
  }

  to {
    opacity: 0.9;
    transform: scale(1.2);
  }
}

/* ── Content wrapper ── */
/* Key fix: use flex column + justify-content so text never escapes */
.hero-v2-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* center vertically */
  align-items: center;
  padding-top: 90px;
  /* navbar clearance */
  padding-bottom: 84px;
  /* space for stats bar */
  overflow: visible;
  /* FIX: allow dropdowns to overflow */
}

.hero-v2-content .container {
  width: 100%;
  flex-shrink: 1;
  min-height: 0;
  overflow: visible;
}

.hero-v2-inner {
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

/* ── Badge ── */
.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(185, 145, 58, 0.12);
  border: 1px solid rgba(154, 117, 40, 0.45);
  border-radius: var(--radius-pill);
  color: #c9a44f;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  backdrop-filter: blur(10px);
  margin-bottom: 14px;
  width: fit-content;
  opacity: 0;
  align-self: center;
}

.hero-v2-badge.anim-in {
  animation: heroFadeUp 0.7s var(--ease) 0.1s both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(185, 145, 58, 0.22);
  animation: badgePulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(185, 145, 58, 0.22);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(185, 145, 58, 0.06);
  }
}

.hero-badge-sep {
  opacity: 0.3;
}

/* ── Main headline ── */
.hero-v2-title {
  font-family: "Cairo", serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 12px;
  letter-spacing: 0px;
  opacity: 0;
}

.hero-v2-title.anim-in {
  animation: heroFadeUp 0.8s var(--ease) 0.25s both;
}

.hero-v2-title-accent {
  background: linear-gradient(100deg, #b8913a 0%, #d4a84b 50%, #c9a44f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ── */
.hero-v2-subtitle {
  font-size: clamp(0.88rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.8;
  opacity: 0;
  text-align: center;
}

.hero-v2-subtitle.anim-in {
  animation: heroFadeUp 0.8s var(--ease) 0.4s both;
}

/* ══════════════════════════════════════════
   HERO SEARCH BOX — Modern pill/card design
   ══════════════════════════════════════════ */
.hero-search-box {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 18px;
  box-shadow:
    0 24px 64px rgba(6, 15, 30, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  opacity: 0;
  max-width: 820px;
}

.hero-search-box.anim-in {
  animation: heroFadeUp 0.9s var(--ease) 0.55s both;
}

/* Tabs row */
.hsb-tabs {
  display: flex;
  padding: 12px 14px 0;
  gap: 4px;
  border-bottom: 1px solid rgba(10, 22, 40, 0.07);
}

.hsb-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  font-family: "Cairo", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #9aa3b5;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all 0.22s ease;
  border-radius: 8px 8px 0 0;
}

.hsb-tab:hover {
  color: var(--navy-700);
  background: rgba(10, 22, 40, 0.03);
}

.hsb-tab.active {
  color: var(--navy-900);
  border-bottom-color: #c9a44f;
  background: transparent;
}

.hsb-tab i {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Fields container */
.hsb-fields-wrap {
  padding: 8px 8px 8px;
}

.hsb-fields {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f4f6fa;
  border-radius: 12px;
  padding: 4px;
}

/* Single field cell */
.hsb-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.18s;
  min-width: 0;
}

.hsb-field:hover {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.06);
}

.hsb-field.open {
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.09);
}

/* Icon */
.hsb-field-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(185, 145, 58, 0.14), rgba(185, 145, 58, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8913a;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.hsb-field-body {
  flex: 1;
  min-width: 0;
}

.hsb-label {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  color: #9aa3b5;
  letter-spacing: 0.2px;
  margin-bottom: 2px;
  cursor: pointer;
  white-space: nowrap;
}

.hsb-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  font-family: "Cairo", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
  width: 100%;
  text-align: right;
}

.hsb-select-val {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hsb-arrow {
  font-size: 0.6rem;
  color: #9aa3b5;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.hsb-field.open .hsb-arrow {
  transform: rotate(180deg);
  color: #b8913a;
}

/* Thin divider between fields */
.hsb-divider {
  width: 1px;
  height: 34px;
  background: rgba(10, 22, 40, 0.08);
  flex-shrink: 0;
  align-self: center;
}

/* Dropdown panel */
.hsb-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 16px 48px rgba(10, 22, 40, 0.16),
    0 0 0 1px rgba(10, 22, 40, 0.05);
  padding: 10px;
  z-index: 9100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hsb-field.open .hsb-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.hsb-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.hsb-opt {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-700);
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 7px;
}

.hsb-opt:hover {
  background: rgba(185, 145, 58, 0.09);
  color: #b8913a;
}

.hsb-opt.active {
  background: rgba(185, 145, 58, 0.12);
  color: #b8913a;
}

.hsb-opt i {
  font-size: 0.72rem;
  opacity: 0.65;
}

.hsb-opt:first-child {
  grid-column: 1 / -1;
  color: #9aa3b5;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  margin-bottom: 2px;
  padding-bottom: 10px;
}

/* Rooms dropdown */
.hsb-dropdown-rooms {
  min-width: 210px;
}

.hsb-rooms-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #9aa3b5;
  letter-spacing: 0.4px;
  margin: 0 4px 8px;
}

.hsb-rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.hsb-room-chip {
  padding: 7px 4px;
  border-radius: 8px;
  border: 1.5px solid #eef0f4;
  background: #fff;
  font-family: "Cairo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-700);
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
}

.hsb-room-chip:hover {
  border-color: #c9a44f;
  color: #b8913a;
}

.hsb-room-chip.active {
  background: linear-gradient(135deg, #9a7528, #b8913a);
  border-color: transparent;
  color: #fff;
}

.hsb-room-chip:first-child {
  grid-column: 1 / -1;
}

/* Search button — pill shape, inside fields row */
.hsb-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 26px;
  height: 48px;
  background: linear-gradient(135deg, #9a7528 0%, #e8c060 50%, #b8913a 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: "Cairo", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 22px rgba(185, 145, 58, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
  margin: 4px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(100, 60, 0, 0.3);
}

/* shimmer sweep */
.hsb-search-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.hsb-search-btn:hover::after {
  left: 130%;
}

.hsb-search-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 42px rgba(154, 117, 40, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.hsb-search-btn:active {
  transform: scale(0.98);
}

.hsb-search-btn i {
  font-size: 0.82rem;
}

/* ══════════════════════════════════════════
   HERO TYPE TOGGLE — Standalone pill tabs
   ══════════════════════════════════════════ */

.hero-type-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgb(86 86 86 / 50%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  padding: 3px;
  margin-bottom: 10px;
}

.hero-type-toggle.anim-in {
  animation: heroFadeUp 0.7s var(--ease) 0.45s both;
}

.htt-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.90);
  font-family: "Cairo", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
  position: relative;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.htt-btn.active {
  background: rgba(255, 255, 255, 0.95);
  color: #0a1628;
  border: none;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.20);
}

.htt-btn:not(.active):hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.htt-icon {
  font-size: 0.75rem;
  flex-shrink: 0;
  opacity: 0.90;
  transition: opacity 0.25s;
}

.htt-btn.active .htt-icon {
  opacity: 1;
  color: #b8913a;
}

.htt-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.13);
  flex-shrink: 0;
  margin: 0 2px;
}

@media (max-width: 480px) {
  .htt-btn {
    padding: 8px 20px;
    font-size: 0.86rem;
  }
}

/* ══════════════════════════════════════════
   CARD FILTER BAR — Rectangular modern cards
   ══════════════════════════════════════════ */

.cf-wrap {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  opacity: 0;
}

.cf-wrap.anim-in {
  animation: heroFadeUp 0.9s var(--ease) 0.55s both;
}

/* Tabs row */
.cf-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
  padding: 4px 4px 0 4px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}

.cf-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-family: "Cairo", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: all 0.22s ease;
  border-radius: 8px 8px 0 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid transparent;
}

.cf-tab:first-child {
  border-radius: 8px 8px 0 0;
}

.cf-tab:last-child {
  border-radius: 8px 8px 0 0;
}

.cf-tab i {
  font-size: 0.75rem;
  opacity: 0.8;
}

.cf-tab.active {
  background: rgba(255, 255, 255, 0.95);
  color: #0a1628;
  border-bottom-color: #c9a44f;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.cf-tab:not(.active):hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Cards row */
.cf-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 10px;
  box-shadow:
    0 24px 64px rgba(6, 15, 30, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.55);
  overflow: visible;
  position: relative;
}

/* Individual card */
.cf-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  position: relative;
  transition: background 0.18s ease;
  border-left: 1px solid rgba(10, 22, 40, 0.07);
  min-width: 0;
}

.cf-card:first-child {
  border-left: none;
  border-radius: 0 10px 0 0;
  /* RTL: top-right=0(under tab), top-left=10px */
}

.cf-card:last-of-type {
  border-radius: 0 0 10px 0;
  /* RTL: bottom-right=10px (right side of row in RTL) */
}

.cf-card:hover {
  background: rgba(185, 145, 58, 0.04);
}

.cf-card.open {
  background: rgba(185, 145, 58, 0.07);
}

/* Icon inside card */
.cf-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(185, 145, 58, 0.15), rgba(185, 145, 58, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8913a;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.cf-card:hover .cf-card-icon,
.cf-card.open .cf-card-icon {
  background: linear-gradient(135deg, rgba(185, 145, 58, 0.25), rgba(185, 145, 58, 0.12));
}

.cf-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cf-card-label {
  font-family: "Cairo", sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  color: #9aa3b5;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.cf-card-val {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Cairo", sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  color: #0d1e38;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Arrow icon inside val */
.pf-arrow {
  font-size: 0.55rem;
  color: #c9a44f;
  margin-right: auto;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.cf-card.open .pf-arrow {
  transform: rotate(180deg);
}

/* Search button — attached end of row */
.cf-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #9a7528 0%, #e8c060 45%, #b8913a 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px 0 0 10px;
  /* FIX RTL: radius on left-bottom (start in RTL = left) */
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(100, 60, 0, 0.3);
}

/* shimmer sweep */
.cf-search-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.cf-search-btn:hover::before {
  left: 130%;
}

.cf-search-btn:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 32px rgba(185, 145, 58, 0.6);
  color: #ffffff;
}

.cf-search-btn:active {
  transform: scale(0.97);
}

/* Dropdown panel — shared with pf- */
.pf-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow:
    0 20px 56px rgba(10, 22, 40, 0.18),
    0 0 0 1px rgba(10, 22, 40, 0.06);
  padding: 12px;
  z-index: 9000;
  /* FIX: above hero content and page sections */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.cf-card.open .pf-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.pf-dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.pf-dd-single {
  grid-template-columns: 1fr;
}

.pf-opt {
  padding: 9px 14px;
  border-radius: 8px;
  font-family: "Cairo", sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  color: #2a3a5a;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pf-opt:hover {
  background: rgba(185, 145, 58, 0.09);
  color: #b8913a;
}

.pf-opt.active {
  background: rgba(185, 145, 58, 0.13);
  color: #a07828;
  font-weight: 700;
}

.pf-opt i {
  font-size: 0.72rem;
  opacity: 0.6;
}

.pf-opt:first-child {
  grid-column: 1 / -1;
  color: #9aa3b5;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  margin-bottom: 3px;
  padding-bottom: 10px;
}

/* Rooms dropdown */
.pf-dropdown-rooms {
  min-width: 220px;
}

.pf-rooms-title {
  font-family: "Cairo", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  color: #9aa3b5;
  letter-spacing: 0.4px;
  margin: 0 4px 10px;
  text-transform: uppercase;
}

.pf-rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.pf-room-chip {
  padding: 8px 4px;
  border-radius: 8px;
  border: 1.5px solid #eef0f4;
  background: #fff;
  font-family: "Cairo", sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  color: #2a3a5a;
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
}

.pf-room-chip:hover {
  border-color: #c9a44f;
  color: #b8913a;
  background: rgba(185, 145, 58, 0.05);
}

.pf-room-chip.active {
  background: linear-gradient(135deg, #9a7528, #b8913a);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 10px rgba(185, 145, 58, 0.35);
}

.pf-room-chip:first-child {
  grid-column: 1 / -1;
}

/* ── Responsive card filter ── */
@media (max-width: 768px) {
  .cf-wrap {
    align-items: center;
  }

  .cf-tabs {
    width: 100%;
  }

  .cf-tab {
    flex: 1;
    justify-content: center;
  }

  .cf-tab:first-child {
    border-radius: 8px 8px 0 0;
  }

  .cf-tab:last-child {
    border-radius: 8px 8px 0 0;
  }

  .cf-row {
    flex-direction: column;
    border-radius: 0 0 10px 10px;
  }

  .cf-card {
    border-left: none;
    border-top: 1px solid rgba(10, 22, 40, 0.07);
    border-radius: 0 !important;
    padding: 14px 18px;
  }

  .cf-card:first-child {
    border-top: none;
  }

  .cf-search-btn {
    width: 100%;
    height: 52px;
    border-radius: 0 0 10px 10px !important;
  }

  .pf-dropdown {
    right: auto;
    left: 0;
    min-width: 100%;
    transform-origin: top left;
  }
}

@media (max-width: 480px) {
  .cf-tab {
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .cf-card {
    padding: 12px 16px;
  }
}

/* ── Quick browse tags ── */
.hero-v2-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-v2-tags.anim-in {
  animation: heroFadeUp 0.7s var(--ease) 0.75s both;
}

.hero-tag-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
  white-space: nowrap;
}

.hero-quick-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  transition: all 0.22s;
}

.hero-quick-tag:hover {
  border-color: rgba(154, 117, 40, 0.6);
  color: #c9a44f;
  background: rgba(185, 145, 58, 0.1);
}

/* ── Bullet pagination (bottom-right) ── */
.hero-v2-pagination {
  position: absolute;
  bottom: 90px;
  left: 24px;
  right: auto;
  z-index: 11;
  pointer-events: none;
}

.hero-v2-bullets.swiper-pagination {
  position: static !important;
  width: auto !important;
  pointer-events: all;
  display: flex;
  gap: 5px;
  align-items: center;
}

.hero-v2-bullets .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35) !important;
  opacity: 1 !important;
  width: 7px !important;
  height: 7px !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  border: none !important;
  margin: 0 !important;
}

.hero-v2-bullets .swiper-pagination-bullet-active {
  background: #c9a44f !important;
  width: 26px !important;
  border-radius: 4px !important;
  box-shadow: 0 0 10px rgba(185, 145, 58, 0.6) !important;
}

/* ── Stats bar (pinned bottom) ── */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 7;
  height: 72px;
  background: rgba(6, 14, 28, 0.72);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(185, 145, 58, 0.18);
  display: flex;
  align-items: center;
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}

.hero-stat-item strong {
  font-family: "Tajawal", "Cairo", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #9a7528, #c9a44f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-stat-item span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
  margin-top: 2px;
}

.hero-stat-sep {
  width: 1px;
  height: 28px;
  background: rgba(185, 145, 58, 0.2);
  flex-shrink: 0;
}

/* ── Animation ── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Hero V2
   ══════════════════════════════════════════ */

@media (max-width: 1200px) {
  .hero-v2-pagination {
    left: 20px;
  }

  .hero-stat-item {
    padding: 0 24px;
  }
}

@media (max-width: 992px) {
  .hero-v2-content {
    padding-bottom: 80px;
  }

  .hero-v2-title {
    font-size: clamp(2rem, 6.5vw, 3.2rem);
  }

  /* 2-column grid on tablet */
  .hsb-fields {
    flex-wrap: wrap;
    padding: 6px;
    gap: 0;
  }

  .hsb-field {
    flex: 1 1 calc(50% - 2px);
  }

  .hsb-divider {
    display: none;
  }

  .hsb-search-btn {
    flex: 1 1 100%;
    justify-content: center;
    margin: 4px 4px;
    height: 46px;
  }

  .hero-stat-item {
    padding: 0 18px;
  }
}

@media (max-width: 768px) {
  .hero-v2 {
    min-height: 600px;
    max-height: none;
    height: 100svh;
  }

  .hero-v2-content {
    padding-top: 80px;
    padding-bottom: 80px;
    justify-content: center;
    /* vertically center on mobile */
  }

  .hero-v2-inner {
    text-align: center;
    align-items: center;
  }

  .hero-v2-subtitle {
    max-width: 100%;
  }

  .hero-v2-tags {
    justify-content: center;
  }

  .hero-v2-badge {
    align-self: center;
  }

  .hsb-field {
    flex: 1 1 100%;
  }

  .hero-stat-item span {
    display: none;
  }

  .hero-stats-bar {
    height: 56px;
  }

  .hero-stat-item strong {
    font-size: 1.1rem;
  }

  .hero-v2-pagination {
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-v2-bullets.swiper-pagination {
    justify-content: center;
  }

  .hero-v2-subtitle {
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .hsb-tabs {
    padding: 10px 10px 0;
    gap: 2px;
  }

  .hsb-tab {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .hero-v2-title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .hero-stat-item {
    padding: 0 12px;
  }
}


/* ==========================================
   SEARCH / FILTER PANEL
   ========================================== */

/* ── Outer wrapper ── */
.search-panel-wrap {
  position: relative;
  z-index: 50;
  background: #ffffff;
  padding: 50px 0 56px;
  border-top: 1px solid #eaedf2;
  border-bottom: 1px solid #eaedf2;
}

/* thin gold top line */
.search-panel-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}

/* ── Heading ── */
.search-panel-label {
  text-align: right;
  margin-bottom: 26px;
}

.search-panel-label h3 {
  font-family: "Cairo", "Cairo", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.search-panel-label p {
  font-family: "Cairo", sans-serif;
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* ── Card ── */
.search-panel {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e6ef;
  border-radius: 18px;
  box-shadow:
    0 2px 8px rgba(10, 22, 40, 0.05),
    0 12px 40px rgba(10, 22, 40, 0.08);
  overflow: visible;
}

/* ── Tabs ── */
.search-tabs-row {
  display: flex;
  padding: 0 24px;
  border-bottom: 1px solid #eaedf2;
  background: #f9fafb;
  border-radius: 18px 18px 0 0;
  gap: 0;
}

.stab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 22px 15px;
  font-family: "Cairo", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #9aa3b5;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition:
    color 0.18s,
    border-color 0.18s;
}

.stab i {
  font-size: 0.78rem;
}

.stab:hover {
  color: var(--navy-900);
}

.stab:hover i {
  color: var(--gold-500);
}

.stab.active {
  color: var(--navy-900);
  border-bottom-color: var(--gold-500);
}

.stab.active i {
  color: var(--gold-500);
}

/* ── Fields row ── */
.search-fields {
  display: flex;
  align-items: center;
  padding: 6px 10px 10px;
  gap: 0;
  position: relative;
}

/* ── Each field ── */
.sfield {
  flex: 1;
  min-width: 130px;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
}

.sfield:hover {
  background: #f5f6f9;
}

.sfield.is-open {
  background: var(--gold-100);
}

.sfield label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Cairo", sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
  color: #9aa3b5;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  pointer-events: none;
}

.sfield label i {
  color: var(--gold-500);
  font-size: 0.63rem;
}

/* ── Dropdown button ── */
.sdrop-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  font-family: "Cairo", sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
  outline: none;
  gap: 8px;
  text-align: right;
}

.sdrop-val {
  flex: 1;
}

.sdrop-arrow {
  font-size: 0.6rem;
  color: var(--gold-500);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.sfield.is-open .sdrop-arrow {
  transform: rotate(180deg);
}

/* ── Dropdown menu ── */
.sdrop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e2e6ef;
  border-radius: 14px;
  box-shadow:
    0 8px 24px rgba(10, 22, 40, 0.1),
    0 2px 8px rgba(10, 22, 40, 0.06);
  z-index: 9100;
  overflow: hidden;
  animation: dropIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.sfield.is-open .sdrop-menu {
  display: block;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sdrop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-family: "Cairo", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  transition:
    background 0.13s,
    color 0.13s;
  border-bottom: 1px solid #f0f2f5;
  position: relative;
}

.sdrop-item:last-child {
  border-bottom: none;
}

.sdrop-item i {
  width: 18px;
  text-align: center;
  color: var(--gold-500);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.sdrop-item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--gold-500);
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.13s;
}

.sdrop-item:hover {
  background: var(--gold-100);
  color: var(--navy-900);
}

.sdrop-item:hover i {
  color: var(--gold-600);
}

.sdrop-item:hover::before {
  opacity: 1;
}

.sdrop-item.active {
  background: var(--gold-100);
  color: var(--navy-900);
  font-weight: 700;
}

.sdrop-item.active i {
  color: var(--gold-600);
}

.sdrop-item.active::before {
  opacity: 1;
}

/* grid layout */
.sdrop-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.sdrop-items-grid .sdrop-item {
  border-bottom: 1px solid #f0f2f5;
  border-left: 1px solid #f0f2f5;
}

.sdrop-items-grid .sdrop-item:last-child {
  border-bottom: 1px solid #f0f2f5;
}

/* rooms dropdown — identical to sdrop-items-grid system */
.sdrop-menu-rooms {
  padding: 0;
}

.sdrop-rooms-label {
  display: none;
}

.sdrop-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.sdrop-room-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-family: "Cairo", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
  background: transparent;
  border: none;
  border-bottom: 1px solid #f0f2f5;
  border-left: 1px solid #f0f2f5;
  cursor: pointer;
  transition:
    background 0.13s,
    color 0.13s;
  text-align: right;
  position: relative;
  border-radius: 0;
  width: 100%;
}

.sdrop-room-chip:last-child {
  border-bottom: 1px solid #f0f2f5;
}

.sdrop-rooms-grid .sdrop-room-chip:first-child {
  border-left: none;
}

.sdrop-room-chip::before {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--gold-500);
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.13s;
}

.sdrop-room-chip:hover {
  background: var(--gold-100);
  color: var(--navy-900);
}

.sdrop-room-chip:hover::before {
  opacity: 1;
}

.sdrop-room-chip.active {
  background: var(--gold-100);
  color: var(--navy-900);
  font-weight: 700;
}

.sdrop-room-chip.active::before {
  opacity: 1;
}

/* ── Divider ── */
.sfield-divider {
  width: 1px;
  height: 36px;
  background: #dde1ea;
  flex-shrink: 0;
  align-self: center;
  margin: 0 2px;
}

/* ── Search button ── */
.search-btn-wrap {
  display: flex;
  align-items: center;
  padding: 4px 6px 4px 10px;
  flex-shrink: 0;
}

.search-go-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--navy-900);
  color: var(--gold-400);
  border: none;
  border-radius: 50px;
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(10, 22, 40, 0.22);
}

.search-go-btn i {
  font-size: 0.85rem;
}

.search-go-btn:hover {
  background: var(--grad-gold);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(185, 145, 58, 0.35);
}

/* ==========================================
   NUMBERS & TRUST — Unified Section
   ========================================== */
.numbers-unified-section {
  background: linear-gradient(135deg,
      var(--navy-900) 0%,
      #0d1f3c 50%,
      var(--navy-800) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.numbers-unified-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(185, 145, 58, 0.7),
      rgba(185, 145, 58, 1),
      rgba(185, 145, 58, 0.7),
      transparent);
}

.numbers-bg-art {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%,
      rgba(185, 145, 58, 0.07) 0%,
      transparent 65%);
  pointer-events: none;
}

.numbers-head {
  text-align: center;
  margin-bottom: 56px;
}

.numbers-title {
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--white);
  line-height: 1.3;
  margin: 10px 0 12px;
}

.numbers-sub {
  font-family: "Cairo", sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 460px;
  margin: 0 auto;
}

/* Stats Grid — 6 cards */
.numbers-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 52px;
}

@media (max-width: 1100px) {
  .numbers-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .numbers-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nstat-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(185, 145, 58, 0.14);
  border-radius: var(--radius-md);
  padding: 28px 16px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: var(--t-base);
}

.nstat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.nstat-item:hover {
  background: rgba(185, 145, 58, 0.07);
  border-color: rgba(185, 145, 58, 0.3);
  transform: translateY(-4px);
}

.nstat-item:hover::before {
  transform: scaleX(1);
}

.nstat-icon {
  width: 46px;
  height: 46px;
  background: rgba(185, 145, 58, 0.12);
  border: 1px solid rgba(185, 145, 58, 0.22);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.05rem;
  margin-bottom: 14px;
  transition: var(--t-base);
}

.nstat-item:hover .nstat-icon {
  background: var(--grad-gold);
  color: #fff;
  border-color: transparent;
}

.nstat-num {
  font-family: "Cairo", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.nstat-lbl {
  font-family: "Cairo", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* Trust features row */
.numbers-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(185, 145, 58, 0.1);
  padding-top: 44px;
}

.ntrust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 32px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  transition: var(--t-base);
}

@media (max-width: 767px) {
  .ntrust-item {
    padding: 16px 0;
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }

  .ntrust-sep {
    width: 80% !important;
    height: 1px !important;
    background: rgba(185, 145, 58, 0.12) !important;
    align-self: unset !important;
    margin: 0 auto !important;
  }

  .numbers-trust-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ntrust-icon {
  width: 40px;
  height: 40px;
  background: rgba(185, 145, 58, 0.1);
  border: 1px solid rgba(185, 145, 58, 0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: var(--t-base);
}

.ntrust-item:hover .ntrust-icon {
  background: var(--grad-gold);
  color: #fff;
  border-color: transparent;
}

.ntrust-text {
  display: flex;
  flex-direction: column;
}

.ntrust-title {
  font-family: "Cairo", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}

.ntrust-desc {
  font-family: "Cairo", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
}

.ntrust-sep {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg,
      transparent,
      rgba(185, 145, 58, 0.22),
      transparent);
  flex-shrink: 0;
  align-self: center;
}

/* ==========================================
   PROPERTY CARDS — Modern Editorial Design
   ========================================== */
/* ==========================================
   PROP CARD — REDESIGNED ELEGANT & LIGHT
   ========================================== */
.prop-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0f2f7;
  transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
  will-change: transform;
  isolation: isolate;
  box-shadow:
    0 1px 3px rgba(10, 22, 40, 0.04),
    0 4px 16px rgba(10, 22, 40, 0.05);
}

.prop-card:hover {
  transform: translateY(-8px) scale(1.005);
  border-color: rgba(185, 145, 58, 0.25);
  box-shadow:
    0 6px 18px rgba(10, 22, 40, 0.1),
    0 12px 28px rgba(10, 22, 40, 0.07),
    0 0 0 1px rgba(185, 145, 58, 0.1);
}

.prop-img-wrap {
  position: relative;
  height: 228px;
  overflow: hidden;
  flex-shrink: 0;
}

.prop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prop-card:hover .prop-img-wrap img {
  transform: scale(1.08);
}

.prop-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 22, 40, 0.02) 0%,
      rgba(10, 22, 40, 0.08) 40%,
      rgba(10, 22, 40, 0.38) 100%);
  pointer-events: none;
  transition: background 0.4s ease;
}

.prop-card:hover .prop-img-overlay {
  background: linear-gradient(180deg,
      rgba(10, 22, 40, 0.05) 0%,
      rgba(10, 22, 40, 0.12) 40%,
      rgba(10, 22, 40, 0.52) 100%);
}

/* Subtle top shine line on image */
.prop-img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(185, 145, 58, 0.6),
      transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.prop-card:hover .prop-img-wrap::after {
  opacity: 1;
}

.prop-badges {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 2;
}

.badge-vip {
  background: linear-gradient(135deg, #9e7a2a 0%, #bf8e17 35%, #bf9a3e 65%, #9e7a2a 100%);
  color: #fff;
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 800;
  font-size: 0.67rem;
  padding: 4px 11px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.6px;
  box-shadow:
    0 3px 10px rgba(185, 145, 58, 0.4),
    0 1px 3px rgba(185, 145, 58, 0.3);
  text-transform: uppercase;
}

.badge-premium {
  background: rgba(10, 22, 40, 0.82);
  color: #c9a44f;
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.67rem;
  padding: 4px 11px;
  border-radius: 100px;
  border: 1px solid rgba(154, 117, 40, 0.5);
  backdrop-filter: blur(10px);
  letter-spacing: 0.4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge-type {
  background: rgba(255, 255, 255, 0.93);
  color: #0f2040;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.67rem;
  padding: 4px 11px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.badge-new {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.67rem;
  padding: 4px 11px;
  border-radius: 100px;
  box-shadow: 0 3px 10px rgba(34, 197, 94, 0.38);
}

.badge-basic {
  background: rgba(255, 255, 255, 0.9);
  color: #5c6782;
  font-family: "Cairo", sans-serif;
  font-weight: 600;
  font-size: 0.67rem;
  padding: 4px 11px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.badge-featured {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 22, 40, 0.85);
  color: #c9a44f;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.67rem;
  padding: 4px 11px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(185, 145, 58, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.btn-fav {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.93);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa3b5;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.22s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.btn-fav:hover,
.btn-fav.active {
  background: #ef4444;
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

/* ---- CARD BODY ---- */
.prop-body {
  padding: 20px 22px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

/* Price row with a pill accent */
.prop-price {
  font-family: "Cairo", sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #c09b48;
  margin-bottom: 6px;
  line-height: 1.15;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

/* .prop-price::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, #b8913a, #c9a44f);
  border-radius: 4px;
  flex-shrink: 0;
  align-self: center;
} */
.prop-price span {
  font-family: "Cairo", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #9aa3b5;
}

.prop-title {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: #0f2040;
  margin-bottom: 7px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prop-loc {
  font-family: "Cairo", sans-serif;
  font-size: 0.77rem;
  color: #9aa3b5;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
}

.prop-loc i {
  color: #c9a44f;
  font-size: 0.72rem;
}

/* Feats — pill style chips */
.prop-feats {
  display: flex;
  gap: 8px;
  padding: 14px 0 0;
  border-top: 1px solid #f0f2f7;
  flex-wrap: nowrap;
  margin-top: auto;
  justify-content: space-between;
}

.pfeat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Cairo", sans-serif;
  font-size: 0.75rem;
  color: #5c6782;
  padding: 6px 10px;
  flex: 1;
  justify-content: center;
  background: #f6f7f9;
  border-radius: 10px;
  border: 1px solid #eef0f4;
  transition: all 0.22s ease;
}

.pfeat:last-child {
  flex-grow: 2;
}

.prop-card:hover .pfeat {
  background: #fdf4e3;
  border-color: rgba(185, 145, 58, 0.18);
  color: #0f2040;
}

.pfeat i {
  color: #c9a44f;
  font-size: 0.7rem;
}

/* CTA row */
.prop-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Cairo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #152a55;
  margin-top: 14px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #f6f7f9;
  border: 1px solid #eef0f4;
  transition: all 0.25s ease;
  width: 100%;
  justify-content: center;
}

.prop-cta::after {
  display: none;
}

.prop-cta:hover,
.prop-card:hover .prop-cta {
  background: linear-gradient(135deg, #9a7528 0%, #c9a44f 100%);
  color: #fff;
  border-color: transparent;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(185, 145, 58, 0.32);
}

/* ==========================================
   FEATURED PROPERTIES SWIPER
   ========================================== */
#featuredProperties {
  background: var(--cream);
}

.properties-swiper {
  overflow: hidden !important;
  padding: 8px 2px 32px !important;
  margin: 0 -2px;
  width: calc(100% + 4px);
}

/* ==========================================
   AD STRIP — Banner 1
   ========================================== */
.ad-strip {
  background: var(--grad-navy);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.ad-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
}

.ad-strip::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
}

.ad-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.ad-strip-icon {
  width: 48px;
  height: 48px;
  background: rgba(185, 145, 58, 0.15);
  border: 1px solid rgba(185, 145, 58, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ad-strip-text {
  flex: 1;
  min-width: 200px;
}

.ad-strip-text strong {
  display: block;
  font-family: "Cairo", "Cairo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.ad-strip-text span {
  font-family: "Cairo", sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.ad-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--grad-gold);
  color: var(--navy-900);
  border-radius: var(--radius-pill);
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--t-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.ad-strip-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--navy-900);
}

/* ==========================================
   CATEGORIES SECTION
   ========================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--t-base);
}

/* FIX: clip overflow strictly so card doesn't go outside on hover */
.cat-card {
  transform: translateZ(0);
}

.cat-card.cat-large {
  grid-column: span 5;
  grid-row: span 2;
}

.cat-card:not(.cat-large) {
  grid-column: span 7;
}

.cat-card:nth-child(2) {
  grid-column: 6 / span 4;
}

.cat-card:nth-child(3) {
  grid-column: 10 / span 3;
}

.cat-card:nth-child(4) {
  grid-column: 6 / span 3;
}

.cat-card:nth-child(5) {
  grid-column: 9 / span 4;
}

.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

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

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 20%,
      rgba(10, 22, 40, 0.82) 100%);
  transition: var(--t-base);
}

.cat-card:hover .cat-overlay {
  background: linear-gradient(180deg,
      rgba(10, 22, 40, 0.1) 0%,
      rgba(10, 22, 40, 0.9) 100%);
}

.cat-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
}

.cat-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
  transition: var(--t-base);
}

.cat-card:hover .cat-icon {
  transform: scale(1.1) rotate(-5deg);
}

.cat-name {
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 3px;
}

.cat-count {
  font-family: "Cairo", sans-serif;
  font-size: 0.75rem;
  color: var(--gold-300);
}

.cat-arrow {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--t-base);
}

.cat-card:hover .cat-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================
   STATS — REDESIGNED PREMIUM
   ========================================== */
.stats-section-new {
  background: var(--navy-900);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.stats-new-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%,
      rgba(185, 145, 58, 0.1) 0%,
      transparent 60%),
    radial-gradient(ellipse at 80% 50%,
      rgba(185, 145, 58, 0.08) 0%,
      transparent 60%);
  pointer-events: none;
}

.stats-section-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.stats-section-new::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.stats-new-header {
  text-align: center;
  margin-bottom: 60px;
}

.stats-new-title {
  font-family: "Cairo", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin: 8px 0 0;
}

.stats-new-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(185, 145, 58, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .stats-new-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-new-grid {
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
  }
}

.stat-new-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 24px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.32s ease;
  border-left: 1px solid rgba(185, 145, 58, 0.1);
}

.stat-new-card:first-child {
  border-left: none;
}

@media (max-width: 992px) {
  .stat-new-card:nth-child(2n + 1) {
    border-left: none;
  }

  .stat-new-card:nth-child(n + 3) {
    border-top: 1px solid rgba(185, 145, 58, 0.12);
  }
}

@media (max-width: 576px) {
  .stat-new-card:nth-child(2n + 1) {
    border-left: none;
  }

  .stat-new-card:nth-child(n + 3) {
    border-top: 1px solid rgba(185, 145, 58, 0.12);
  }
}

.stat-new-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 0 0 4px 4px;
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.stat-new-card:hover::before {
  transform: scaleX(1);
}

.stat-new-card:hover {
  background: rgba(185, 145, 58, 0.07);
}

.stat-new-glow {
  display: none;
}

.stat-new-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-new-icon {
  width: 60px;
  height: 60px;
  background: rgba(185, 145, 58, 0.12);
  border: 1.5px solid rgba(185, 145, 58, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-400);
  transition: var(--t-base);
}

.stat-new-card:hover .stat-new-icon {
  background: var(--grad-gold);
  color: var(--navy-900);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(185, 145, 58, 0.4);
}

.stat-new-num {
  font-family: "Cairo", sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.stat-new-label {
  font-family: "Cairo", sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.stat-new-bar {
  display: none;
}

.stat-new-bar-fill {
  display: none;
}

.stat-new-card.visible .stat-new-bar-fill {
  display: none;
}

/* ==========================================
   AD SPACES — PREMIUM REDESIGN
   ========================================== */
.ad-space {
  padding: 40px 0;
  position: relative;
}

.ad-space-inner {
  position: relative;
}

.ad-space-label {
  font-family: "Cairo", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(185, 145, 58, 0.6);
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ad-space-placeholder {
  background: linear-gradient(135deg, #fffdf7 0%, #fff9ed 50%, #fffdf7 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 28px 40px;
  min-height: 100px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow:
    0 4px 24px rgba(185, 145, 58, 0.1),
    inset 0 0 0 2px rgba(185, 145, 58, 0.25);
}

.ad-space-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 8px,
      rgba(185, 145, 58, 0.03) 8px,
      rgba(185, 145, 58, 0.03) 16px);
  pointer-events: none;
}

.ad-space-placeholder:hover {
  box-shadow:
    0 8px 40px rgba(185, 145, 58, 0.22),
    inset 0 0 0 2px rgba(185, 145, 58, 0.5);
  transform: translateY(-2px);
}

.ad-space-ph-icon {
  font-size: 2rem;
  color: rgba(185, 145, 58, 0.5);
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(185, 145, 58, 0.08);
  border: 1px solid rgba(185, 145, 58, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-space-ph-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ad-space-ph-text strong {
  font-family: "Cairo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-700);
}

.ad-space-ph-text span {
  font-family: "Cairo", sans-serif;
  font-size: 0.82rem;
  color: var(--gray-600);
}

.ad-space-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-gold);
  color: var(--navy-900);
  font-family: "Cairo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(185, 145, 58, 0.3);
  transition: all 0.2s;
}

.ad-space-cta:hover {
  box-shadow: 0 8px 24px rgba(154, 117, 40, 0.5);
  color: var(--navy-900);
}

/* Leaderboard — full width top banner */
.ad-space-leaderboard {
  padding: 32px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.ad-space-leaderboard .ad-space-placeholder {
  max-width: 960px;
  margin: 0 auto;
  min-height: 110px;
}

/* Two column rectangles */
.ad-space-rectangle {
  padding: 48px 0;
}

.ad-space-two-wrap {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.ad-rect {
  flex: 0 0 300px;
  max-width: 320px;
  min-height: 260px;
  flex-direction: column;
  text-align: center;
  gap: 14px;
  padding: 36px 24px;
  border-radius: 20px;
}

.ad-rect .ad-space-ph-icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  font-size: 2.2rem;
}

.ad-rect .ad-space-ph-text {
  align-items: center;
}

.ad-space-two-col .ad-space-label {
  margin-bottom: 20px;
}

/* Billboard */
.ad-space-billboard {
  padding: 48px 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.ad-space-billboard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.ad-space-billboard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.ad-space-billboard .ad-space-label {
  color: rgba(185, 145, 58, 0.7);
}

.ad-billboard {
  background: linear-gradient(135deg,
      rgba(185, 145, 58, 0.08) 0%,
      rgba(185, 145, 58, 0.03) 100%);
  border: 2px solid rgba(185, 145, 58, 0.3);
  border-radius: 20px;
  min-height: 200px;
  padding: 48px;
  box-shadow: none;
}

.ad-billboard::before {
  display: none;
}

.ad-billboard:hover {
  border-color: rgba(185, 145, 58, 0.6);
  background: linear-gradient(135deg,
      rgba(185, 145, 58, 0.12) 0%,
      rgba(185, 145, 58, 0.06) 100%);
  transform: none;
  box-shadow: 0 0 60px rgba(185, 145, 58, 0.12);
}

.ad-billboard-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ad-icon-lg {
  font-size: 2.8rem;
  color: rgba(154, 117, 40, 0.6);
  width: 72px;
  height: 72px;
  background: rgba(185, 145, 58, 0.08);
  border: 1px solid rgba(185, 145, 58, 0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-billboard .ad-space-ph-text strong {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
}

.ad-billboard .ad-space-ph-text span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.ad-cta-lg {
  padding: 14px 32px;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
}

/* Real ad image styles */
.ad-with-image {
  padding: 0;
  overflow: hidden;
  flex-direction: column;
  gap: 0;
  background: #f8f8f8;
  border: 2px solid rgba(185, 145, 58, 0.20);
  position: relative;
}

.ad-real-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.ad-image-cta {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  white-space: nowrap;
  z-index: 2;
}

.ad-with-image:hover .ad-image-cta {
  opacity: 1;
}

.ad-with-image:hover {
  transform: none;
}

.ad-with-image::before {
  display: none;
}

@media (max-width: 768px) {
  .ad-space-placeholder {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .ad-billboard-content {
    flex-direction: column;
    text-align: center;
  }

  .ad-rect {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 160px;
  }
}

/* ==========================================
   LATEST LISTINGS SWIPER
   ========================================== */
#latestListings {
  background: var(--white);
}

.latest-swiper {
  overflow: hidden !important;
  padding: 8px 2px 32px !important;
  margin: 0 -2px;
  width: calc(100% + 4px);
}

/* ==========================================
   AD BLOCK — Full Width
   ========================================== */
.ad-block-full {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.ad-block-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ad-block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 22, 40, 0.93) 0%,
      rgba(21, 42, 85, 0.8) 100%);
}

.ad-block-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.ad-block-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(185, 145, 58, 0.15);
  border: 1px solid rgba(185, 145, 58, 0.35);
  color: var(--gold-300);
  font-family: "Cairo", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.ad-block-title {
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.ad-block-sub {
  font-family: "Cairo", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
#whyChooseUs {
  background: var(--gray-50);
}

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

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #f0f2f7;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.04);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #9a7528, #c9a44f, #9a7528);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg,
      rgba(201, 164, 79, 0.04) 0%,
      transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-card:hover {
  transform: translateY(-7px);
  border-color: rgba(185, 145, 58, 0.22);
  box-shadow:
    0 8px 28px rgba(10, 22, 40, 0.09),
    0 20px 48px rgba(10, 22, 40, 0.06);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover::after {
  opacity: 1;
}

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

.why-ico {
  width: 62px;
  height: 62px;
  background: #fdf4e3;
  border: 1.5px solid rgba(185, 145, 58, 0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a44f;
  font-size: 1.35rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.why-card:hover .why-ico {
  background: linear-gradient(135deg, #9a7528, #c9a44f);
  color: #fff;
  border-color: transparent;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(185, 145, 58, 0.35);
}

.why-title {
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0f2040;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.why-card:hover .why-title {
  color: #b8913a;
}

.why-desc {
  font-family: "Cairo", sans-serif;
  font-size: 0.84rem;
  color: #9aa3b5;
  line-height: 1.75;
  transition: color 0.3s ease;
}

.why-card:hover .why-desc {
  color: #5c6782;
}

/* ==========================================
   VIP SPOTLIGHT
   ========================================== */
.vip-section {
  background: var(--grad-navy);
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}

.vip-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
}

.vip-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%,
      rgba(185, 145, 58, 0.08) 0%,
      transparent 50%),
    radial-gradient(ellipse at 90% 20%,
      rgba(185, 145, 58, 0.05) 0%,
      transparent 50%);
  pointer-events: none;
}

.vip-content {
  padding: 0 20px 0 0;
}

.vip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-400);
  border: 1.5px solid var(--gold-400);
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2px;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.vip-title {
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.vip-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-desc {
  font-family: "Cairo", sans-serif;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 440px;
  line-height: 1.75;
}

.vip-list {
  margin-bottom: 36px;
}

.vip-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cairo", sans-serif;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vip-list li i {
  color: var(--gold-500);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Merged advertise stats row inside VIP */
.vip-adv-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(185, 145, 58, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 8px;
  backdrop-filter: blur(10px);
}

.vip-adv-stat {
  flex: 1;
  text-align: center;
}

.vip-adv-num {
  display: block;
  font-family: "Cairo", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.vip-adv-lbl {
  display: block;
  font-family: "Cairo", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.vip-adv-sep {
  width: 1px;
  height: 40px;
  background: rgba(185, 145, 58, 0.2);
  flex-shrink: 0;
}

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

.vip-img-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--grad-gold);
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: -1;
}

.vip-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.vip-float-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(10, 22, 40, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(185, 145, 58, 0.35);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.vfb-crown {
  width: 40px;
  height: 40px;
  background: var(--grad-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-size: 1rem;
}

.vfb-num {
  display: block;
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.vfb-lbl {
  display: block;
  font-family: "Cairo", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}

.vip-float-views {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--navy-900);
  color: var(--gold-400);
  border: 1.5px solid var(--gold-500);
  font-family: "Cairo", "Cairo", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: vipGlow 2.5s ease-in-out infinite;
}

@keyframes vipGlow {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(185, 145, 58, 0);
  }

  50% {
    box-shadow: 0 0 22px rgba(185, 145, 58, 0.6);
  }
}

/* ==========================================
   PACKAGES SECTION — Premium Redesign
   ========================================== */
#packagesSection {
  background: linear-gradient(180deg, var(--navy-900) 0%, #0d1f3c 100%);
  position: relative;
  overflow: hidden;
}

#packagesSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(185, 145, 58, 0.6),
      rgba(185, 145, 58, 1),
      rgba(185, 145, 58, 0.6),
      transparent);
}

#packagesSection .section-eyebrow {
  color: var(--gold-400);
}

#packagesSection .section-eyebrow::before {
  background: var(--grad-gold);
}

#packagesSection .section-title {
  color: var(--white);
}

#packagesSection .divider-gold {
  margin: 16px auto 0;
}



.pkg-bg-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%,
      rgba(185, 145, 58, 0.07) 0%,
      transparent 50%),
    radial-gradient(ellipse at 85% 60%,
      rgba(185, 145, 58, 0.05) 0%,
      transparent 50%);
  pointer-events: none;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  align-items: stretch;
}

.pkg-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 34px 26px;
  position: relative;
  transition: all 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
}

.pkg-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(185, 145, 58, 0.38);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.pkg-vip-card {
  background: linear-gradient(145deg,
      rgba(185, 145, 58, 0.15) 0%,
      rgba(185, 145, 58, 0.05) 100%);
  border-color: rgba(154, 117, 40, 0.5);
  box-shadow: 0 0 40px rgba(185, 145, 58, 0.12);
}

.pkg-vip-card:hover {
  border-color: var(--gold-400);
  box-shadow: 0 20px 60px rgba(185, 145, 58, 0.2);
  transform: translateY(-10px);
}

.pkg-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: var(--navy-900);
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 5px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.pkg-tier {
  font-family: "Cairo", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-free {
  color: rgba(255, 255, 255, 0.35);
}

.pkg-premium {
  color: var(--gold-400);
}

.pkg-vip-tier {
  color: var(--gold-300);
}

.pkg-name {
  font-family: "Cairo", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 20px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pkg-currency {
  font-family: "Cairo", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.pkg-amount {
  font-family: "Cairo", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pkg-period {
  font-family: "Cairo", sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.pkg-feats {
  flex: 1;
  margin-bottom: 28px;
}

.pkg-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cairo", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pkg-feats li i.fa-check {
  color: var(--gold-500);
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.pkg-feat-off {
  opacity: 0.3;
}

.pkg-feat-off i.fa-times {
  color: rgba(255, 255, 255, 0.4);
}

.pkg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--t-base);
  border: none;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.pkg-btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pkg-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.pkg-btn-gold {
  background: rgba(185, 145, 58, 0.15);
  color: var(--gold-300);
  border: 1px solid rgba(185, 145, 58, 0.4);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.pkg-btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
  z-index: -1;
}

.pkg-btn-gold>* {
  position: relative;
  z-index: 1;
}

.pkg-btn-gold:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.pkg-btn-gold:hover::after {
  opacity: 1;
}

.pkg-btn-vip {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: 0 8px 30px rgba(185, 145, 58, 0.35);
  will-change: transform, box-shadow;
}

.pkg-btn-vip:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(154, 117, 40, 0.6);
  color: var(--navy-900);
  background: var(--grad-gold);
}

/* Ad inline banner inside packages */
.ad-inline-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  gap: 24px;
  border: 1px solid rgba(185, 145, 58, 0.2);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.ad-inline-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
}

.aib-left {
  flex: 1;
  min-width: 200px;
}

.aib-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(185, 145, 58, 0.15);
  color: var(--gold-300);
  font-family: "Cairo", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.aib-left h4 {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.aib-left p {
  font-family: "Cairo", sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.aib-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--grad-gold);
  color: var(--navy-900);
  border-radius: var(--radius-pill);
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  transition: var(--t-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.aib-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--navy-900);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
#testimonialsSection {
  background: var(--cream);
  overflow: hidden;
}

.testimonials-swiper {
  overflow: hidden !important;
  padding: 10px 4px 40px !important;
  margin: 0 -4px;
  width: calc(100% + 8px);
}

/* Equal height slides */
.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testi-pagination {
  bottom: 0 !important;
}

.testi-pagination .swiper-pagination-bullet {
  background: var(--gray-200) !important;
}

.testi-pagination .swiper-pagination-bullet-active {
  background: var(--gold-500) !important;
  width: 20px !important;
}

.testi-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 26px;
  position: relative;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.05);
  border: 1px solid #f0f2f7;
  transition: all 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at top right,
      rgba(201, 164, 79, 0.1),
      transparent 70%);
  pointer-events: none;
}

.testi-card:hover {
  border-color: rgba(185, 145, 58, 0.2);
  box-shadow:
    0 6px 20px rgba(10, 22, 40, 0.09),
    0 12px 28px rgba(10, 22, 40, 0.05);
  transform: translateY(-6px);
}

.testi-quote {
  font-size: 2.5rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Georgia, serif;
  margin-bottom: 14px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--gold-500);
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.testi-text {
  font-family: "Cairo", sans-serif;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 22px;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
  flex-shrink: 0;
}

.testi-name {
  display: block;
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-900);
}

.testi-role {
  display: block;
  font-family: "Cairo", sans-serif;
  font-size: 0.75rem;
  color: var(--gold-600);
}

/* ==========================================
   ADVERTISE CTA SECTION (new)
   ========================================== */
#advertiseSection {
  background: var(--white);
  padding: 80px 0;
}

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

.adv-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--t-base);
}

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

.adv-card-primary {
  background: var(--grad-navy);
  border: 1px solid rgba(185, 145, 58, 0.2);
}

.adv-card-secondary {
  background: var(--gold-100);
  border: 1px solid rgba(185, 145, 58, 0.2);
}

.adv-card-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(185, 145, 58, 0.15);
  border: 1px solid rgba(185, 145, 58, 0.3);
  color: var(--gold-400);
  font-family: "Cairo", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.adv-card-secondary .adv-card-label {
  background: rgba(185, 145, 58, 0.12);
  color: var(--gold-600);
}

.adv-card h3 {
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.adv-card-secondary h3 {
  color: var(--navy-900);
}

.adv-card p {
  font-family: "Cairo", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  line-height: 1.7;
}

.adv-card-secondary p {
  color: var(--gray-600);
}

.adv-num {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.adv-num-lbl {
  font-family: "Cairo", sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 24px;
}

.adv-card-secondary .adv-num-lbl {
  color: var(--gray-400);
}

/* ==========================================
   FOOTER CTA
   ========================================== */
.footer-cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.fcta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.fcta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 22, 40, 0.78) 0%,
      rgba(21, 42, 85, 0.60) 100%);
}

.fcta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.fcta-title {
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.fcta-sub {
  font-family: "Cairo", sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   FOOTER
   ========================================== */
#mainFooter {
  background: var(--navy-900);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

#mainFooter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
}

.footer-logo {
  height: 90px;
  width: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.footer-about {
  font-family: "Cairo", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: var(--t-fast);
  text-decoration: none;
}

.soc-btn:hover {
  background: var(--grad-gold);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: "Cairo", "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-400);
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  font-family: "Cairo", sans-serif;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--t-fast);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-links a::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: 0;
  transition: var(--t-fast);
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-right: 6px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.fci-icon {
  width: 34px;
  height: 34px;
  background: rgba(185, 145, 58, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-family: "Cairo", sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  padding-top: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  font-family: "Cairo", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-copy a {
  color: var(--gold-400);
}

.footer-powered {
  font-family: "Cairo", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.3px;
  text-align: center;
}

.footer-powered-link {
  color: var(--gold-500);
  /* font-weight: 700; */
  transition: var(--t-fast);
  letter-spacing: 0.5px;
}

.footer-powered-link:hover {
  color: var(--gold-300);
  text-shadow: 0 0 12px rgba(154, 117, 40, 0.6);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-links a {
  font-family: "Cairo", sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--t-fast);
}

.footer-legal-links a:hover {
  color: var(--gold-400);
}

.footer-legal-links span {
  color: rgba(255, 255, 255, 0.15);
}

/* ==========================================
   FLOATING CONTACT
   ========================================== */
.float-contact {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

/* Hide floating buttons behind offcanvas backdrop on mobile */
@media (max-width: 991.98px) {

  .offcanvas-backdrop~* .float-contact,
  body.menu-open .float-contact {
    opacity: 0;
    pointer-events: none;
  }
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--white);
  transition: var(--t-fast);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.float-wa {
  background: #25d366;
}

.float-phone {
  background: var(--grad-gold);
  color: #fff;
}

.float-btn:hover {
  transform: scale(1.15);
}

.float-phone:hover {
  color: #555;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1199px) {
  .cat-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
  }

  .cat-card.cat-large {
    grid-column: 1 / span 3;
    grid-row: span 1;
  }

  .cat-card:not(.cat-large) {
    grid-column: span 1;
  }

  .cat-card:nth-child(2),
  .cat-card:nth-child(3),
  .cat-card:nth-child(4),
  .cat-card:nth-child(5) {
    grid-column: span 1;
  }

  .cat-img {
    min-height: 200px;
  }

  .cat-card.cat-large .cat-img {
    min-height: 200px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pkg-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* max-width: 420px; */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }
}

@media (max-width: 991px) {
  .search-panel-wrap {
    padding: 30px 0 38px;
  }

  .search-panel {
    border-radius: 14px;
  }

  .search-tabs-row {
    padding: 0 16px;
    border-radius: 14px 14px 0 0;
  }

  .search-fields {
    flex-direction: column;
    padding: 10px 10px 8px;
    gap: 0;
  }

  .sfield {
    padding: 12px 10px;
    min-width: unset;
    width: 100%;
    border-bottom: 1px solid #f0f1f3;
    border-radius: 8px;
  }

  .sfield-divider {
    display: none;
  }

  .sdrop-menu {
    border-radius: 0 0 12px 12px;
  }

  .sdrop-menu-rooms {
    padding: 0;
  }

  .sdrop-rooms-label {
    display: none;
  }

  .sdrop-rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .sdrop-room-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-family: "Cairo", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy-900);
    background: transparent;
    border: none;
    border-bottom: 1px solid #f0f2f5;
    border-left: 1px solid #f0f2f5;
    border-radius: 0;
    width: 100%;
    text-align: right;
    position: relative;
    cursor: pointer;
    transition:
      background 0.13s,
      color 0.13s;
  }

  .sdrop-room-chip:last-child {
    border-bottom: 1px solid #f0f2f5;
  }

  .sdrop-rooms-grid .sdrop-room-chip:first-child {
    border-left: none;
  }

  .sdrop-room-chip::before {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: var(--gold-500);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.13s;
  }

  .sdrop-room-chip:hover {
    background: var(--gold-100);
  }

  .sdrop-room-chip:hover::before {
    opacity: 1;
  }

  .sdrop-room-chip.active {
    background: var(--gold-100);
    font-weight: 700;
  }

  .sdrop-room-chip.active::before {
    opacity: 1;
  }

  .search-btn-wrap {
    padding: 10px 0 4px;
    width: 100%;
  }

  .search-go-btn {
    width: 100%;
    justify-content: center;
  }

  .vip-main-img {
    height: 300px;
  }

  .vip-content {
    padding: 0;
    margin-bottom: 32px;
  }

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

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .hero-stat {
    align-items: center;
  }

  /* villa slide centering on mobile */
  .villa-badges-row {
    justify-content: center;
  }

  .villa-price-line {
    justify-content: center;
  }

  .villa-chips {
    justify-content: center;
  }

  .villa-ctas {
    justify-content: center;
  }

  .hero-nav-btn {
    display: none !important;
  }

  .adv-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .cat-card.cat-large {
    grid-column: span 2;
  }

  .cat-card:nth-child(2),
  .cat-card:nth-child(3),
  .cat-card:nth-child(4),
  .cat-card:nth-child(5) {
    grid-column: span 1;
  }

  .stat-divider {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 64px 0;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .cat-card.cat-large {
    grid-column: span 1;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-stats-row {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .trust-sep {
    display: none;
  }

  .trust-item {
    min-width: 180px;
    padding: 20px 20px 28px;
    flex: 1 1 45%;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-powered {
    order: 2;
  }

  .footer-legal-links {
    flex-wrap: wrap;
  }

  .ad-strip-inner {
    gap: 16px;
  }
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════
   VILLA AD SLIDE — BOLD LUXURY ADVERTISEMENT
   Dark cinematic overlay · Gold accent · High contrast
═══════════════════════════════════════════ */

/* AD SLIDE: مميزة بإطار ذهبي بارز */
/* ═══════════════════════════════════════
   VILLA AD SLIDE — Premium Paid Ad
   ═══════════════════════════════════════ */

.hero-slide-villa-ad {
  position: relative;
}

/* ── Overlay: gradient عميق من اليمين ── */
.villa-overlay {
  background: linear-gradient(105deg,
      rgba(3, 8, 20, 0.98) 0%,
      rgba(6, 15, 32, 0.94) 30%,
      rgba(10, 22, 40, 0.75) 58%,
      rgba(10, 22, 40, 0.2) 100%);
}

/* ── صف البادجات: إعلان مدفوع + عرض خاص ── */
.villa-badges-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  animation: fadeInDown 0.7s var(--ease) 0.1s both;
}

/* ── بادج "إعلان مدفوع · VIP" ── */
.villa-ad-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(201, 164, 79, 0.55);
  color: #d4a84b;
  font-family: "Cairo", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  padding: 6px 18px 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  box-shadow:
    0 2px 20px rgba(185, 145, 58, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.villa-ad-badge-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9a44f;
  box-shadow: 0 0 8px rgba(201, 164, 79, 0.9);
  animation: pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Price line ── */
.villa-price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 26px;
  flex-wrap: wrap;
  animation: fadeInDown 0.9s var(--ease) 0.45s both;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(185, 145, 58, 0.18);
}

.villa-price-num {
  font-family: "Cairo", sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  background: linear-gradient(135deg,
      #c9a44f 0%,
      #d4a84b 42%,
      #c9a44f 65%,
      #c9a44f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  filter: drop-shadow(0 0 28px rgba(185, 145, 58, 0.6));
  letter-spacing: -1px;
}

.villa-price-cur {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: rgba(232, 204, 138, 0.85);
  align-self: flex-end;
  padding-bottom: 6px;
}

/* ── "عرض خاص" — نص أنيق بدون خلفية ── */
.villa-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: #d4a84b;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 14px 6px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 1.5px;
  align-self: center;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(240, 208, 112, 0.5);
  backdrop-filter: blur(8px);
  box-shadow: none;
  text-shadow: 0 0 12px rgba(240, 208, 112, 0.5);
}

.villa-price-badge::after {
  display: none;
}

.villa-price-badge::before {
  display: none;
}

.villa-price-badge i {
  font-size: 0.7rem;
  animation: fireWiggle 0.9s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 5px rgba(255, 210, 80, 0.9));
  color: #ffd54f;
  position: relative;
  z-index: 1;
}

@keyframes fireWiggle {
  from {
    transform: rotate(-8deg) scale(1);
  }

  to {
    transform: rotate(8deg) scale(1.18);
  }
}

/* ── Spec chips ── */
.villa-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  animation: fadeInDown 0.9s var(--ease) 0.55s both;
}

.vchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 14, 30, 0.6);
  border: 1px solid rgba(185, 145, 58, 0.38);
  color: #dfc882;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  backdrop-filter: blur(18px);
  transition: all 0.22s ease;
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(185, 145, 58, 0.1);
}

.vchip i {
  color: #d4a84b;
  font-size: 0.82rem;
  filter: drop-shadow(0 0 5px rgba(240, 208, 112, 0.55));
}

.vchip:hover {
  background: rgba(185, 145, 58, 0.22);
  border-color: rgba(240, 208, 112, 0.7);
  color: #fff;
  box-shadow: 0 4px 18px rgba(185, 145, 58, 0.28);
  transform: translateY(-2px);
}

/* ── WhatsApp button ── */
.villa-wa-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 800 !important;
  box-shadow:
    0 4px 20px rgba(34, 197, 94, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.25) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  border-radius: 50px !important;
  padding: 14px 28px !important;
  transition: all 0.22s ease !important;
}

.villa-wa-btn i {
  font-size: 1.2rem !important;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.35));
}

.villa-wa-btn:hover {
  background: linear-gradient(135deg, #16a34a, #15803d) !important;
  box-shadow:
    0 6px 30px rgba(34, 197, 94, 0.65),
    0 2px 12px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}

/* ── Eyebrow (unused but kept) ── */
.villa-eyebrow {
  background: linear-gradient(135deg,
      rgba(185, 145, 58, 0.35),
      rgba(240, 208, 112, 0.2)) !important;
  border: 1.5px solid rgba(240, 208, 112, 0.7) !important;
  color: #d4a84b !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 0 20px rgba(185, 145, 58, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 12px rgba(240, 208, 112, 0.5);
}

.villa-eyebrow i {
  color: #d4a84b;
  filter: drop-shadow(0 0 6px rgba(240, 208, 112, 0.7));
}

.villa-eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9a44f;
  box-shadow: 0 0 8px rgba(240, 208, 112, 0.8);
  animation: pulse 1.4s ease-in-out infinite;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .villa-price-num {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
  }

  .villa-ad-badge {
    font-size: 0.65rem;
    letter-spacing: 1.8px;
    padding: 5px 14px 5px 12px;
  }

  .villa-price-badge {
    font-size: 0.75rem;
    padding: 6px 13px;
  }
}

@media (max-width: 767px) {
  .villa-badges-row {
    gap: 8px;
    margin-bottom: 16px;
  }

  .villa-ad-badge {
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    padding: 5px 12px 5px 10px;
  }

  .villa-price-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .villa-price-num {
    font-size: 2.2rem;
  }

  .villa-price-cur {
    font-size: 1rem;
  }

  .villa-chips {
    gap: 7px;
    margin-bottom: 24px;
  }

  .vchip {
    font-size: 0.76rem;
    padding: 7px 12px;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .villa-badges-row {
    gap: 6px;
    justify-content: center;
  }

  .villa-ad-badge {
    font-size: 0.58rem;
    letter-spacing: 1px;
    padding: 4px 10px;
  }

  .villa-price-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .villa-price-badge i {
    display: inline;
  }

  .villa-price-num {
    font-size: 1.9rem;
  }

  .vchip {
    font-size: 0.72rem;
    padding: 6px 10px;
  }
}

/* ══════════════════════════════════════════
   PILL-STRIP FILTER  (psf-*)
   New redesign — replaces old cf-row/cf-card layout
   ══════════════════════════════════════════ */

/* Override cf-wrap alignment for new strip */
.psf-wrap {
  align-items: flex-start;
  max-width: 860px;
}

/* The outer pill container */
.psf-strip {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(185, 145, 58, 0.18);
  border-radius: 10px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: visible;
  position: relative;
  width: 100%;
}

/* Each pill segment (overrides .cf-card) */
.psf-pill {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: row;
  /* icon on LEFT in RTL visual order → icon at end */
  gap: 15px;
  padding: 14px 20px;
  cursor: pointer;
  position: relative;
  border: none !important;
  border-radius: 0;
  background: transparent;
  transition: background 0.22s ease, box-shadow 0.22s ease;
  min-width: 0;
}

.psf-pill:first-child {
  border-radius: 0;
}

/* Hover glow effect */
.psf-pill::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.psf-pill:hover::after {
  opacity: 1;
}

.psf-pill:hover {
  background: rgba(185, 145, 58, 0.06);
}

.psf-pill.open {
  background: rgba(185, 145, 58, 0.12);
}

.psf-pill.open::after {
  opacity: 0;
}

/* Colored icon dot — each pill gets its own color via data attr */
.psf-pill-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

/* Per-pill icon colors */
.psf-pill[data-pf-dropdown="type"] .psf-pill-icon {
  background: rgba(185, 145, 58, 0.12);
  border: 1px solid rgba(185, 145, 58, 0.35);
  color: #b9913a;
}

.psf-pill[data-pf-dropdown="city"] .psf-pill-icon {
  background: rgba(185, 145, 58, 0.12);
  border: 1px solid rgba(185, 145, 58, 0.35);
  color: #b9913a;
}

.psf-pill[data-pf-dropdown="price"] .psf-pill-icon {
  background: rgba(185, 145, 58, 0.12);
  border: 1px solid rgba(185, 145, 58, 0.35);
  color: #b9913a;
}

.psf-pill[data-pf-dropdown="rooms"] .psf-pill-icon {
  background: rgba(185, 145, 58, 0.12);
  border: 1px solid rgba(185, 145, 58, 0.35);
  color: #b9913a;
}

.psf-pill[data-pf-dropdown="baths"] .psf-pill-icon {
  background: rgba(185, 145, 58, 0.12);
  border: 1px solid rgba(185, 145, 58, 0.35);
  color: #b9913a;
}

/* Hover: brighten icons */
.psf-pill:hover .psf-pill-icon,
.psf-pill.open .psf-pill-icon {
  transform: scale(1.10);
  box-shadow: 0 0 5px currentColor;
  filter: brightness(1.2);
}

/* Text block — aligned right */
.psf-pill-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  /* text starts from right naturally in RTL */
  direction: rtl;
}

.psf-pill-label {
  font-family: "Cairo", sans-serif;
  font-size: 0.60rem;
  font-weight: 800;
  color: rgba(100, 116, 139, 0.80);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.psf-pill-val {
  font-family: "Cairo", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1e293b !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
  width: 100%;
  transition: color 0.2s ease;
}

.psf-pill:hover .psf-pill-val {
  color: #1e293b !important;
}

.psf-pill-val .pf-arrow {
  color: rgba(100, 116, 139, 0.60);
  margin-right: 0;
  flex-shrink: 0;
  transition: transform 0.22s ease, color 0.2s ease;
}

.psf-pill.open .psf-pill-val .pf-arrow {
  transform: rotate(180deg);
  color: #c9a44f;
}

.psf-pill:hover .psf-pill-val .pf-arrow {
  color: rgba(100, 116, 139, 0.90);
}

/* Slim vertical divider between pills */
.psf-divider {
  width: 1px;
  background: rgba(185, 145, 58, 0.15);
  align-self: stretch;
  margin: 10px 0;
  flex-shrink: 0;
}

/* Search button — right cap of the strip */
.psf-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px 14px 24px;
  background: linear-gradient(135deg, #9e7a2a 0%, #e3c16e 35%, #bf9a3e 65%, #dba836 100%);
  color: #333;
  border: none;
  border-radius: 10px 0 0 10px;
  font-family: "Cairo", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.psf-search-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  opacity: 0;
  transition: opacity 0.22s;
}

.psf-search-btn:hover::before {
  opacity: 1;
}

/* .psf-search-btn:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 0 32px rgba(154,117,40,0.6),
    0 4px 16px rgba(185,145,58,0.3);
  transform: scale(1.03);
} */
.psf-search-btn:active {
  transform: scale(0.97);
}

.psf-search-icon {
  font-size: 0.9rem;
  color: #333;
}

.psf-search-label {
  letter-spacing: 0.5px;
}

/* Dropdown repositioning for pill layout */
.psf-pill .pf-dropdown {
  top: calc(100% + 12px);
  right: 0;
  transform-origin: top right;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(185, 145, 58, 0.18);
  box-shadow:
    0 20px 56px rgba(10, 22, 40, 0.15),
    0 0 0 1px rgba(10, 22, 40, 0.05);
}

.psf-pill .pf-opt {
  color: #2a3a5a;
}

.psf-pill .pf-opt:first-child {
  color: #b8913a;
  border-bottom-color: rgba(10, 22, 40, 0.07);
}

.psf-pill .pf-opt:hover {
  background: rgba(185, 145, 58, 0.09);
  color: #b8913a;
}

.psf-pill .pf-opt.active {
  background: rgba(185, 145, 58, 0.13);
  color: #a07828;
}

.psf-pill .pf-rooms-title {
  color: #b8913a;
}

.psf-pill .pf-room-chip {
  background: #f8f9fb;
  border-color: #eef0f4;
  color: #2a3a5a;
}

.psf-pill .pf-room-chip:hover {
  border-color: #c9a44f;
  color: #b8913a;
  background: rgba(185, 145, 58, 0.06);
}

.psf-pill .pf-room-chip.active {
  background: linear-gradient(135deg, #9a7528, #b8913a);
  border-color: transparent;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 3px 12px rgba(185, 145, 58, 0.35);
}

/* ── Responsive pill strip ── */
@media (max-width: 900px) {
  .psf-strip {
    max-width: 100%;
  }

  .psf-pill {
    padding: 13px 16px;
  }

  .psf-pill-label {
    font-size: 0.56rem;
  }

  .psf-pill-val {
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  .psf-wrap {
    align-items: stretch;
    width: 100%;
  }

  .psf-strip {
    flex-direction: column;
    border-radius: 16px;
    overflow: visible;
    width: 100%;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(185, 145, 58, 0.22);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.14),
      0 2px 8px rgba(0, 0, 0, 0.06);
  }

  /* keep text colors matching desktop on white background */
  .psf-pill-label {
    color: rgba(100, 116, 139, 0.80);
  }

  .psf-pill-val {
    color: #1e293b !important;
  }

  .psf-pill:hover .psf-pill-val {
    color: #1e293b !important;
  }

  .psf-pill-val .pf-arrow {
    color: rgba(100, 116, 139, 0.60);
  }

  .psf-pill:hover .psf-pill-val .pf-arrow {
    color: rgba(100, 116, 139, 0.90);
  }

  .psf-divider {
    background: rgba(185, 145, 58, 0.15);
  }

  .psf-pill:hover {
    background: rgba(185, 145, 58, 0.06);
  }

  .psf-pill.open {
    background: rgba(185, 145, 58, 0.12);
  }

  .psf-pill::after {
    background: rgba(255, 255, 255, 0.07);
  }

  .psf-pill {
    padding: 15px 20px;
    border-radius: 0 !important;
    flex-direction: row;
    justify-content: flex-end;
  }

  .psf-pill:first-child {
    border-radius: 16px 16px 0 0 !important;
  }

  .psf-pill::after {
    inset: 4px;
  }

  .psf-divider {
    width: auto;
    height: 1px;
    margin: 0 18px;
    align-self: auto;
  }

  .psf-search-btn {
    width: 100%;
    justify-content: center;
    border-radius: 0 0 16px 16px !important;
    padding: 16px 24px;
    font-size: 0.95rem;
  }

  /* dim overlay behind dropdown — applied to body */
  .psf-pill .pf-dropdown::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: -1;
    pointer-events: none;
    transition: background 0.3s ease;
  }

  .psf-pill.open .pf-dropdown::before {
    pointer-events: auto;
  }

  /* Fix z-index stacking so overlay shows */
  .psf-pill {
    isolation: auto;
  }

  .psf-pill .pf-dropdown {
    position: fixed;
    top: auto !important;
    bottom: 0;
    right: 10%;
    left: 0;
    min-width: 80%;
    width: 80%;

    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    opacity: 1;
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 99999;
    visibility: hidden;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    transition:
      transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
      visibility 0s linear 0.35s;
  }

  .psf-pill.open .pf-dropdown {
    transform: translateY(0);
    border-radius: 20px !important;
    visibility: visible;
    transition:
      transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
      visibility 0s linear 0s;
  }

  .psf-pill-icon {
    width: 36px;
    height: 36px;
    font-size: 0.80rem;
  }
}

@media (max-width: 480px) {
  .psf-pill {
    padding: 13px 16px;
    gap: 20px;
  }

  .psf-pill-label {
    font-size: 0.58rem;
  }

  .psf-pill-val {
    font-size: 0.84rem;
  }

  .psf-search-btn {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .psf-pill-icon {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  .psf-strip {
    border-radius: 14px;
  }

  .psf-pill:first-child {
    border-radius: 14px 14px 0 0 !important;
  }

  .psf-search-btn {
    border-radius: 0 0 14px 14px !important;
  }
}




/* ══════════════════════════════════════════════════════════
   REDESIGNED AD SPACES — v2
   ══════════════════════════════════════════════════════════ */

/* ── AD SPACE #1 — Leaderboard ── */
.adv1-wrap {
  padding: 28px 0;
  background: #f4f6f9;
  border-top: 1px solid #e8ecf2;
  border-bottom: 1px solid #e8ecf2;
}

.adv1-label {
  font-family: 'Cairo', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #b9913a;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0.75;
}

.adv1-card {
  display: flex;
  align-items: stretch;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
  max-width: 980px;
  margin: 0 auto;
  min-height: 130px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}

.adv1-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.18);
}

.adv1-photo-side {
  position: relative;
  flex: 0 0 200px;
  min-height: 130px;
  overflow: hidden;
}

.adv1-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adv1-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(10, 22, 40, 0.0) 0%, rgba(10, 22, 40, 0.45) 100%);
}

.adv1-badge-urgent {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e53935;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.45);
}

.adv1-content {
  flex: 1;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0d1e3d 0%, #142a52 60%, #1a3566 100%);
}

.adv1-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.adv1-logo-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #b9913a, #d4af60);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(154, 117, 40, 0.45);
}

.adv1-developer {
  font-family: 'Cairo', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}

.adv1-tagline {
  font-family: 'Cairo', sans-serif;
  font-size: 0.65rem;
  color: rgba(185, 145, 58, 0.75);
}

.adv1-project-tag {
  font-family: 'Cairo', sans-serif;
  font-size: 0.7rem;
  color: rgba(185, 145, 58, 0.7);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 8px 0;
}

.adv1-project-tag strong {
  color: #d4af60;
}

.adv1-headline {
  font-family: 'Cairo', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.adv1-features-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.adv1-features-row span {
  font-family: 'Cairo', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 5px;
}

.adv1-features-row span i {
  color: #d4af60;
  font-size: 0.65rem;
}

.adv1-cta-side {
  flex: 0 0 190px;
  background: linear-gradient(160deg, #b9913a 0%, #d4af60 50%, #c8a245 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 20px;
  text-align: center;
}

.adv1-price-label {
  font-family: 'Cairo', sans-serif;
  font-size: 0.65rem;
  color: rgba(10, 22, 40, 0.65);
  font-weight: 600;
}

.adv1-price {
  font-family: 'Cairo', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: #0a1628;
  line-height: 1;
}

.adv1-currency {
  font-family: 'Cairo', sans-serif;
  font-size: 0.68rem;
  color: rgba(10, 22, 40, 0.6);
  margin-bottom: 8px;
}

.adv1-cta-btn {
  background: #0a1628;
  color: #d4af60;
  font-family: 'Cairo', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: background 0.2s;
}

.adv1-card:hover .adv1-cta-btn {
  background: #0d2044;
}

/* ── AD SPACE #2 — Rectangle Cards ── */
/* ── AD SPACE #2 — Dual Banner ── */
.adv2-section {
  padding: 56px 0 60px;
  background: linear-gradient(160deg, #f7f9fc 0%, #edf0f6 100%);
  position: relative;
}

.adv2-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(185, 145, 58, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.adv2-label {
  font-family: 'Cairo', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: #b9913a;
  text-align: center;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  opacity: 0.8;
}

.adv2-label::before,
.adv2-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(185, 145, 58, 0.5));
}

.adv2-label::after {
  background: linear-gradient(to left, transparent, rgba(185, 145, 58, 0.5));
}

/* ── Dual Banner Grid ── */
.adv2-dual-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Banner base ── */
.adv2-banner {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.9);
  min-height: 170px;
  transition: transform 0.3s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.3s ease;
  position: relative;
}

.adv2-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.adv2-banner-blue::after {
  box-shadow: inset 0 0 0 2px rgba(21, 101, 192, 0.25);
}

.adv2-banner-gold::after {
  box-shadow: inset 0 0 0 2px rgba(185, 145, 58, 0.3);
}

.adv2-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
}

.adv2-banner:hover::after {
  opacity: 1;
}

/* ── Photo side ── */
.adv2-banner-photo {
  position: relative;
  flex: 0 0 280px;
  overflow: hidden;
}

.adv2-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.22, .68, 0, 1.1);
}

.adv2-banner:hover .adv2-banner-img {
  transform: scale(1.07);
}

.adv2-banner-overlay {
  position: absolute;
  inset: 0;
}

.adv2-boverlay-blue {
  background: linear-gradient(to left, rgba(21, 101, 192, 0.45) 0%, rgba(21, 101, 192, 0.1) 50%, transparent 100%);
}

.adv2-boverlay-gold {
  background: linear-gradient(to left, rgba(139, 100, 20, 0.45) 0%, rgba(139, 100, 20, 0.1) 50%, transparent 100%);
}

/* ── Body ── */
.adv2-banner-body {
  flex: 1;
  padding: 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: center;
  position: relative;
}

.adv2-banner-blue .adv2-banner-body {
  border-right: 3px solid rgba(21, 101, 192, 0.12);
}

.adv2-banner-gold .adv2-banner-body {
  border-right: 3px solid rgba(185, 145, 58, 0.18);
}

/* Sponsor tag */
.adv2-sponsor-tag {
  font-family: 'Cairo', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: #aaa;
  border: 1px solid #ececec;
  border-radius: 50px;
  padding: 2px 11px;
  width: fit-content;
  background: #fafafa;
  text-transform: uppercase;
}

/* Brand row */
.adv2-banner-brand {
  font-family: 'Cairo', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.adv2-banner-blue .adv2-banner-brand {
  color: #1565c0;
}

.adv2-banner-gold .adv2-banner-brand {
  color: #a07828;
}

/* Title */
.adv2-banner-title {
  font-family: 'Cairo', sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
  color: #0d1b2a;
  line-height: 1.2;
  margin: 0;
}

/* Desc */
.adv2-banner-desc {
  font-family: 'Cairo', sans-serif;
  font-size: 0.82rem;
  color: #6b7a8d;
  line-height: 1.65;
  max-width: 480px;
}

/* Footer row */
.adv2-banner-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* Stats */
.adv2-banner-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
  background: #f5f7fa;
  border-radius: 12px;
  padding: 8px 14px;
  min-width: 64px;
}

.adv2-banner-blue .adv2-banner-stat {
  background: rgba(21, 101, 192, 0.07);
}

.adv2-banner-gold .adv2-banner-stat {
  background: rgba(185, 145, 58, 0.08);
}

.adv2-stat-num {
  font-family: 'Cairo', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: #0d1b2a;
}

.adv2-banner-blue .adv2-stat-num {
  color: #1565c0;
}

.adv2-banner-gold .adv2-stat-num {
  color: #a07828;
}

.adv2-stat-lbl {
  font-family: 'Cairo', sans-serif;
  font-size: 0.62rem;
  color: #999;
  white-space: nowrap;
}

/* CTA button */
.adv2-banner-cta {
  margin-right: auto;
  font-family: 'Cairo', sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 11px 26px;
  border-radius: 50px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.adv2-banner-cta:hover {
  transform: translateY(-2px);
}

.adv2-bcta-blue {
  background: linear-gradient(135deg, #1565c0 0%, #1e88e5 100%);
  box-shadow: 0 5px 18px rgba(21, 101, 192, 0.35);
}

.adv2-bcta-blue:hover {
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.45);
}

.adv2-bcta-gold {
  background: linear-gradient(135deg, #a07828 0%, #d4af60 100%);
  color: #fff;
  box-shadow: 0 5px 18px rgba(160, 120, 40, 0.35);
}

.adv2-bcta-gold:hover {
  box-shadow: 0 8px 24px rgba(160, 120, 40, 0.45);
}

@media (max-width: 768px) {
  .adv2-banner {
    flex-direction: column;
    min-height: auto;
  }

  .adv2-banner-photo {
    flex: 0 0 180px;
  }

  .adv2-banner-body {
    padding: 20px 22px;
    border-right: none !important;
    border-top: 3px solid rgba(0, 0, 0, 0.05);
  }

  .adv2-banner-footer {
    gap: 12px;
  }

  .adv2-banner-cta {
    margin-right: 0;
  }
}

/* ── AD SPACE #3 — Billboard ── */
.adv3-section {
  position: relative;
  padding: 28px 0 56px;
  background: #f4f6f9;
  margin-bottom: 0;
  border-bottom: 3px solid #c9a44f;
  box-shadow: 0 3px 0 0 rgba(185, 145, 58, 0.18);
}

.adv3-label {
  font-family: 'Cairo', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(185, 145, 58, 0.85);
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.adv3-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 340px;
  transition: opacity 0.2s, transform 0.25s;
  border-radius: 16px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(6, 15, 30, 0.28), 0 4px 16px rgba(6, 15, 30, 0.15);
}

.adv3-card:hover {
  opacity: 0.97;
  transform: translateY(-2px);
}

.adv3-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adv3-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 24, 50, 0.72) 0%, rgba(15, 35, 75, 0.52) 45%, rgba(10, 24, 50, 0.28) 100%);
}

.adv3-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 52px 64px;
  min-height: 320px;
}

.adv3-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* padding-left: 48px; */
  /* margin-left: 48px; */
  /* border-left: 1px solid rgba(185,145,58,0.22); */
}

.adv3-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(185, 145, 58, 0.12);
  border: 1px solid rgba(185, 145, 58, 0.3);
  color: #d4af60;
  font-family: 'Cairo', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  width: fit-content;
}

.adv3-title {
  font-family: 'Cairo', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.adv3-gold {
  color: #d4af60;
}

.adv3-desc {
  font-family: 'Cairo', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  max-width: 480px;
  margin: 0;
}

.adv3-features {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.adv3-features span {
  font-family: 'Cairo', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

.adv3-features span i {
  color: #d4af60;
}

.adv3-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(185, 145, 58, 0.2);
}

.adv3-left {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  /* padding-right: 48px; */
  /* margin-right: 48px; */
}

.adv3-price-label {
  font-family: 'Cairo', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

.adv3-price {
  font-family: 'Cairo', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #d4af60;
  line-height: 1;
}

.adv3-currency {
  font-family: 'Cairo', sans-serif;
  font-size: 0.72rem;
  color: rgba(185, 145, 58, 0.65);
  margin-bottom: 8px;
}

.adv3-payment {
  font-family: 'Cairo', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.adv3-payment i {
  color: #43a047;
}

.adv3-cta-btn {
  background: linear-gradient(135deg, #b9913a, #d4af60);
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(154, 117, 40, 0.45);
  margin-top: 8px;
}

.adv3-hotline {
  font-family: 'Cairo', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  direction: ltr;
}

.adv3-hotline i {
  color: rgba(185, 145, 58, 0.6);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .adv1-photo-side {
    flex: 0 0 140px;
  }

  .adv1-cta-side {
    flex: 0 0 155px;
  }
}

@media (max-width: 700px) {
  .adv1-card {
    flex-direction: column;
  }

  .adv1-photo-side {
    flex: 0 0 140px;
    min-height: 140px;
  }

  .adv1-cta-side {
    flex: none;
    padding: 16px;
  }

  .adv2-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .adv3-content {
    flex-direction: column;
    padding: 36px 24px;
    gap: 24px;
  }

  .adv3-right {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    /* border-top: 1px solid rgba(185, 145, 58, 0.2); */
    padding-top: 20px;
  }

  .adv3-left {
    padding-right: 0;
    margin-right: 0;
  }

  .adv3-title {
    font-size: 1.5rem;
  }

  .adv3-divider {
    display: none;
  }
}

/* ══════════════════════════════════════
   ADS DUO 
══════════════════════════════════════ */
.ads-duo-wrap {
  padding: 40px 0;
  background: #f4f2ee;
}

.ads-duo-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ads-duo-label::before,
.ads-duo-label::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: #ddd;
}

.ads-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ads-duo-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  background: #1a1a2e;
}

.ads-duo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.ads-duo-card-light {
  background: #fff;
}

.ads-duo-photo-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.ads-duo-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ads-duo-card:hover .ads-duo-photo {
  transform: scale(1.05);
}

.ads-duo-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 15, 35, 0.25) 0%, rgba(15, 15, 35, 0.65) 100%);
}

.ads-duo-overlay-gold {
  background: linear-gradient(to bottom, rgba(185, 145, 58, 0.15) 0%, rgba(15, 15, 35, 0.55) 100%);
}

.ads-duo-urgent-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #e53935;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.ads-duo-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.ads-duo-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ads-duo-logo-box {
  width: 38px;
  height: 38px;
  background: rgba(212, 175, 96, 0.15);
  border: 1px solid rgba(212, 175, 96, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af60;
  font-size: 1rem;
  flex-shrink: 0;
}

.ads-duo-logo-gold {
  background: rgba(212, 175, 96, 0.12);
  border-color: rgba(212, 175, 96, 0.3);
}

.ads-duo-developer {
  font-size: 0.82rem;
  font-weight: 800;
  color: #d4af60;
  letter-spacing: 0.03em;
}

.ads-duo-card-light .ads-duo-developer {
  color: #b89038;
}

.ads-duo-tagline {
  font-size: 0.65rem;
  color: #aaa;
  margin-top: 1px;
}

.ads-duo-project-tag {
  font-size: 0.7rem;
  color: #bbb;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 3px 10px;
  display: inline-block;
  align-self: flex-start;
}

.ads-duo-project-tag strong {
  color: #d4af60;
}

.ads-duo-card-light .ads-duo-project-tag {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  color: #777;
}

.ads-duo-tag-gold strong {
  color: #b89038;
}

.ads-duo-headline {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}

.ads-duo-card-light .ads-duo-headline {
  color: #1a1a2e;
}

.ads-duo-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ads-duo-features span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 5px;
}

.ads-duo-card-light .ads-duo-features span {
  color: #666;
}

.ads-duo-features span i {
  color: #d4af60;
  font-size: 0.6rem;
}

.ads-duo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ads-duo-card-light .ads-duo-footer {
  border-top-color: rgba(0, 0, 0, 0.07);
}

.ads-duo-price-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ads-duo-price-lbl {
  font-size: 0.6rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ads-duo-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: #d4af60;
  line-height: 1;
  direction: ltr;
}

.ads-duo-card-light .ads-duo-price {
  color: #b89038;
}

.ads-duo-currency {
  font-size: 0.6rem;
  color: #999;
}

.ads-duo-cta {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.ads-duo-cta-gold {
  background: linear-gradient(135deg, #d4af60, #b8922a);
  color: #fff;
}

.ads-duo-cta-gold:hover {
  background: linear-gradient(135deg, #e0bf70, #c9a040);
}

.ads-duo-cta-dark {
  background: #1a1a2e;
  color: #d4af60;
  border: 1px solid rgba(212, 175, 96, 0.4);
}

.ads-duo-cta-dark:hover {
  background: #22223a;
}

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

/* ==========================================
   PROPERTIES LISTING PAGE (properties.html)
   ========================================== */
body.page-properties {
  overflow-x: clip;
}

.page-properties {
  --plist-nav-offset: 90px;
  background: var(--cream);
  padding-top: var(--plist-nav-offset);
  overflow: visible;
}

.page-properties #mainNavbar {
  background: #fff;
  box-shadow: 0 2px 24px rgba(10, 22, 40, 0.08);
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}

/* Desktop: hide navbar when filter is sticky, show when at top */
@media (min-width: 992px) {
  .page-properties #mainNavbar.nav-hidden-by-filter {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
  }
}

/* Header */
.plist-header {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  padding: 28px 0 20px;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.plist-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "Cairo", sans-serif;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.plist-breadcrumb a {
  color: var(--navy-500);
  transition: color var(--t-fast);
}

.plist-breadcrumb a:hover {
  color: var(--gold-500);
}

.plist-breadcrumb .active {
  color: var(--gold-600);
  font-weight: 700;
}

.plist-breadcrumb i {
  font-size: 0.55rem;
  opacity: 0.45;
}

.plist-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.plist-page-title {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy-900);
  margin-bottom: 6px;
  line-height: 1.25;
}

.plist-page-sub {
  font-family: "Cairo", sans-serif;
  font-size: 0.88rem;
  color: var(--gray-500);
  margin: 0;
}

.plist-page-sub strong {
  color: var(--navy-800);
  font-weight: 800;
}

.plist-header-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.plist-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid #eef0f4;
  background: #fff;
  font-family: "Cairo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-800);
  cursor: pointer;
  transition: all var(--t-base);
}

.plist-action-btn:hover {
  border-color: rgba(185, 145, 58, 0.35);
  color: var(--gold-600);
  box-shadow: var(--shadow-sm);
}

.plist-action-btn.saved {
  background: #fdf4e3;
  border-color: rgba(185, 145, 58, 0.4);
  color: var(--gold-600);
}

.plist-action-btn.saved i {
  font-weight: 900;
}

/* Sticky filter — full viewport width */
.plist-filter-wrap {
  position: sticky;
  top: var(--plist-nav-offset, 90px);
  z-index: 900;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  padding: 12px 0 10px;
  transition: box-shadow var(--t-base), top 0.32s ease;
}

.plist-filter-wrap.is-stuck {
  box-shadow: 0 10px 36px rgba(10, 22, 40, 0.12);
}

/* When navbar hides, filter slides up to fill top */
@media (min-width: 992px) {
  .page-properties.filter-taking-top .plist-filter-wrap {
    top: 0;
  }
}

/* Mobile: always fixed at top — compact */
@media (max-width: 991px) {
  .plist-filter-wrap {
    position: static !important;
    top: var(--plist-nav-offset) !important;
    left: 0;
    right: 0;
    width: 100%;
    padding: 8px 0 7px;
    z-index: 950;
    transition: none !important;
  }

  .plist-filter-placeholder {
    display: block !important;
  }
}

.plist-filter-placeholder {
  display: none;
  width: 100%;
}

.plist-filter-placeholder.is-active {
  display: block;
}



/* Override hero-type-toggle colors when inside the filter bar (light bg) */
.plist-filter-wrap .hero-type-toggle {
  background: var(--gray-50);
  border-color: #eef0f4;
}

.plist-filter-wrap .htt-btn {
  color: var(--navy-700);
}

.plist-filter-wrap .htt-btn.active {
  background: var(--grad-gold, linear-gradient(135deg, #9a7528, #c9a44f));
  color: #fff;
  box-shadow: 0 1px 6px rgba(185, 145, 58, 0.3);
}

.plist-filter-wrap .htt-btn.active .htt-icon {
  color: #fff;
}

.plist-filter-wrap .htt-btn:not(.active):hover {
  background: rgba(185, 145, 58, 0.1);
  color: var(--navy-900);
}

.plist-filter-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  width: 100%;
}

.plist-keyword-wrap {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: var(--gray-50);
  border: 1px solid #eef0f4;
  border-radius: 10px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.plist-keyword-wrap:focus-within {
  border-color: rgba(185, 145, 58, 0.45);
  box-shadow: 0 0 0 3px rgba(185, 145, 58, 0.12);
  background: #fff;
}

.plist-keyword-wrap>i {
  color: var(--gold-500);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.plist-keyword-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: "Cairo", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
  outline: none;
  min-width: 0;
}

.plist-keyword-input::placeholder {
  color: var(--gray-500);
  font-weight: 500;
}

.plist-filter-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.plist-btn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid #eef0f4;
  background: #fff;
  font-family: "Cairo", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-800);
  cursor: pointer;
  transition: all var(--t-fast);
}

.plist-btn-more:hover {
  border-color: rgba(185, 145, 58, 0.4);
  color: var(--gold-600);
}

.plist-search-main {
  border-radius: 10px !important;
  padding: 9px 20px !important;
}

.plist-psf-strip {
  width: 100%;
  max-width: 100%;
  flex: none;
  border-radius: 14px;
  box-shadow:
    0 4px 24px rgba(10, 22, 40, 0.06),
    0 1px 4px rgba(10, 22, 40, 0.04);
}

.plist-filter-toggles {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 14px 0 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(10, 22, 40, 0.1);
}

.plist-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0;
  cursor: pointer;
}

.plist-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.plist-toggle span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid #eef0f4;
  background: #fff;
  font-family: "Cairo", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gray-600);
  transition: all var(--t-fast);
}

.plist-toggle span i {
  font-size: 0.72rem;
  color: var(--gold-500);
}

.plist-toggle input:checked+span {
  background: #fdf4e3;
  border-color: rgba(185, 145, 58, 0.4);
  color: var(--navy-900);
}

.plist-clear-filters {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: none;
  background: transparent;
  font-family: "Cairo", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-500);
  cursor: pointer;
  transition: color var(--t-fast);
}

.plist-clear-filters:hover {
  color: #ef4444;
}

.plist-chips-label {
  font-family: "Cairo", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gray-500);
  align-self: center;
  margin-left: 4px;
}

.plist-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plist-chip {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid #eef0f4;
  background: #fff;
  font-family: "Cairo", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--t-fast);
}

.plist-chip:hover,
.plist-chip.active {
  background: #fdf4e3;
  border-color: rgba(185, 145, 58, 0.35);
  color: var(--navy-900);
}

.plist-chip i {
  color: var(--gold-500);
  margin-left: 4px;
}

/* Main layout 9 + 3 */
.plist-main {
  padding: 28px 0 64px;
  overflow: visible;
}

.plist-main .container,
.plist-main .row {
  overflow: visible;
}

.plist-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid #f0f2f7;
  box-shadow: var(--shadow-sm);
}

.plist-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.plist-sort label {
  font-family: "Cairo", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-500);
  margin: 0;
  white-space: nowrap;
}

.plist-sort-select {
  font-family: "Cairo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-900);
  border: 1px solid #eef0f4;
  border-radius: 10px;
  padding: 8px 12px;
  background: var(--gray-50);
  cursor: pointer;
  min-width: 140px;
  flex: 1;
}

.plist-view-toggle {
  display: flex;
  gap: 4px;
  background: var(--gray-50);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid #eef0f4;
}

.plist-view-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plist-view-btn.active {
  background: #fff;
  color: var(--gold-600);
  box-shadow: var(--shadow-sm);
}

/* Listing cards — horizontal row */
.plist-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plist-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f0f2f7;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  box-shadow:
    0 1px 3px rgba(10, 22, 40, 0.04),
    0 4px 16px rgba(10, 22, 40, 0.05);
}

.plist-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 145, 58, 0.22);
  box-shadow:
    0 8px 24px rgba(10, 22, 40, 0.1),
    0 0 0 1px rgba(185, 145, 58, 0.08);
}

.plist-card-inner {
  display: flex;
  flex-direction: row;
  min-height: 240px;
}

.plist-gallery {
  position: relative;
  flex: 0 0 38%;
  max-width: 420px;
  min-height: 240px;
  overflow: hidden;
}

.plist-gallery .swiper {
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.plist-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.plist-gallery .prop-badges {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
}

.plist-gallery .badge-featured {
  z-index: 3;
}

.plist-gallery .btn-fav {
  z-index: 3;
}

.plist-gallery .plist-photo-count {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(10, 22, 40, 0.75);
  color: #fff;
  font-family: "Cairo", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.plist-gallery .plist-photo-count i {
  margin-left: 4px;
  /* color: var(--gold-400); */
  color: #fff;
}

.plist-gallery-pagination {
  bottom: 12px !important;
}

.plist-gallery-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.plist-gallery-pagination .swiper-pagination-bullet-active {
  background: var(--gold-400);
  width: 20px;
  border-radius: 4px;
}

.plist-gallery-prev,
.plist-gallery-next {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: var(--navy-900);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.plist-gallery-prev::after,
.plist-gallery-next::after {
  font-size: 0.75rem;
  font-weight: 900;
}

.plist-gallery-prev {
  right: auto;
  left: 10px;
}

.plist-gallery-next {
  left: auto;
  right: 10px;
}

.plist-body {
  flex: 1;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.plist-body-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.plist-verified {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Cairo", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.plist-verified i {
  font-size: 0.75rem;
}

.plist-title {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 0 0 6px;
}

.plist-title a {
  color: var(--navy-900);
  transition: color var(--t-fast);
}

.plist-title a:hover {
  color: var(--gold-600);
}

.plist-desc {
  font-family: "Cairo", sans-serif;
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.plist-feats {
  margin-top: auto;
}

.plist-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f2f7;
  flex-wrap: wrap;
}

.plist-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plist-agent img {

  border-radius: 50%;
  object-fit: cover;
}

.plist-agent-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.plist-agent-name {
  display: block;
  font-family: "Cairo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-900);
}

.plist-posted {
  display: block;
  font-family: "Cairo", sans-serif;
  font-size: 0.72rem;
  color: var(--gray-500);
}

.plist-contact-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plist-btn-call,
.plist-btn-wa {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--t-fast);
}

.plist-btn-call {
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  color: var(--navy-800);
}

.plist-btn-call:hover {
  background: var(--gray-200);
  color: #555;
  border-color: var(--gray-200);
}

.plist-btn-wa {
  background: #25d366;
  color: #fff;
}

.plist-btn-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.plist-btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #9a7528 0%, #c9a44f 100%);
  color: var(--white);
  font-family: "Cairo", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  transition: all var(--t-base);
}

.plist-btn-detail:hover {
  box-shadow: var(--shadow-gold);
  gap: 10px;
}

/* Inline ad between cards */
.plist-inline-ad {
  border-radius: 16px;
  overflow: hidden;
}

.plist-inline-ad .adv1-label {
  margin-bottom: 8px;
}

.plist-adv1-card.adv1-card {
  border-radius: 16px;
}

/* Grid view */
.plist-list.is-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.plist-list.is-grid .plist-inline-ad {
  grid-column: 1 / -1;
}

.plist-list.is-grid .plist-card-inner {
  flex-direction: column;
  min-height: 0;
}

.plist-list.is-grid .plist-gallery {
  flex: none;
  max-width: none;
  width: 100%;
  min-height: 200px;
}

.plist-list.is-grid .plist-gallery .swiper,
.plist-list.is-grid .plist-gallery .swiper-slide img {
  min-height: 200px;
}

/* Sidebar — إعلان الشمال sticky */
.plist-sidebar {
  align-self: stretch;
}

.plist-side-ad-sticky-wrap {
  position: sticky;
  top: calc(var(--plist-nav-offset, 90px) + var(--plist-filter-h, 110px) + 10px);
  z-index: 70;
  transition: top 0.32s ease;
}

/* When navbar hides and filter moves to top */
@media (min-width: 992px) {
  .page-properties.filter-taking-top .plist-side-ad-sticky-wrap {
    top: calc(var(--plist-filter-h, 110px) + 10px);
  }
}

@media (max-width: 991px) {
  .plist-side-ad-sticky-wrap {
    position: relative;
    top: auto;
  }
}

.plist-sidebar-extra {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plist-side-ad {
  position: relative;
  z-index: 70;
}

@media (min-width: 992px) {
  .plist-side-ad {
    position: relative;
    top: auto;
  }
}

@media (max-width: 991px) {
  .plist-side-ad-sticky-wrap {
    position: relative;
    top: auto;
  }
}

.plist-side-ad-label {
  display: block;
  text-align: center;
  font-family: "Cairo", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gray-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-top: 20px;
}

.plist-side-ad-label i {
  color: var(--gold-500);
  margin: 0 4px;
}

.plist-side-ad-card {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  max-height: 420px;
  border: 1px solid rgba(185, 145, 58, 0.2);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.plist-side-ad-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.plist-side-ad-card:hover img {
  transform: scale(1.06);
}

.plist-side-ad-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 22, 40, 0.15) 0%,
      rgba(10, 22, 40, 0.55) 50%,
      rgba(10, 22, 40, 0.92) 100%);
  pointer-events: none;
}

.plist-side-ad-body {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 24px 20px;
  z-index: 2;
  color: #fff;
}

.plist-side-ad-chip {
  display: inline-block;
  font-family: "Cairo", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  background: var(--grad-gold);
  color: var(--navy-900);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.plist-side-ad-body h3 {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.plist-side-ad-body p {
  font-family: "Cairo", sans-serif;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 12px;
}

.plist-side-ad-price {
  font-family: "Cairo", sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.plist-side-ad-price small {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.8;
}

.plist-side-ad-cta {
  font-family: "Cairo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.plist-side-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #f0f2f7;
  box-shadow: var(--shadow-sm);
}

.plist-side-title {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy-900);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plist-side-title i {
  color: var(--gold-500);
}

.plist-side-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plist-side-links li {
  border-bottom: 1px solid #f0f2f7;
}

.plist-side-links li:last-child {
  border-bottom: none;
}

.plist-side-links a {
  display: block;
  padding: 10px 0;
  font-family: "Cairo", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-700);
  transition: color var(--t-fast);
}

.plist-side-links a:hover {
  color: var(--gold-600);
}

.plist-side-cta {
  text-align: center;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  border-color: rgba(185, 145, 58, 0.25);
}

.plist-side-cta-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(185, 145, 58, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.1rem;
}

.plist-side-cta h4 {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.plist-side-cta p {
  font-family: "Cairo", sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.plist-side-text {
  font-family: "Cairo", sans-serif;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.plist-side-phone {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold-600);
}

/* Pagination */
.plist-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.plist-page-btn,
.plist-page-num {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #eef0f4;
  background: #fff;
  font-family: "Cairo", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-800);
  cursor: pointer;
  transition: all var(--t-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plist-page-num.active,
.plist-page-num:hover:not(.active) {
  background: linear-gradient(135deg, #9a7528, #c9a44f);
  border-color: transparent;
  color: #fff;
}

.plist-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.plist-page-dots {
  font-family: "Cairo", sans-serif;
  color: var(--gray-500);
  padding: 0 4px;
}

/* Responsive */
@media (max-width: 991px) {

  .plist-side-ad,
  .plist-side-ad.is-fixed {
    position: relative;
    top: auto;
    left: auto !important;
    width: auto !important;
  }

  .plist-side-ad-card {
    min-height: 280px;
  }

  .plist-side-ad-card img {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .plist-card-inner {
    flex-direction: column;
    min-height: 0;
  }

  .plist-gallery {
    flex: none;
    max-width: none;
    width: 100%;
    min-height: 220px;
  }

  /* ── Mobile filter: row 1 = type toggle + keyword + search btn ── */
  .plist-filter-top {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  .plist-type-toggle.hero-type-toggle {
    flex-shrink: 0;
  }

  .plist-keyword-wrap {
    min-width: 0;
    padding: 8px 10px;
    border-radius: 8px;
  }

  .plist-keyword-input {
    font-size: 0.82rem;
  }

  .plist-filter-top-actions {
    width: auto;
    flex-shrink: 0;
    gap: 6px;
  }

  /* Hide "المزيد" on mobile — pills visible below */
  .plist-btn-more.d-lg-none {
    display: none !important;
  }

  .plist-search-main {
    padding: 8px 14px !important;
    border-radius: 8px !important;
  }

  .psf-search-label {
    display: none;
  }

  /* ── Row 2 = pills strip scrolls horizontally ── */
  .plist-psf-strip {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(10, 22, 40, 0.08);
    /* Override the base overflow:visible that would clip horizontal scroll */
    overflow-clip-margin: unset;
  }

  .plist-psf-strip::-webkit-scrollbar {
    display: none;
  }

  /* Each pill: compact and fixed-width so they don't squish */
  .plist-psf-strip .psf-pill {
    flex: 0 0 auto;
    min-width: 105px;
    padding: 8px 12px;
    gap: 8px;
    border-left: 1px solid rgba(10, 22, 40, 0.07);
    /* Don't clip the bottom-sheet dropdown */
    overflow: visible;
  }

  .plist-psf-strip .psf-pill:first-child {
    border-left: none;
  }

  .plist-psf-strip .psf-pill-label {
    font-size: 0.64rem;
  }

  .plist-psf-strip .psf-pill-val {
    font-size: 0.77rem;
  }

  .plist-psf-strip .psf-divider {
    display: none;
  }

  .plist-list.is-grid {
    grid-template-columns: 1fr;
  }

  .plist-inline-ad .adv1-card {
    flex-direction: column;
  }
}

.eyebrow-dot {
  display: none !important;
}

.section-eyebrow::before {
  display: none !important;
}

.bg-image-wrap img {
  height: 100%;
  object-fit: cover;
}

/* ==========================================
   NAV USER MENU — Avatar Dropdown
   ========================================== */

/* Wrapper */
.nav-user-menu {
  position: relative;
}

/* Trigger button */
.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px 10px 5px 5px;
  border-radius: var(--radius-pill);
  transition: background 0.25s var(--ease);
  direction: rtl;
}

.nav-user-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar-scrolled .nav-user-btn:hover {
  background: rgba(10, 22, 40, 0.06);
}

/* Avatar circle */
.nav-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(154, 117, 40, 0.3);
}

/* Name */
.nav-user-name {
  font-family: "Cairo", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar-scrolled .nav-user-name {
  color: var(--navy-800);
}

/* Arrow icon */
.nav-user-arrow {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s var(--ease);
}

.navbar-scrolled .nav-user-arrow {
  color: var(--navy-600);
}

.nav-user-btn[aria-expanded="true"] .nav-user-arrow {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.18), 0 2px 8px rgba(10, 22, 40, 0.08);
  border: 1px solid rgba(185, 145, 58, 0.12);
  padding: 8px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  direction: rtl;
}

.nav-user-dropdown.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Dropdown header (avatar + name + email) */
.nav-user-dropdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 12px;
}

.nav-ud-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-300);
  flex-shrink: 0;
}

.nav-ud-name {
  font-family: "Cairo", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.3;
}

.nav-ud-email {
  font-family: "Cairo", sans-serif;
  font-size: 0.75rem;
  color: #888;
  margin-top: 2px;
  direction: ltr;
  text-align: right;
}

/* Divider */
.nav-ud-divider {
  height: 1px;
  background: rgba(185, 145, 58, 0.1);
  margin: 4px 8px;
}

/* Dropdown items */
.nav-ud-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-family: "Cairo", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-700);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  direction: rtl;
  text-align: right;
}

.nav-ud-item i {
  width: 18px;
  text-align: center;
  color: var(--gold-500);
  font-size: 0.88rem;
}

.nav-ud-item:hover {
  background: rgba(154, 117, 40, 0.07);
  color: var(--navy-900);
}

/* Logout button — red tint */
.nav-ud-logout {
  color: #c0392b;
}

.nav-ud-logout i {
  color: #c0392b;
}

.nav-ud-logout:hover {
  background: rgba(192, 57, 43, 0.08);
  color: #a93226;
}

/* ==========================================
   MOBILE NAV USER SECTION — Dropdown
   ========================================== */
.mobile-nav-user {
  margin: 8px 16px;
  border-radius: 14px;
  border: 1px solid rgba(185, 145, 58, 0.22);
  background: rgba(185, 145, 58, 0.07);
}

/* Toggle button — the card itself */
.mobile-nav-user-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  direction: rtl;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: right;
  transition: background 0.2s ease;
}

.mobile-nav-user-card:hover {
  background: rgba(185, 145, 58, 0.08);
}

.mobile-nav-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(154, 117, 40, 0.35);
}

.mobile-nav-user-info {
  flex: 1;
  min-width: 0;
}

.mobile-nav-user-name {
  font-family: "Cairo", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #e8edf5;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-nav-user-email {
  font-family: "Cairo", sans-serif;
  font-size: 0.7rem;
  color: rgba(200, 212, 232, 0.5);
  margin-top: 1px;
  direction: ltr;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Arrow icon */
.mobile-nav-user-arrow {
  font-size: 0.65rem;
  color: rgba(200, 212, 232, 0.45);
  margin-right: auto;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.mobile-nav-user-card[aria-expanded="true"] .mobile-nav-user-arrow {
  transform: rotate(180deg);
}

/* Dropdown links — hidden by default, slides open */
.mobile-nav-user-links {
  border-top: 0px solid rgba(185, 145, 58, 0.15);
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  max-height: 0;
  padding: 0 10px;
  transition: max-height 0.35s var(--ease), padding 0.3s var(--ease), border-top-width 0.3s;
}

.mobile-nav-user-links.is-open {
  max-height: 300px;
  padding: 6px 10px 10px;
  border-top-width: 1px;
}

.mobile-nav-user-link {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: "Cairo", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #c8d4e8;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  direction: rtl;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-user-link i {
  color: var(--gold-500);
  width: 17px;
  text-align: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.mobile-nav-user-link:hover {
  background: rgba(185, 145, 58, 0.12);
  color: #d4a84b;
}

.mobile-nav-logout {
  color: #e07b72;
}

.mobile-nav-logout i {
  color: #e07b72;
}

.mobile-nav-logout:hover {
  background: rgba(192, 57, 43, 0.15);
  color: #f08880;
}

/* ==========================================
   OFFCANVAS BODY — Scrollable
   ========================================== */
.mobile-nav-offcanvas .offcanvas-body {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(185, 145, 58, 0.3) transparent;
}

.mobile-nav-offcanvas .offcanvas-body::-webkit-scrollbar {
  width: 4px;
}

.mobile-nav-offcanvas .offcanvas-body::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-nav-offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
  background: rgba(185, 145, 58, 0.3);
  border-radius: 4px;
}

#regEmail ,#regPhone , #loginEmail {
  text-align: right;
}
/* ==========================================
   STYLING FOR CUSTOM INPUTS INSIDE DROPDOWNS
   ========================================== */

.pf-custom-input {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 6px;
    border: 1.5px solid #eef0f4;
    border-radius: 10px;
    background-color: #f8f9fb;
    font-family: 'Cairo', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.25s ease;
    box-sizing: border-box;
    text-align: right;
}

    .pf-custom-input::placeholder {
        color: #9aa3b5;
        font-weight: 400;
        font-size: 0.8rem;
        opacity: 0.8;
    }

    .pf-custom-input:focus {
        outline: none;
        border-color: #c9a44f;
        background-color: #ffffff;
        box-shadow: 0 0 0 4px rgba(201, 164, 79, 0.15);
    }

/* ترتيب حقول السعر */
.pf-price-range-row {
    display: flex;
    gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    margin-bottom: 6px;
}

    .pf-price-range-row .pf-custom-input {
        flex: 1;
        min-width: 0;
        text-align: center;
        padding: 8px 12px;
    }

/* ضبط حقل الغرف داخل القائمة */
.pf-dropdown-rooms .pf-custom-input {
    width: calc(100% - 24px);
    margin: 8px 12px 6px;
}

/* رسالة "لا توجد نتائج" */
.pf-no-results {
    padding: 10px 14px;
    color: #9aa3b5;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 4px;
    background: #fafafa;
    border-radius: 0 0 8px 8px;
    cursor: default;
}

/* تمييز الـ Pill عندما يحتوي على قيمة مخصصة */
.psf-pill.custom-value .cf-card-val {
    color: #b8913a !important;
    font-weight: 800;
}

/* إخفاء أسهم الزيادة في الحقول الرقمية */
.pf-custom-input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

    .pf-custom-input[type="number"]::-webkit-outer-spin-button,
    .pf-custom-input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

@media (max-width: 768px) {
    .pf-custom-input {
        font-size: 0.95rem;
        padding: 12px 14px;
        border-radius: 8px;
    }

    .pf-price-range-row {
        flex-direction: column;
        gap: 6px;
    }

        .pf-price-range-row .pf-custom-input {
            width: 100%;
            text-align: right;
        }
}