/* ==========================================================================
   ZORA WORDPRESS THEME - LUXURY DARK REAL ESTATE MASTER STYLESHEET
   Inspired by high-end architectural aesthetics & real estate portals
   ========================================================================== */

:root {
  /* Luxury Dark Palette Tokens */
  --bg-dark-deep: #0A0908;
  --bg-dark-main: #120E0C;
  --bg-dark-surface: #1B1614;
  --bg-dark-card: rgba(28, 23, 21, 0.75);
  --bg-dark-elevated: #241D1A;
  
  /* Brand Gold & Bronze Accents */
  --color-gold: #D4AF37;
  --color-gold-light: #F4DE98;
  --color-gold-dark: #AA8522;
  --color-bronze: #9E714E;
  --color-bronze-light: #B88963;
  --color-bronze-dark: #7A5538;
  --color-sand: #E7D2B8;
  --color-champagne: #FAF6EE;
  
  /* Text Colors */
  --color-white: #FFFFFF;
  --color-text-main: #FAF8F5;
  --color-text-body: #D1C7BD;
  --color-muted: #8E847C;
  --color-muted-light: #B5ABA3;

  /* Borders & Glows */
  --color-border-subtle: rgba(231, 210, 184, 0.1);
  --color-border-gold: rgba(212, 175, 55, 0.25);
  --color-border-hover: rgba(212, 175, 55, 0.55);
  --glow-gold: 0 0 35px rgba(212, 175, 55, 0.2);
  --glow-bronze: 0 0 30px rgba(158, 113, 78, 0.25);

  /* Typography */
  --font-arabic: 'Alexandria', 'Cairo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-secondary: 'Cairo', sans-serif;
  --font-latin: 'Archivo', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 12px 35px rgba(212, 175, 55, 0.22);

  /* Transitions & Radii */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Container */
  --container-max: 1280px;
  --container-pad: 24px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-dark-deep);
}

body {
  font-family: var(--font-arabic);
  background-color: var(--bg-dark-main);
  color: var(--color-text-body);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

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

ul, ol {
  list-style: none;
}

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

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

button {
  cursor: pointer;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--color-bronze);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

::selection {
  background: var(--color-gold);
  color: var(--bg-dark-deep);
}

/* Container & Global Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

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

/* Section Headings & Tags */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  border: 1px solid var(--color-border-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-sand);
  border-color: rgba(255, 255, 255, 0.15);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.35;
  margin-bottom: 16px;
}

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

.title-accent {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-bronze-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(-4px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-bronze) 100%);
  color: var(--bg-dark-deep);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
  color: var(--bg-dark-deep);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-bronze) 0%, var(--color-bronze-dark) 100%);
  color: var(--color-white);
  border: 1px solid rgba(231, 210, 184, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-bronze-light) 0%, var(--color-bronze) 100%);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.06);
  color: var(--color-gold);
  border: 1px solid var(--color-border-gold);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--bg-dark-deep);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-sand);
  color: var(--color-sand);
  transform: translateY(-2px);
}

/* ==========================================================================
   1. TOP BAR
   ========================================================================== */
.top-bar {
  background: var(--bg-dark-deep);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--color-muted-light);
  position: relative;
  z-index: 50;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item i {
  color: var(--color-gold);
  font-size: 0.9rem;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-sand);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-link:hover {
  color: var(--color-gold);
  border-color: var(--color-border-gold);
}

.top-bar-link.hotline-link {
  color: var(--color-gold);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.08);
  font-weight: 700;
}

.top-bar-link.hotline-link:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--color-gold);
}

.top-bar-link.whatsapp-link {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.25);
  background: rgba(37, 211, 102, 0.08);
}

.top-bar-link.whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.16);
}

/* ==========================================================================
   2. MAIN HEADER (Sticky Glassmorphic)
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 14, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-subtle);
  z-index: 100;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background: rgba(10, 9, 8, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: var(--color-border-gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  transition: height 0.3s ease;
}

.main-header.scrolled .header-inner {
  height: 72px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo-wrap:hover .brand-logo-img {
  transform: scale(1.03);
}

.brand-logo-fallback {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--color-text-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 4px;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav Dropdown */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-icon {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-dropdown-wrap:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: var(--bg-dark-surface);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  z-index: 110;
}

.nav-dropdown-wrap:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(6px);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(-4px);
}

.nav-dropdown-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.nav-dropdown-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-white);
}

.nav-dropdown-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--color-muted-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
}

.menu-toggle-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-sand);
  transition: var(--transition-smooth);
}

.menu-toggle-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle-btn.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   2.5. CINEMATIC VIDEO HERO (فيديو البداية السينمائي أعلى الصفحة)
   ========================================================================== */
.cinematic-video-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 520px;
  max-height: 920px;
  overflow: hidden;
  background: #000;
}

@media (max-width: 991px) {
  .cinematic-video-hero {
    height: 70vh;
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .cinematic-video-hero {
    height: 60vh;
    min-height: 340px;
  }
}

.video-hero-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-hero-iframe-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-hero-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.25) 0%, rgba(10, 9, 8, 0.1) 40%, rgba(10, 9, 8, 0.85) 100%);
  pointer-events: none;
}

.video-hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.75);
  pointer-events: none;
}

.video-hero-scroll-btn {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--color-sand);
  text-decoration: none;
  z-index: 10;
  transition: var(--transition-fast);
  cursor: pointer;
}

.video-hero-scroll-btn:hover {
  color: var(--color-gold);
  transform: translateX(-50%) translateY(4px);
}

.scroll-btn-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.scroll-mouse-icon {
  width: 22px;
  height: 34px;
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-mouse-wheel {
  width: 3px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  animation: scrollWheel 2s infinite ease-in-out;
}

.scroll-arrow-icon {
  font-size: 0.7rem;
  color: var(--color-gold);
  animation: bounceDown 1.8s infinite;
}

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

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1.03); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.85) 0%, rgba(18, 14, 12, 0.92) 60%, var(--bg-dark-deep) 100%);
}

.hero-ambient-glow {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(231, 210, 184, 0.1) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-brand-slogan {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 12px;
  font-family: var(--font-latin);
  font-weight: 600;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--glow-gold);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.highlight-gold {
  background: linear-gradient(135deg, #FFF0CC 0%, var(--color-gold) 50%, var(--color-bronze-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--color-muted-light);
  line-height: 1.9;
  margin-bottom: 35px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Visual Card */
.hero-visual-wrap {
  position: relative;
}

.hero-card-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--color-border-gold);
  background: var(--bg-dark-surface);
}

.hero-card-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.hero-card-main:hover .hero-card-img {
  transform: scale(1.04);
}

.hero-card-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: rgba(18, 14, 12, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.hero-card-badge-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 2px;
}

.hero-card-badge-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-white);
}

.hero-card-badge-sub {
  font-size: 0.82rem;
  color: var(--color-sand);
  display: flex;
  align-items: center;
}

.hero-floating-box {
  position: absolute;
  top: -25px;
  left: -20px;
  background: linear-gradient(135deg, var(--color-bronze) 0%, var(--bg-dark-surface) 100%);
  color: var(--color-white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--color-border-gold);
  animation: floatUpDown 4s infinite ease-in-out;
  z-index: 10;
}

.floating-box-icon {
  font-size: 1.8rem;
  color: var(--color-gold);
}

.floating-box-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-gold-light);
}

.hero-trust-indicators {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.trust-indicator-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-sand);
}

.trust-indicator-item i {
  color: var(--color-gold);
  font-size: 0.95rem;
}

/* Redesigned Clean Photo Showcase Frame */
.hero-photo-showcase {
  position: relative;
  width: 100%;
}

.photo-frame-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 40px rgba(212, 175, 55, 0.12);
  background: var(--bg-dark-surface);
}

.hero-photo-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-frame-inner:hover .hero-photo-img {
  transform: scale(1.03);
}

.photo-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 9, 8, 0.9) 35%, rgba(10, 9, 8, 0.98) 100%);
  padding: 30px 24px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.caption-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}

.caption-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 4px;
}

.caption-loc {
  font-size: 0.85rem;
  color: var(--color-sand);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.caption-loc i {
  color: var(--color-gold);
}

.caption-btn {
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ==========================================================================
   4. STATS & ACHIEVEMENTS COUNTER BAR
   ========================================================================== */
.stats-counter-bar {
  background: var(--bg-dark-deep);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 50px 0;
  position: relative;
  z-index: 10;
}

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

.stat-item {
  background: var(--bg-dark-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-gold);
  box-shadow: var(--glow-gold);
}

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

.stat-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
  border: 1px solid var(--color-border-gold);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-latin);
}

.stat-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-sand);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ==========================================================================
   5. STRATEGIC PILLARS SECTION
   ========================================================================== */
.pillars-section {
  background: radial-gradient(circle at 50% 30%, rgba(36, 29, 26, 0.6) 0%, var(--bg-dark-main) 70%);
}

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

.pillar-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
}

.pillar-card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  filter: blur(25px);
  pointer-events: none;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), var(--glow-gold);
}

.pillar-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(158, 113, 78, 0.25) 100%);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  border: 1px solid var(--color-border-gold);
  transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-icon-box {
  transform: rotate(6deg) scale(1.08);
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--color-muted-light);
  line-height: 1.7;
}

/* ==========================================================================
   6. ABOUT US SECTION
   ========================================================================== */
.about-section {
  background: var(--bg-dark-surface);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-media-stack {
  position: relative;
}

.about-img-primary-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-subtle);
}

.about-img-primary {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-img-primary-wrap:hover .about-img-primary {
  transform: scale(1.04);
}

.about-img-secondary-wrap {
  position: absolute;
  bottom: -35px;
  left: -25px;
  width: 220px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--bg-dark-surface);
}

.about-img-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge-trust {
  position: absolute;
  top: 25px;
  right: -20px;
  background: rgba(18, 14, 12, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.about-badge-trust i {
  font-size: 1.6rem;
  color: var(--color-gold);
}

.about-badge-trust strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-white);
}

.about-badge-trust span {
  display: block;
  font-size: 0.8rem;
  color: var(--color-sand);
}

.about-content-text {
  font-size: 1.02rem;
  color: var(--color-muted-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-quote-box {
  background: var(--bg-dark-card);
  border-right: 4px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 25px 0;
  border: 1px solid var(--color-border-subtle);
  border-right-width: 4px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 1.8rem;
  color: rgba(212, 175, 55, 0.15);
}

.about-quote-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-champagne);
  line-height: 1.8;
  font-style: italic;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mv-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-smooth);
}

.mv-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-4px);
}

.mv-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-gold);
  margin-bottom: 10px;
  font-size: 1rem;
}

.mv-card p {
  font-size: 0.88rem;
  color: var(--color-muted-light);
  line-height: 1.7;
}

/* ==========================================================================
   7. BROCHURES & FLOORPLANS DOWNLOAD SECTION
   ========================================================================= */
.brochures-section {
  background: var(--bg-dark-main);
}

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

.brochure-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.brochure-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--glow-gold);
}

.brochure-card-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.brochure-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(18, 14, 12, 0.88);
  backdrop-filter: blur(8px);
  color: var(--color-gold);
  border: 1px solid var(--color-border-gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.brochure-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brochure-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}

.brochure-card-loc {
  font-size: 0.88rem;
  color: var(--color-sand);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.brochure-card-actions {
  display: flex;
  gap: 10px;
}

.brochure-download-btn {
  flex-grow: 1;
  font-size: 0.85rem;
  padding: 10px 14px;
}

.brochure-details-btn {
  font-size: 0.85rem;
  padding: 10px 14px;
}

/* ==========================================================================
   8. PROJECTS PORTFOLIO SECTION
   ========================================================================= */
.projects-section {
  background: radial-gradient(circle at 50% 20%, rgba(36, 29, 26, 0.5) 0%, var(--bg-dark-deep) 80%);
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 35px 0 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-muted-light);
  border-radius: var(--radius-full);
  background: var(--bg-dark-card);
  border: 1px solid var(--color-border-subtle);
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--bg-dark-deep);
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

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

.project-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-border-gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), var(--glow-gold);
}

.project-thumb-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.project-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-card:hover .project-thumb {
  transform: scale(1.06);
}

.project-type-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(18, 14, 12, 0.9);
  backdrop-filter: blur(10px);
  color: var(--color-gold);
  border: 1px solid var(--color-border-gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.project-body {
  padding: 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.project-title a:hover {
  color: var(--color-gold);
}

.project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-sand);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.project-location i {
  color: var(--color-gold);
}

.project-desc {
  font-size: 0.92rem;
  color: var(--color-muted-light);
  line-height: 1.7;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-footer {
  margin-top: auto;
}

/* ==========================================================================
   9. VISUAL GALLERY SHOWCASE
   ========================================================================= */
.gallery-section {
  background: var(--bg-dark-surface);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

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

.gallery-item-wrap {
  cursor: pointer;
}

.gallery-item-card {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-sm);
  background: var(--bg-dark-card);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 9, 8, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.gallery-item-card:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  align-self: flex-start;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.9);
  color: var(--bg-dark-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.gallery-item-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-item-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-white);
}

/* ==========================================================================
   10. CONTACT & BOOKING HUB
   ========================================================================== */
.contact-section {
  background: radial-gradient(circle at 70% 30%, rgba(36, 29, 26, 0.7) 0%, var(--bg-dark-main) 70%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-info-panel {
  background: var(--bg-dark-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--color-border-gold);
}

.contact-item-label {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-bottom: 2px;
}

.contact-item-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

.contact-direct-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whatsapp-direct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-direct-btn:hover {
  background: #20BA5C;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

.booking-form-wrap {
  background: var(--bg-dark-surface);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg), var(--glow-gold);
}

.booking-form-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 700;
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-gold);
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-sand);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(10, 9, 8, 0.6);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  color: var(--color-white);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-gold);
  background: rgba(10, 9, 8, 0.85);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-control::placeholder {
  color: var(--color-muted);
}

select.form-control {
  cursor: pointer;
}

select.form-control option {
  background: var(--bg-dark-surface);
  color: var(--color-white);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-response-msg {
  display: none;
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.form-response-msg.success {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-response-msg.error {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   11. LUXURY FOOTER
   ========================================================================= */
.main-footer {
  background: var(--bg-dark-deep);
  border-top: 1px solid var(--color-border-subtle);
  padding: 80px 0 0;
  position: relative;
}

/* ==========================================================================
   11. LUXURY FOOTER (Reference Style)
   ========================================================================== */
.main-footer.reference-style-footer {
  position: relative;
  background-color: #0D0B0A;
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px), 
                    url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 10 L38 25 L25 40 L12 25 Z' fill='none' stroke='rgba(180, 80, 50, 0.08)' stroke-width='1.5'/%3E%3Cpath d='M0 0 L15 15 L0 30 Z' fill='none' stroke='rgba(212, 175, 55, 0.05)' stroke-width='1'/%3E%3Cpath d='M50 0 L35 15 L50 30 Z' fill='none' stroke='rgba(212, 175, 55, 0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 50px 50px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 85px 0 0;
  color: #FAF8F5;
  overflow: hidden;
}

.footer-grid-ref {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.05fr 1.4fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  align-items: start;
}

.footer-col-brand,
.footer-col-links,
.footer-col-projects,
.footer-col-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand-title {
  color: var(--color-white);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-about-text {
  color: var(--color-muted-light);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 22px;
  max-width: 320px;
}

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

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-subtle);
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--color-gold);
  color: var(--bg-dark-deep);
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Reference Column Headings */
.footer-heading-ref {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.footer-heading-line {
  width: 44px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-bronze));
  margin-bottom: 22px;
  border-radius: 2px;
}

/* Reference Links List */
.footer-ref-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-ref-links-list li {
  list-style: none;
}

.footer-ref-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ECE7E1;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-fast);
  padding: 2px 0;
  text-align: right;
  width: fit-content;
}

.footer-ref-link i {
  font-size: 0.82rem;
  color: #FFFFFF;
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-ref-link:hover {
  color: var(--color-gold);
}

.footer-ref-link:hover i {
  color: var(--color-gold);
  transform: translateX(-4px);
}

/* Reference Contact Info List */
.footer-ref-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.footer-ref-contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #FAF8F5;
  text-align: right;
  line-height: 1.5;
}

.ref-contact-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #FFFFFF;
  flex-shrink: 0;
}

.ref-contact-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  color: #FAF8F5;
}

.ref-contact-text strong,
.ref-contact-text .ref-label {
  color: #FAF8F5;
  font-weight: 700;
  white-space: nowrap;
}

.ref-contact-text a,
.ref-contact-text span {
  color: #FFFFFF;
  font-weight: 500;
  transition: color 0.2s ease;
}

.ref-contact-text a:hover {
  color: var(--color-gold);
}

.footer-bottom-bar {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-muted);
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   12. FLOATING QUICK ACTIONS
   ========================================================================== */
.floating-quick-actions {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-action-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  position: relative;
}

.floating-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: pulseGreen 2.5s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-call {
  background: var(--color-gold);
  color: var(--bg-dark-deep);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.floating-top {
  background: var(--bg-dark-surface);
  color: var(--color-sand);
  border: 1px solid var(--color-border-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.floating-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-action-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.floating-action-tooltip {
  position: absolute;
  left: 64px;
  right: auto;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: rgba(18, 14, 12, 0.96);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid var(--color-border-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 1000;
}

.floating-action-btn:hover .floating-action-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   13. MODAL & LIGHTBOX OVERLAYS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-dark-surface);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--color-border-gold);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid var(--color-border-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  z-index: 15;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--color-gold);
  color: var(--bg-dark-deep);
  transform: rotate(90deg);
}

.modal-banner-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.modal-body {
  padding: 30px 32px;
}

/* Lightbox Modal */
.lightbox-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 95vw;
  max-height: 95vh;
  z-index: 100000;
}

.lightbox-wrapper .modal-close-btn {
  top: -24px;
  left: -24px;
  background: rgba(18, 14, 12, 0.95);
  border: 1px solid var(--color-gold);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
  z-index: 100001;
}

.lightbox-img-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 85vh;
}

#lightboxImg,
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95);
  border: 1px solid var(--color-border-gold);
  display: block;
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(10, 9, 8, 0.7);
}

.modal-overlay.active #lightboxImg,
.modal-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 14px;
  color: var(--color-champagne);
  background: rgba(18, 14, 12, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid var(--color-border-gold);
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.7);
  max-width: 80vw;
}

/* ==========================================================================
   14. SINGLE PROJECT PAGE STYLES
   ========================================================================== */
.project-hero-section {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.project-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.project-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.85) 0%, rgba(18, 14, 12, 0.95) 100%);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-sand);
  margin-bottom: 20px;
}

.breadcrumb-nav a:hover {
  color: var(--color-gold);
}

.breadcrumb-nav span.active {
  color: var(--color-white);
  font-weight: 700;
}

.project-hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 12px;
}

.project-hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-sand);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.project-hero-location svg,
.project-location svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  color: var(--color-gold);
  stroke: var(--color-gold);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.project-hero-location i,
.project-location i {
  color: var(--color-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.project-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.whatsapp-action-btn:hover {
  color: #25D366;
  border-color: #25D366;
}

/* Project Specs Bar */
.project-specs-bar {
  background: var(--bg-dark-surface);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 24px 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.spec-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}

.spec-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.spec-value {
  display: block;
  font-size: 0.98rem;
  color: var(--color-white);
  font-weight: 700;
}

/* Project Details Body */
.project-body-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

.project-section-block {
  background: var(--bg-dark-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 35px;
  box-shadow: var(--shadow-sm);
}

.project-rich-text {
  font-size: 1.05rem;
  color: var(--color-muted-light);
  line-height: 1.9;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.project-gallery-grid .gallery-item-wrap {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
}

.project-gallery-grid .gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-gallery-grid .gallery-item-wrap:hover .gallery-thumb {
  transform: scale(1.08);
}

.project-gallery-grid .gallery-item-wrap:hover .gallery-hover-overlay {
  opacity: 1;
}

/* Floor Plans Container */
.floorplan-tabs-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.floorplan-tab-btn {
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-muted-light);
  background: var(--bg-dark-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.floorplan-tab-btn:hover,
.floorplan-tab-btn.active {
  background: var(--color-gold);
  color: var(--bg-dark-deep);
  border-color: var(--color-gold);
}

.floorplan-panel {
  display: none;
}

.floorplan-panel.active {
  display: block;
}

.floorplan-images-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}

.plan-img-box {
  position: relative;
  background: var(--bg-dark-deep);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(18, 14, 12, 0.85);
  color: var(--color-gold);
  border: 1px solid var(--color-border-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.plan-img-box img {
  width: 100%;
  height: 240px;
  object-fit: contain;
}

.floorplan-note {
  font-size: 0.9rem;
  color: var(--color-sand);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Sticky Sidebar */
.sticky-sidebar {
  position: sticky;
  top: 105px;
  background: var(--bg-dark-surface);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg), var(--glow-gold);
}

.sidebar-card-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 8px 0 10px;
}

.sidebar-card-header p {
  font-size: 0.88rem;
  color: var(--color-muted-light);
  line-height: 1.6;
  margin-bottom: 22px;
}

.sidebar-divider {
  border: none;
  border-top: 1px solid var(--color-border-subtle);
  margin: 24px 0;
}

.sidebar-direct-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-subtle);
  color: var(--color-sand);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.phone-call-btn:hover {
  background: var(--color-gold);
  color: var(--bg-dark-deep);
  border-color: var(--color-gold);
}

.related-projects-section {
  background: var(--bg-dark-deep);
  border-top: 1px solid var(--color-border-subtle);
}

/* ==========================================================================
   15. ANIMATIONS & SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   16. DEDICATED INNER PAGES (PAGE HERO, SPLIT CONTACT, GALLERY, ABOUT)
   ========================================================================== */
.page-hero-section {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  padding: 110px 0 65px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.84) 0%, rgba(18, 14, 12, 0.96) 100%);
}

.page-hero-title {
  font-size: 2.85rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.page-hero-subtitle {
  font-size: 1.08rem;
  color: var(--color-muted-light);
  max-width: 780px;
  line-height: 1.85;
}

/* Split Contact Us Page Styles */
.contact-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 45px;
  align-items: start;
}

.contact-info-card-main {
  background: var(--bg-dark-surface);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.contact-card-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 10px 0 12px;
  line-height: 1.35;
}

.contact-card-desc {
  color: var(--color-muted-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg-dark-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.contact-channel-item:hover {
  border-color: var(--color-border-gold);
  background: rgba(200, 164, 94, 0.05);
  transform: translateX(-4px);
}

.channel-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(200, 164, 94, 0.12);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.channel-icon-box.whatsapp-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.channel-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-sand);
  margin-bottom: 3px;
  font-weight: 600;
}

.channel-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  transition: var(--transition-fast);
}

.channel-val:hover {
  color: var(--color-gold);
}

.channel-val.highlight {
  color: var(--color-gold);
}

.channel-val.whatsapp-link {
  color: #25D366;
}

.channel-val.whatsapp-link:hover {
  text-decoration: underline;
}

.channel-val-static {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-muted-light);
}

.contact-actions-row {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-actions-row .whatsapp-direct-btn {
  flex: 1.2;
  min-width: 200px;
}

.contact-actions-row .phone-action-btn {
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

.contact-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(200, 164, 94, 0.06);
  border: 1px dashed var(--color-border-gold);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}

.trust-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--bg-dark-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 6px;
}

.trust-card-text {
  font-size: 0.88rem;
  color: var(--color-muted-light);
  line-height: 1.7;
  margin: 0;
}

.split-form-box {
  background: var(--bg-dark-surface);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-lg), var(--glow-gold);
}

.split-form-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 8px 0 10px;
}

.split-form-desc {
  font-size: 0.92rem;
  color: var(--color-sand);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Dedicated Media Gallery Styles */
.gallery-filters-wrapper {
  margin-bottom: 40px;
}

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

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

.dedicated-gallery-grid .gallery-item-wrap {
  position: relative;
  height: 310px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--color-border-subtle);
  transition: var(--transition-normal);
}

.dedicated-gallery-grid .gallery-item-wrap:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md), var(--glow-gold);
  transform: translateY(-5px);
}

.gallery-item-project-badge {
  display: inline-block;
  background: rgba(18, 14, 12, 0.88);
  color: var(--color-gold);
  border: 1px solid var(--color-border-gold);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
  backdrop-filter: blur(8px);
}

.gallery-item-direct-link {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--bg-dark-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-fast);
  z-index: 3;
}

.gallery-item-direct-link:hover {
  background: var(--color-white);
  color: var(--bg-dark-deep);
  transform: scale(1.12);
}

/* Gallery & Inner Page Bottom CTA Banner */
.gallery-cta-banner {
  background: linear-gradient(135deg, rgba(28, 22, 19, 0.95) 0%, rgba(18, 14, 12, 0.98) 100%);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 42px 38px;
  box-shadow: var(--shadow-md);
}

.gallery-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.gallery-cta-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 8px 0 10px;
}

.gallery-cta-desc {
  font-size: 0.94rem;
  color: var(--color-muted-light);
  max-width: 620px;
  line-height: 1.75;
}

.gallery-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Mission & Vision Full Grid (About Page) */
.mission-vision-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-full-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.mv-full-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md), var(--glow-gold);
  transform: translateY(-4px);
}

.mv-full-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.mv-full-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(200, 164, 94, 0.12);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}

.mv-full-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0;
}

.mv-full-text {
  font-size: 0.98rem;
  color: var(--color-muted-light);
  line-height: 1.9;
  margin: 0;
}

.about-home-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}


