/* ==========================================================================
   ACACIA SKY - RIYADH, SAUDI ARABIA
   EXACT REPLICA DESIGN SYSTEM & STYLESHEET
   Matching https://www.acaciasky.com/en
   ========================================================================== */

:root {
  --bg-sand: #FFFFFF;
  --bg-parchment: #FFFFFF;
  --bg-dark: #FFFFFF;
  --bg-dark-overlay: rgba(97, 69, 47, 0.85);

  --text-dark: #111827;
  --text-light: #FFFFFF;
  --text-light-dim: rgba(244, 229, 210, 0.75);
  --accent-gold: #C5A059;
  --accent-rust: #25D366;

  --border-gold: rgba(244, 229, 210, 0.2);
  --border-dark: rgba(97, 69, 47, 0.18);

  --font-serif: "garamond-premier-pro", "Cinzel", "Garamond", serif;
  --font-sans: "Avenir Next", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-arabic: "Amiri", "Acacia Sky AR", serif;

  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.61, 0, 0.58, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* RTL Support for Arabic Language Switch */
[dir="rtl"] {
  font-family: var(--font-arabic), var(--font-sans);
}

/* Reset & Global Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-sand);
  color: var(--text-dark);
  line-height: 1.6;
  letter-spacing: 0.54px;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* Global Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 25px;
  }
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
}

.bg-sand {
  background-color: var(--bg-sand);
}

.bg-parchment {
  background-color: var(--bg-parchment);
}

.bg-dark {
  background-color: var(--bg-dark);
}

.text-dark {
  color: var(--text-dark);
}

.text-light {
  color: var(--text-light);
}

.text-light-dim {
  color: var(--text-light-dim);
}

.gold-text {
  color: var(--accent-gold);
}

.text-center {
  text-align: center;
}

/* Section Header Typography */
.section-subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--accent-rust);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 300;
  letter-spacing: 1.8px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 760px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.gold-divider {
  width: 50px;
  height: 1.5px;
  background-color: var(--accent-gold);
  margin: 24px auto 0;
}

.border-gold-top {
  border-top: 1px solid var(--border-gold);
}

/* Luxury Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-rust);
  color: var(--text-light);
  padding: 16px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #8c5230;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid var(--text-light);
  padding: 16px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--bg-dark);
}

.btn-outline-dark {
  display: inline-block;
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.btn-outline-dark:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
}

.btn-gold-sm {
  background-color: var(--accent-gold);
  color: #111;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.btn-gold-sm:hover {
  background-color: #d6c2a8;
}

.btn-text.trail {
  position: relative;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--text-light);
  padding-bottom: 4px;
}

.btn-text.trail::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--text-light);
  transition: width var(--transition-fast);
}

.btn-text.trail:hover::after {
  width: 100%;
}

.width-100 {
  width: 100%;
}

/* ==========================================================================
   PRELOADER SCREEN
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-parchment);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.circle-svg-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.circle-svg-wrapper svg {
  animation: rotatePreloader 3s linear infinite;
}

.preloader-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

#preloader-circle {
  stroke-dasharray: 565;
  stroke-dashoffset: 565;
  animation: drawCircle 2s ease-in-out forwards;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes rotatePreloader {
  100% {
    transform: rotate(360deg);
  }
}

.brand-subtext {
  display: block;
  font-family: var(--font-arabic), var(--font-serif);
  letter-spacing: 2px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ==========================================================================
   MAIN FIXED HEADER
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1000;
  padding: 25px 50px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 100%);
  transition: background 0.4s ease, height 0.4s ease, padding 0.4s ease;
}

.main-header.scrolled {
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 85px;
  padding: 15px 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.wds-logo {
  width: 195px;
  height: auto;
  transition: width 0.3s ease;
}

.wds-logo text,
.wds-logo g {
  fill: #ffffff !important;
  transition: fill 0.3s ease;
}

.main-header.scrolled .wds-logo {
  width: 150px;
  height: auto;
}

.header-left,
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-profile-btn {
  background: linear-gradient(135deg, rgba(20, 83, 45, 0.88) 0%, rgba(34, 128, 67, 0.92) 100%);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

.header-profile-btn:hover {
  background: linear-gradient(135deg, #14532d 0%, #228043 100%);
  border-color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.header-profile-btn svg {
  stroke: #25d366 !important;
  color: #25d366 !important;
}

.header-call-btn {
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.85) 0%, rgba(45, 106, 79, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.header-call-btn:hover {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.header-wa-btn {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.85) 0%, rgba(18, 140, 126, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-wa-btn:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.header-left .btn-text,
.header-email-link,
.header-actions .btn-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
  text-transform: lowercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.header-left .btn-text:hover,
.header-email-link:hover,
.header-actions .btn-text:hover {
  color: var(--accent-gold) !important;
  opacity: 1;
}

.hamburger-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

.hamburger-icon path {
  stroke: #ffffff !important;
  transition: stroke 0.3s ease;
}

/* ==========================================================================
/* ==========================================================================
   COMPACT NAV DRAWER (SMALL SIZE)
   ========================================================================== */
.nav-drawer {
  position: fixed;
  top: 75px;
  left: 30px;
  width: min(340px, 90vw);
  max-height: calc(100vh - 100px);
  background-color: #faf8f5;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px) scale(0.96);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  border-radius: 20px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(23, 34, 25, 0.08);
  overflow-y: auto;
}

[dir="rtl"] .nav-drawer {
  left: 30px;
  right: auto;
}

.nav-drawer.active {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  transform: translateY(0) scale(1);
}

.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nav-drawer-left {
  width: 100%;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #faf8f5;
  border-radius: 20px;
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 34, 25, 0.1);
}

.nav-drawer-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: #172219;
}

.nav-drawer-close-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(23, 34, 25, 0.06);
  color: #172219;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.nav-drawer-close-btn:hover {
  background: rgba(23, 34, 25, 0.12);
  transform: scale(1.08);
}

.drawer-menu-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-drawer-link {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #172219;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 10px;
}

.nav-drawer-link:hover {
  color: #2e7548;
  background-color: rgba(46, 117, 72, 0.08);
  transform: translateX(-4px);
}

.nav-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(23, 34, 25, 0.1);
  padding-top: 14px;
}

.nav-drawer-footer a {
  font-size: 0.78rem;
  font-weight: 600;
  color: #556057;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-drawer-footer a:hover {
  color: #172219;
}

/* ==========================================================================
   AMBIENT MUTE & STICKY INQUIRE CONTROLS
   ========================================================================== */
.ambient-mute-btn {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 980;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(97, 69, 47, 0.85);
  color: var(--text-light);
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
}

.ambient-mute-btn:hover {
  background-color: var(--bg-dark);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.mute-btn-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.sticky-inquire-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--accent-rust);
  color: var(--text-light);
  padding: 22px 14px;
  z-index: 980;
  writing-mode: vertical-rl;
  border-radius: 4px 0 0 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.sticky-inquire-btn:hover {
  background-color: #8c5230;
  transform: translateY(-50%) translateX(-4px);
}

/* ==========================================================================
   HERO SECTION & FULL-BLEED AMBIENT MEDIA
   ========================================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0 !important;
  padding-top: 0 !important;
  top: 0 !important;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-video,
#hero-ambient-video,
#main-cinematic-video,
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  filter: none !important;
  opacity: 1 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  top: 0 !important;
}

/* Green Mountain Vegetation & Grass Mask for Intro Video */
.hero-overlay-shade,
.hero-bg-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.35) 0%, rgba(45, 106, 79, 0.5) 50%, rgba(13, 40, 25, 0.65) 100%);
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
  display: block !important;
}

/* Hero Intro Video Right-Side Logo Overlay */
.hero-video-right-logo {
  position: absolute;
  top: 130px;
  right: 50px;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.hero-right-logo-img,
.hero-video-right-logo img {
  width: clamp(95px, 10vw, 145px);
  max-width: 145px;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 10px 25px rgba(0, 0, 0, 0.75));
  object-fit: contain;
  transition: transform 0.3s ease;
}

.hero-video-right-logo img:hover {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .hero-video-right-logo {
    top: 85px;
    right: 20px;
  }

  .hero-right-logo-img,
  .hero-video-right-logo img {
    width: 85px;
  }
}

.hero-content,
.hero-content-container,
.hero-welcome-badge,
.hero-main-title,
.hero-subtitle,
.hero-actions,
.scroll-indicator {
  display: none !important;
}

.hero-welcome-badge {
  display: inline-block;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 22px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-main-title {
  font-family: var(--font-arabic), var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 18px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.85);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8;
  color: rgba(244, 229, 210, 0.92);
  max-width: 760px;
  margin: 0 auto;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.85);
}

.btn-primary-gold,
.btn-gold-fill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent-gold);
  color: #111;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-fast);
  border: 1px solid var(--accent-gold);
  cursor: pointer;
}

.btn-primary-gold:hover,
.btn-gold-fill:hover {
  background-color: #d6c2a8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: #111;
  transform: translateY(-2px);
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--text-light) 0%, transparent 100%);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ==========================================================================
   SCROLL-DRIVEN ZOOM CINEMATIC VIDEO PLAYER SECTION
   ========================================================================== */
.scroll-zoom-film-section {
  position: relative;
  width: 100vw;
  height: 250vh;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #111827 0%, #111827 45%, #081c15 100%);
}

.scroll-zoom-film-section .dark-earth-filter,
.dark-earth-filter {
  filter: none !important;
}

.film-sticky-wrapper {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video 1 Ambient Background Mask Layer under Video 2 */
.video-mask-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-video-mask-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: none !important;
  opacity: 0.9;
  transition: opacity 0.5s ease;
}

.video-mask-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(17, 24, 39, 0.25) 0%, rgba(17, 24, 39, 0.85) 100%);
  pointer-events: none;
}

.film-header-box,
.our-story-badge-header {
  text-align: center;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 90%;
  max-width: 800px;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  color: #FFFFFF !important;
}

.our-story-badge-title,
.our-story-arrow,
#film-header-box,
#film-header-box * {
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
  font-weight: 700 !important;
}

.video-player-container-zoom {
  position: relative;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.65);
  transform-origin: center center;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(97, 69, 47, 0.3);
  will-change: transform, border-radius;
  transition: transform 0.1s ease-out, border-radius 0.1s ease-out;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000;
}

.video-wrapper video,
#main-cinematic-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none !important;
  opacity: 1 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  top: 0 !important;
}

.video-overlay-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 5;
}

.video-overlay-play-btn:hover {
  background: rgba(0, 0, 0, 0.25);
}

.play-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-overlay-play-btn:hover .play-icon-circle {
  transform: scale(1.1);
  background-color: #d6c2a8;
}

.video-overlay-play-btn span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-light);
}

.video-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 6;
}

.v-control-btn {
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.v-control-btn:hover {
  color: var(--accent-gold);
}

.v-progress-bar-wrap {
  flex: 1;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.v-progress-filled {
  height: 100%;
  width: 0%;
  background-color: var(--accent-gold);
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* ==========================================================================
   SAND BEIGE VECTOR CONNECTIVITY MAP SECTION (WITH SCROLL ZOOM)
   ========================================================================== */
.scroll-zoom-map-section {
  position: relative;
  width: 100vw;
  height: 220vh;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
}

.map-sticky-wrapper {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#map-zoom-container {
  transform: scale(0.85);
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.1s ease-out;
  width: 100%;
}

.vector-map-canvas {
  position: relative;
  width: 100%;
  height: 600px;
  background-color: #FFFFFF;
  background-image: radial-gradient(#d6c2a8 1.5px, transparent 1.5px), linear-gradient(180deg, #FFFFFF 0%, #F3F4F6 100%);
  background-size: 28px 28px, 100% 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(180, 112, 70, 0.3);
  box-shadow: inset 0 0 60px rgba(97, 69, 47, 0.08), 0 20px 50px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.satellite-map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
  pointer-events: none;
}

.vector-map-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  pointer-events: none;
}

.map-pin-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-pin-badge:hover {
  transform: scale(1.06);
}

.map-pin-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111827;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(97, 69, 47, 0.35);
  border: 2px solid #FFFFFF;
  flex-shrink: 0;
}

.map-pin-icon.pulse {
  animation: mapPulse 2s infinite ease-in-out;
}

@keyframes mapPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(97, 69, 47, 0.5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(97, 69, 47, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(97, 69, 47, 0);
  }
}

.map-tooltip-box {
  padding: 10px 20px;
  background: #FFFFFF;
  color: #111827;
  border: 1px solid #25D366;
  border-radius: 10px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(97, 69, 47, 0.15);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.map-tooltip-box.gold-highlight {
  background: #111827;
  color: #FFFFFF;
  border-color: #C5A059;
  box-shadow: 0 8px 25px rgba(97, 69, 47, 0.4);
}

.connectivity-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.metric-card {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: 14px;
  border: 1px solid rgba(180, 112, 70, 0.25);
  text-align: center;
  box-shadow: 0 10px 25px rgba(97, 69, 47, 0.06);
  transition: transform 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
}

.metric-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 0.85rem;
  color: #666;
  letter-spacing: 1px;
}

.pin-airport {
  top: 22%;
  left: 75%;
}

.pin-kafd {
  top: 38%;
  left: 62%;
}

.pin-kingdom {
  top: 52%;
  left: 68%;
}

.pin-turaif {
  top: 48%;
  left: 42%;
}

.pin-acaciasky,
.pin-acaciasky {
  top: 58%;
  left: 35%;
}

.pin-pulse {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(244, 229, 210, 0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: mapPulse 2s infinite;
}

.pin-pulse.gold {
  background-color: rgba(197, 160, 89, 0.5);
}

@keyframes mapPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

.pin-marker {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 1.5px solid var(--accent-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.pin-marker.gold-marker {
  background-color: var(--accent-gold);
  color: #111;
  font-weight: 700;
}

.map-pin-item:hover .pin-marker {
  transform: scale(1.25);
}

.pin-tooltip {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(97, 69, 47, 0.95);
  border: 1px solid var(--border-gold);
  padding: 10px 16px;
  border-radius: 4px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.map-pin-item:hover .pin-tooltip {
  opacity: 1;
}

.pin-tooltip strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
}

.pin-tooltip span {
  font-size: 0.75rem;
  color: var(--accent-gold);
}

/* ==========================================================================
   BRAND LOGOS CAROUSEL SLIDER
   ========================================================================== */
.brand-carousel-section {
  border-bottom: 1px solid var(--border-dark);
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
}

.brand-carousel-section {
  padding: 95px 0;
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
}

.partners-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.partners-badge {
  display: inline-block;
  padding: 7px 22px;
  background-color: rgba(27, 67, 50, 0.07);
  color: #1b4332;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  border: 1px solid rgba(27, 67, 50, 0.16);
  letter-spacing: 0.5px;
}

.brand-carousel-section .section-title {
  font-size: 34px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.brand-carousel-section .section-desc {
  font-size: 16px;
  color: #4b5563;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 500;
}

.full-bleed-ticker {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 45px;
  overflow: hidden;
}

.brand-logos-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.brand-logos-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: logoMarqueeRTL 35s linear infinite;
  will-change: transform;
}

.brand-logos-viewport:hover .brand-logos-track {
  animation-play-state: paused;
}

@keyframes logoMarqueeRTL {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brand-logo-item {
  flex: 0 0 205px;
  height: 90px;
  padding: 12px 24px;
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.brand-logo-item:hover {
  box-shadow: 0 12px 30px rgba(27, 67, 50, 0.12);
  border-color: rgba(27, 67, 50, 0.25);
  transform: translateY(-4px);
}

.brand-logo-item svg,
.brand-logo-item img {
  max-width: 160px;
  max-height: 48px;
  height: auto;
  width: auto;
  display: block;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  background-color: var(--text-dark);
}

/* Dark Earth Warm Desert Background & Filter */
.bg-dark-earth {
  background: linear-gradient(180deg, #111827 0%, #111827 40%, #081c15 100%);
  color: #FFFFFF;
  position: relative;
}

.bg-dark-earth .large-card-img-wrap img {
  filter: none !important;
  transition: transform 0.8s ease;
}

.bg-dark-earth .large-card-img-wrap img:hover {
  filter: none !important;
  transform: scale(1.05);
}

.bg-dark-earth .power-title-slide {
  color: #FFFFFF;
}

.bg-dark-earth .giant-power-title span {
  color: #FFFFFF;
}

.bg-dark-earth .power-title-paragraphs p {
  color: rgba(244, 229, 210, 0.9);
}

/* Our Story Centered Badge with Down Arrow */
.our-story-badge-header {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.our-story-badge-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: #FFFFFF;
  text-transform: none;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.our-story-arrow {
  font-size: 1.6rem;
  color: #FFFFFF;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  animation: bounceArrow 2s infinite ease-in-out;
}

@keyframes bounceArrow {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(5px);
  }

  60% {
    transform: translateY(2.5px);
  }
}

.carousel-arrow:hover svg path {
  stroke: var(--text-light);
}

/* ==========================================================================
   INTERACTIVE GALLERY CAROUSEL
   ========================================================================== */
.gallery-carousel-wrapper {
  margin-top: 50px;
}

.gallery-viewport {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(97, 69, 47, 0.12);
}

.gallery-track {
  position: relative;
  height: 540px;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: rgba(97, 69, 47, 0.9);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 4px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-gold);
}

.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.pagination-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(97, 69, 47, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dots .dot.active {
  background-color: var(--accent-rust);
  transform: scale(1.3);
}

/* ==========================================================================
   POWER OF PLACE (OUR STORY)
   ========================================================================== */
.power-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
  margin-top: 60px;
}

.power-card {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(97, 69, 47, 0.08);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.power-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(97, 69, 47, 0.15);
}

.power-card-img-wrap {
  height: 260px;
  overflow: hidden;
}

.power-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.power-card:hover .power-card-img-wrap img {
  transform: scale(1.08);
}

.power-card-body {
  padding: 32px;
}

.power-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.power-card-body p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ==========================================================================
   METRICS SECTION
   ========================================================================== */
.metrics-intro {
  color: var(--text-light-dim);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 16px auto 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.metric-card {
  border: 1px solid rgba(244, 229, 210, 0.15);
  padding: 36px 24px;
  border-radius: 4px;
  text-align: center;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
  background-color: rgba(255, 255, 255, 0.02);
}

.metric-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.metric-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.metric-num small {
  font-size: 1.5rem;
  margin-left: 4px;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-light-dim);
  line-height: 1.4;
}

/* ==========================================================================
   HOTELS & RESORTS TABS
   ========================================================================== */
.hotel-tabs-wrap {
  margin-top: 50px;
}

.hotel-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.tab-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 12px 28px;
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--text-dark);
  color: var(--text-light);
  border-color: var(--text-dark);
}

.hotel-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hotel-panel.active {
  display: block;
  opacity: 1;
}

.hotel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  background-color: #fff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(97, 69, 47, 0.08);
}

.hotel-img-col {
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
}

.hotel-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-info-col {
  padding: 20px;
}

.hotel-brand {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-rust);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.hotel-info-col h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hotel-info-col p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hotel-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 36px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent-rust);
}

.stat-desc {
  font-size: 0.8rem;
  color: #777;
}

/* ==========================================================================
   BRANDED RESIDENCES ACCORDION
   ========================================================================== */
.accordion-container {
  display: flex;
  height: 540px;
  gap: 16px;
  margin-top: 50px;
}

.accordion-card {
  flex: 1;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.accordion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  transition: opacity 0.4s ease;
}

.accordion-content {
  position: absolute;
  bottom: 36px;
  left: 36px;
  right: 36px;
  color: #fff;
  z-index: 2;
  transition: all 0.5s ease;
}

.residence-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.accordion-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 12px;
  white-space: nowrap;
}

.accordion-content p {
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
  max-width: 420px;
  margin-bottom: 20px;
  display: none;
}

.accordion-content .btn-gold-sm {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease 0.1s;
  display: none;
}

.accordion-card:hover,
.accordion-card.active {
  flex: 3;
}

.accordion-card:hover .accordion-content p,
.accordion-card.active .accordion-content p,
.accordion-card:hover .accordion-content .btn-gold-sm,
.accordion-card.active .accordion-content .btn-gold-sm {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

/* ==========================================================================
   MASTERPLAN & SPORTING PURSUITS
   ========================================================================== */
.masterplan-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  margin-top: 60px;
}

.mp-feature-card {
  background-color: #fff;
  padding: 40px 32px;
  border-radius: 4px;
  border-top: 3px solid var(--accent-rust);
  box-shadow: 0 10px 30px rgba(97, 69, 47, 0.06);
  transition: transform var(--transition-fast);
}

.mp-feature-card:hover {
  transform: translateY(-6px);
}

.mp-icon {
  margin-bottom: 24px;
}

.mp-feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.mp-feature-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ==========================================================================
   AWARDS & CERTIFICATIONS
   ========================================================================== */
/* STATS COUNTER SECTION */
.stats-counter-section {
  padding: 60px 0;
  background-color: #FFFFFF !important;
  border-bottom: 1px solid rgba(45, 106, 79, 0.12);
}

.stats-counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 65px;
  flex-wrap: wrap;
}

.stat-counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 800;
  color: #000000 !important;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827 !important;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 2px;
  height: 52px;
  background-color: #000000 !important;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .stats-counter-wrapper {
    gap: 24px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-divider {
    height: 42px;
  }
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.award-card {
  border: 1px solid rgba(45, 106, 79, 0.15) !important;
  padding: 40px 30px;
  border-radius: 16px;
  background-color: #F3FAF6 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(27, 67, 50, 0.1);
}

.award-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #1b4332 !important;
  border: 1.5px solid #1b4332 !important;
  background: rgba(27, 67, 50, 0.08) !important;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.award-card h4 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111827 !important;
}

.award-card p {
  font-size: 0.95rem;
  color: #555555 !important;
  line-height: 1.6;
}

/* ==========================================================================
   NEWS SECTION
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  margin-top: 60px;
}

.news-card {
  background-color: #fff;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(97, 69, 47, 0.08);
  border: 1px solid rgba(45, 106, 79, 0.12) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(27, 67, 50, 0.14);
}

.news-img-wrap {
  height: 340px !important;
  overflow: hidden;
}

.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-img-wrap img {
  transform: scale(1.08);
}

.news-body {
  padding: 16px 20px 20px !important;
}

.news-date {
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px;
  color: #1b4332 !important;
  display: block;
  margin-bottom: 6px !important;
}

.news-body h4 {
  font-family: var(--font-arabic), var(--font-sans);
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin-bottom: 8px !important;
  line-height: 1.35;
}

.news-body p {
  font-size: 0.82rem !important;
  color: #555555 !important;
  margin-bottom: 14px !important;
  line-height: 1.55 !important;
}

.news-link {
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  color: #1b4332 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-link:hover {
  color: #C5A059 !important;
}

/* ==========================================================================
   INQUIRY SECTION & LUXURY FORM
   ========================================================================== */
.inquiry-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.inquiry-info p {
  color: var(--text-light-dim);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-item {
  font-size: 0.95rem;
  color: var(--text-light);
}

.c-item strong {
  color: var(--accent-gold);
}

.inquiry-form-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 229, 210, 0.15);
  padding: 44px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.luxury-form h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding: 14px 0;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  opacity: 0.65 !important;
}

.form-group select option {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.form-group label {
  position: absolute;
  top: 14px;
  left: 0;
  color: rgba(0, 0, 0, 0.7) !important;
  font-size: 0.95rem;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group select:focus~label,
.form-group select:valid~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
  top: -10px;
  font-size: 0.75rem;
  color: #000000 !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: #000000 !important;
}

.modal-card input,
.modal-card select,
.modal-card textarea {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

.modal-card input::placeholder,
.modal-card textarea::placeholder {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  opacity: 0.65 !important;
}

.form-feedback {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #111827;
  text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(244, 229, 210, 0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  width: 140px;
  height: 70px;
  margin-bottom: 20px;
}

.company-subtag {
  font-size: 0.9rem;
  color: var(--text-light-dim);
  max-width: 380px;
}

.main-footer h5 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.main-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main-footer ul a {
  font-size: 0.9rem;
  color: var(--text-light-dim);
}

.main-footer ul a:hover {
  color: var(--text-light);
}

.footer-divider {
  border-top: 1px solid rgba(244, 229, 210, 0.12);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light-dim);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: var(--text-light-dim);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.social-links a:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   MODAL OVERLAY
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: initial;
}

.modal-card {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  max-width: 560px;
  width: 100%;
  padding: 48px;
  position: relative;
  color: var(--text-light);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: var(--text-light);
  line-height: 1;
  opacity: 0.7;
}

.close-modal-btn:hover {
  opacity: 1;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-subtitle {
  color: #000000 !important;
  font-weight: 700 !important;
  font-size: 0.95rem;
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin: 8px 0 12px;
  color: #000000 !important;
  font-weight: 800 !important;
}

.modal-header p {
  font-size: 0.92rem;
  color: #000000 !important;
  font-weight: 700 !important;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE BREAKPOINTS
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .accordion-container {
    flex-direction: column;
    height: 900px;
  }

  .inquiry-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .nav-drawer-left {
    flex: 0 0 100%;
    padding: 100px 40px 40px;
  }

  .nav-drawer-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 20px 24px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .sticky-inquire-btn {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   SCROLL-DRIVEN VIDEO ZOOM & STICKY HORIZONTAL GALLERY STYLES
   ========================================================================== */
.scroll-zoom-film-section,
.bg-dark-earth,
.film-sticky-container,
.full-screen-film-section {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  color: #111827;
}

.full-screen-film-section {
  position: relative;
  width: 100vw;
  height: 250vh;
  padding: 0;
  margin-top: -100vh;
  z-index: 10;
  pointer-events: none;
}

.film-sticky-container {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: auto;
}

.film-side-text {
  position: absolute;
  top: 50%;
  left: 6vw;
  right: auto;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 440px;
  text-align: left;
  color: var(--text-dark);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

[dir="rtl"] .film-side-text {
  left: auto;
  right: 6vw;
  text-align: right;
}

.film-side-text .film-tag {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.film-side-text h3 {
  font-family: var(--font-arabic), var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.film-side-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light-dim);
}

/* Mouse Scroll Down Guidance Indicator */
.video-zoom-mouse-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  direction: rtl;
  color: #FFFFFF;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.video-zoom-mouse-hint.active {
  opacity: 1;
  visibility: visible;
}

.video-zoom-mouse-hint .mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid var(--accent-gold);
  border-radius: 12px;
  position: relative;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.video-zoom-mouse-hint .mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScrollAnim 1.6s infinite ease-in-out;
}

@keyframes mouseScrollAnim {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  60% {
    opacity: 0.8;
    transform: translateX(-50%) translateY(14px);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(18px);
  }
}

.full-screen-film-section .video-player-container {
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  border-radius: 24px;
  transform: translateY(20px) scale(0.10);
  transform-origin: center center;
  opacity: 0;
  will-change: transform, border-radius, opacity;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  background: transparent;
  transition: transform 0.12s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.12s ease, opacity 0.4s ease;
}

.full-screen-film-section .video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.full-screen-film-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-text-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 8vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(30, 20, 15, 0.88) 100%);
  color: var(--text-light);
  z-index: 5;
  pointer-events: none;
}

.film-text-overlay h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-bottom: 16px;
  color: #FFFFFF;
}

.film-text-overlay p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8;
  max-width: 900px;
  color: rgba(244, 229, 210, 0.9);
}

/* STICKY HORIZONTAL SCROLL GALLERY */
.horizontal-scroll-section {
  position: relative;
  height: 320vh;
  background-color: var(--bg-cream);
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.horizontal-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.horizontal-header-overlay {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.horizontal-gallery-track {
  display: flex;
  align-items: center;
  gap: 40px;
  direction: rtl;
  padding-right: 6vw;
  padding-left: 0;
  will-change: transform;
  transition: transform 0.08s cubic-bezier(0.25, 1, 0.5, 1);
}

.power-title-slide {
  flex: 0 0 520px;
  width: 520px;
  max-width: 520px;
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  padding: 0 20px;
}

.giant-power-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 10px;
  color: #111827;
  text-transform: uppercase;
  text-align: center;
}

.giant-power-title span {
  display: block;
}

.large-gallery-card {
  width: 76vw;
  max-width: 1100px;
  height: 68vh;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  background-color: var(--bg-dark);
  will-change: transform, opacity, filter;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.large-gallery-card:nth-child(even) {
  transform: scale(0.92) translateY(-45px);
}

.large-gallery-card:nth-child(odd) {
  transform: scale(0.92) translateY(45px);
}

.large-gallery-card.active-card {
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.45);
}

.large-card-img-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.large-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.large-gallery-card:hover .large-card-img-wrap img,
.large-gallery-card.active-card .large-card-img-wrap img {
  transform: scale(1.04);
}

.large-card-content {
  position: absolute;
  bottom: 28px;
  top: auto;
  left: 50%;
  right: auto;
  width: 88%;
  max-width: 820px;
  padding: 28px 36px;
  background: #ffffff;
  color: #111111;
  border-radius: 14px;
  border: 1px solid rgba(197, 160, 89, 0.4);
  z-index: 5;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  will-change: transform, opacity;
  transition: box-shadow 0.4s ease;
}

.large-gallery-card.active-card .large-card-content {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

[dir="rtl"] .large-card-content {
  direction: rtl;
  text-align: center;
}

[dir="ltr"] .large-card-content {
  direction: ltr;
  text-align: center;
}

.card-num-badge {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: #25D366;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.large-card-content h3 {
  font-family: var(--font-arabic), var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #000000 !important;
}

.large-card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* ==========================================================================
   START YOUR PROJECT IN RIYADH - CONTACT & FOOTER (MATCHING SCREENSHOT)
   ========================================================================== */
.bg-light-mint {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
  color: #111827;
  position: relative;
}

.contact-pill-badge {
  display: inline-block;
  padding: 8px 24px;
  background-color: #F3F4F6;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.contact-main-heading {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.contact-sub-text {
  font-size: 1.1rem;
  color: #a88b6d;
  margin-bottom: 45px;
}

.contact-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(45, 106, 79, 0.08);
  border: 1px solid rgba(45, 106, 79, 0.12);
}

.form-field-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
}

.form-field-group input,
.form-field-group select,
.form-field-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #F3F4F6;
  background-color: #f9fdfa;
  font-family: inherit;
  font-size: 0.95rem;
  color: #111827;
  transition: all 0.3s ease;
}

.form-field-group input:focus,
.form-field-group select:focus,
.form-field-group textarea:focus {
  outline: none;
  border-color: #a88b6d;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

.btn-submit-green {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background-color: #111827;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit-green:hover {
  background-color: #111827;
  transform: translateY(-2px);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid rgba(45, 106, 79, 0.1);
  box-shadow: 0 10px 30px rgba(45, 106, 79, 0.05);
}

.contact-icon-circle.green {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #F3F4F6;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #a88b6d;
}

.info-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}

.contact-social-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F3F4F6;
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.08);
  transition: all 0.3s ease;
}

.social-circle-btn:hover {
  background: #111827;
  color: #ffffff;
  transform: translateY(-3px);
}

.whatsapp-direct-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-top: 15px;
}

.whatsapp-direct-btn:hover {
  background-color: #1eb956;
  transform: scale(1.02);
}

/* Mint Gradient Footer & Main Footer */
.main-footer,
.main-footer-mint {
  background: #FFFFFF;
  padding: 60px 0 30px;
  color: #111827;
  border-top: 1px solid rgba(45, 106, 79, 0.15);
}

.footer-top-grid,
.footer-grid-four-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
  width: 100%;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555555;
  margin-top: 14px;
}

.brand-logo-leaf {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  max-width: 210px;
  max-height: 95px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

.brand-names h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
}

.brand-names span {
  font-size: 0.8rem;
  color: #a88b6d;
}

.brand-desc-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1b4332;
}

.footer-col h5 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li,
.footer-col ul li a,
.footer-contact-list li span {
  font-size: 0.9rem;
  color: #1b4332;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #111827;
  font-weight: 700;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(45, 106, 79, 0.15);
  padding-top: 25px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social-inline {
  display: flex;
  gap: 10px;
}

.footer-social-inline a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer-social-inline a:hover {
  transform: scale(1.1);
  background-color: #1b4332;
  color: #ffffff;
}

.footer-copyright-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 0.8rem;
  color: #a88b6d;
}

.seo-keywords {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Floating Action Buttons */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
}

.floating-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #111827;
  border: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.floating-top-btn:hover {
  transform: translateY(-4px);
  background-color: #111827;
  color: #ffffff;
}

@media (max-width: 992px) {
  .contact-two-col-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-grid,
  .footer-grid-four-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {

  .footer-top-grid,
  .footer-grid-four-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* SMALL INTERSTITIAL TEXT CARD BETWEEN IMAGE CARDS */
.small-gallery-card {
  width: 320px;
  max-width: 340px;
  height: 60vh;
  max-height: 480px;
  flex-shrink: 0;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  background: rgba(97, 69, 47, 0.92);
  backdrop-filter: blur(12px);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.small-gallery-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--accent-gold);
}

.small-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.small-gallery-card h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.3;
}

.small-gallery-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light-dim);
}

@media (max-width: 900px) {
  .large-gallery-card {
    width: 88vw;
    height: 60vh;
  }

  .large-card-content {
    padding: 30px 32px;
  }

  .large-card-content h3 {
    font-size: 1.75rem;
  }
}

/* ==========================================================================
   GLOBAL THEME OVERRIDES (WHITE BACKGROUND)
   ========================================================================== */
body,
html {
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
  color: #111827;
  margin: 0 !important;
  padding: 0 !important;
}

.scroll-zoom-film-section {
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
}

.hero-section,
.hero-bg-wrapper,
.hero-video,
#hero-ambient-video,
#main-cinematic-video {
  background: transparent !important;
  background-color: transparent !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  top: 0 !important;
}

/* MAIN SECTION CARDS (NO BACKGROUND BOXES - CLEAN TEXT ONLY) */
.large-card-content,
.power-title-slide,
.contact-form-card,
.contact-info-card,
.accordion-item,
.accordion-header,
.accordion-content,
.hotel-card,
.small-gallery-card,
.inquire-modal-card {
  background-color: transparent !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  color: #111827 !important;
}

.giant-power-title,
.large-card-content h3,
.large-card-content p,
.contact-main-heading,
.brand-names h4,
.footer-col h5,
.accordion-header h3 {
  color: #111827 !important;
}

/* ==========================================================================
   THRIVING WORLD VIDEO SECTION (ABOVE HOSPITALITY & RESORTS)
   ========================================================================== */
.thriving-world-video-section {
  position: relative;
  width: 100%;
  height: clamp(450px, 65vh, 720px);
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-color: #050505;
}

.thriving-video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.thriving-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: none !important;
}

.thriving-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.55) 100%);
  color: #ffffff;
  text-align: center;
  padding: 20px;
  pointer-events: none;
  direction: rtl;
}

.thriving-badge {
  display: inline-block;
  font-family: var(--font-arabic), var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold) !important;
  margin-bottom: 16px;
  background: rgba(197, 160, 89, 0.15) !important;
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  backdrop-filter: blur(8px);
}

.thriving-video-overlay h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: 4px;
  color: #ffffff !important;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   MASTERPLAN BLUEPRINT SHOWCASE STYLING
   ========================================================================== */
.masterplan-blueprint-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, #0b121e 0%, #111827 50%, #0d1624 100%);
  overflow: hidden;
}

.masterplan-blueprint-section .section-subtitle {
  color: #61452F !important;
}

.masterplan-blueprint-section .section-title {
  margin-bottom: 12px;
  color: #61452F !important;
}

.masterplan-blueprint-section .section-desc {
  margin: 0 auto 36px auto;
  color: #61452F !important;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

/* Phase Control Pills */
.blueprint-phase-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.bp-step-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.bp-phase-btn {
  background: rgba(240, 244, 241, 0.92);
  border: 1.5px solid #1b4332;
  color: #1b4332;
  padding: 8px 20px;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 10;
  margin-bottom: -18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.bp-phase-btn .phase-badge {
  background: rgba(27, 67, 50, 0.15);
  color: #1b4332;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
}

.bp-phase-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #1b4332;
  color: #1b4332;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.bp-phase-btn.active {
  background: #1e4635;
  color: #ffffff;
  border-color: #1e4635;
  box-shadow: 0 8px 25px rgba(30, 70, 53, 0.45);
}

.bp-phase-btn.active .phase-badge {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

/* 3-Video Showcase Grid (Left, Center, Right Layout) */
.blueprint-cards-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 120px 20px;
}

.blueprint-video-card {
  flex: 0 0 320px;
  width: 320px;
  max-width: 320px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.7), 0 0 30px rgba(27, 67, 50, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: #000000;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  transform-origin: top center;
}

/* Hover effects */
.blueprint-video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 160, 89, 0.6);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.85), 0 0 40px rgba(197, 160, 89, 0.25);
}

@media (max-width: 1080px) {
  .blueprint-cards-grid {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding-bottom: 40px;
  }

  .blueprint-video-card {
    max-width: 340px;
    margin-top: 0 !important;
    transform: none !important;
  }
}

.blueprint-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 80vh;
  margin: 0 auto;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  overflow: hidden;
}

.blueprint-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 32px;
}

/* Floating Bottom Control Bar */
.bp-video-controls {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 5px 10px;
  background: rgba(18, 24, 20, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.bp-control-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}

.bp-control-btn svg {
  width: 13px !important;
  height: 13px !important;
}

.bp-control-btn:hover {
  color: #d4af37;
  transform: scale(1.12);
  background: rgba(255, 255, 255, 0.12);
}

.bp-seek-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.bp-seek-bar-filled {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #d4af37 0%, #f3e5ab 100%);
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* ==========================================================================
   REMOVE ALL TEXT AND OVERLAY BOXES FROM ALL IMAGES ACROSS THE SITE
   ========================================================================== */
.large-card-content,
.accordion-content,
.accordion-overlay,
.gallery-caption,
.bp-overlay-badge,
.residence-badge,
.card-num-badge {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.large-gallery-card .large-card-img-wrap {
  height: 100% !important;
  width: 100% !important;
  border-radius: 28px !important;
  overflow: hidden !important;
}

.large-gallery-card .large-card-img-wrap img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
  border-radius: 28px !important;
}

.accordion-card {
  border-radius: 28px !important;
}

/* ==========================================================================
   PORTRAIT / VERTICAL MODE GALLERY STYLING (وضع رأسي)
   ========================================================================== */
.gallery-carousel-wrapper {
  max-width: 680px;
  margin: 40px auto 60px;
  position: relative;
}

.gallery-viewport {
  width: 100%;
  max-width: 650px;
  height: 720px;
  /* Vertical Portrait Mode Aspect Ratio */
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.35);
  border: none;
  background-color: #F3FAF6;
}

.gallery-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(0.95);
  display: block !important;
}

.gallery-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1);
  z-index: 2;
}

.gallery-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: 24px;
}

.gallery-caption {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Overlapping Side-by-Side Horizontal Thumbnails Row (بدون إطار أبيض) */
.gallery-thumbs-row {
  position: absolute;
  bottom: -36px;
  /* Exactly half inside, half outside across the bottom border */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 25;
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 16px;
  border-radius: 40px;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  max-width: 94%;
  margin: 0;
}

.gallery-thumb-item {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.75;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #F3FAF6;
  flex-shrink: 0;
}

.gallery-thumb-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: 11px;
  transition: transform 0.3s ease;
}

.gallery-thumb-item:hover {
  opacity: 0.95;
  transform: translateY(-3px);
  border-color: #1b4332;
}

.gallery-thumb-item:hover img {
  transform: scale(1.08);
}

.gallery-thumb-item.active {
  opacity: 1;
  border-color: #1b4332;
  /* Rich dark green active border */
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.45);
  outline: none;
}

@media (max-width: 576px) {
  .gallery-viewport {
    height: 520px;
    max-width: 90vw;
  }

  .gallery-thumbs-row {
    bottom: -28px;
    padding: 6px 12px;
    gap: 8px;
  }

  .gallery-thumb-item {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }
}

.large-gallery-card .large-card-img-wrap {
  height: 100% !important;
  width: 100% !important;
  border-radius: 28px !important;
  overflow: hidden !important;
}

.large-gallery-card .large-card-img-wrap img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
  border-radius: 28px !important;
}

.accordion-card {
  border-radius: 28px !important;
}

/* ==========================================================================
   ACACIA SKY AGRICULTURE & LANDSCAPING SECTION STYLING
   ========================================================================== */
.acacia-about-section {
  padding: 20px 0 100px;
  margin-top: 0 !important;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.acacia-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

@media (max-width: 1199px) {
  .acacia-about-grid {
    gap: 65px;
  }
}

@media (max-width: 991px) {
  .acacia-about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

/* Image Column & Overlapping Sub-Image */
.acacia-img-col {
  position: relative;
  z-index: 1;
}

.acacia-main-img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  padding: 30px 0;
  margin: 0 auto;
}

/* Smooth Scroll-Driven Circle Scale Transition */
.acacia-third-img-wrap,
.acacia-img-inner,
.acacia-sub-img-wrap {
  will-change: transform;
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center center;
}

/* 1. Large Circle (Shifted Top-Right & Upwards) */
.acacia-third-img-wrap {
  position: absolute;
  top: -95px;
  right: -60px;
  left: auto;
  width: 440px;
  height: 440px;
  max-width: 95%;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.16);
  z-index: 1;
}

[dir="rtl"] .acacia-third-img-wrap {
  right: -85px;
  left: auto;
  top: -95px;
}

.acacia-third-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.05);
}

.acacia-third-circle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(27, 67, 50, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

/* 2. Medium Center Main Circle (380px) */
.acacia-img-inner {
  position: relative;
  width: 380px;
  height: 380px;
  max-width: 90%;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  z-index: 2;
  margin: 0 auto;
}

.acacia-main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none !important;
  /* Keep outer image frame strictly still */
}

/* Dynamic Ambient Day & Night Cycle Layer */
.day-night-cycle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 24px;
  animation: dayNightCycle 24s ease-in-out infinite;
  mix-blend-mode: color-burn;
}

@keyframes dayNightCycle {

  0%,
  100% {
    /* Sunset / Warm Golden Hour */
    background: linear-gradient(135deg, rgba(255, 140, 50, 0.12) 0%, rgba(255, 200, 100, 0.04) 50%, transparent 100%);
    opacity: 0.6;
  }

  25% {
    /* Twilight / Deep Blue Hour */
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.35) 0%, rgba(15, 23, 42, 0.28) 60%, rgba(217, 119, 6, 0.12) 100%);
    opacity: 0.85;
  }

  50% {
    /* Night Moonlight Atmosphere & Glowing Villa Lights */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.48) 0%, rgba(30, 41, 59, 0.4) 50%, rgba(251, 191, 36, 0.2) 100%);
    opacity: 0.95;
  }

  75% {
    /* Dawn / Soft Warm Sunrise */
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.22) 0%, rgba(253, 186, 116, 0.15) 50%, transparent 100%);
    opacity: 0.7;
  }
}

/* Tree Foliage Internal Wind Flutter Layer */
.tree-leaves-wind-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at 20% 30%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 40%), radial-gradient(circle at 80% 40%,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 35%);
  animation: leavesFoliageFlutter 5s ease-in-out infinite alternate;
  mix-blend-mode: overlay;
  border-radius: 24px;
}

@keyframes leavesFoliageFlutter {
  0% {
    opacity: 0.3;
    transform: scale(1) rotate(0deg);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.02) rotate(0.5deg);
  }

  100% {
    opacity: 0.4;
    transform: scale(0.99) rotate(-0.5deg);
  }
}

/* Moving Sunset Clouds in the Sky */
.sky-clouds-drift {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(90deg,
      rgba(255, 180, 100, 0.08) 0%,
      rgba(255, 255, 255, 0.22) 35%,
      rgba(140, 180, 240, 0.14) 70%,
      rgba(255, 180, 100, 0.08) 100%);
  background-size: 200% 100%;
  animation: skyCloudsMove 18s linear infinite;
  pointer-events: none;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  mix-blend-mode: overlay;
}

@keyframes skyCloudsMove {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

/* Shimmering Swimming Pool Water Ripple */
.water-pool-shimmer {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 55%;
  background: radial-gradient(ellipse at bottom right,
      rgba(255, 255, 255, 0.38) 0%,
      rgba(70, 160, 240, 0.22) 40%,
      transparent 75%);
  animation: waterRipplePulse 4.5s ease-in-out infinite alternate;
  pointer-events: none;
  mix-blend-mode: soft-light;
  border-bottom-right-radius: 24px;
}

@keyframes waterRipplePulse {
  0% {
    opacity: 0.35;
    transform: scale(0.98) translateY(0);
    filter: blur(1px);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.04) translateY(-3px);
    filter: blur(0px);
  }

  100% {
    opacity: 0.4;
    transform: scale(0.99) translateY(2px);
    filter: blur(1.5px);
  }
}

/* Breeze Particles Floating Across Trees & Water */
.wind-breeze-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px;
}

.wind-breeze-particles span {
  position: absolute;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  height: 2px;
  border-radius: 50%;
  filter: blur(1px);
  animation: breezeFly 7s linear infinite;
  opacity: 0.6;
}

.wind-breeze-particles span:nth-child(1) {
  top: 18%;
  right: -20%;
  width: 130px;
  animation-duration: 6s;
  animation-delay: 0s;
}

.wind-breeze-particles span:nth-child(2) {
  top: 42%;
  right: -30%;
  width: 190px;
  animation-duration: 8.5s;
  animation-delay: 1.5s;
}

.wind-breeze-particles span:nth-child(3) {
  top: 68%;
  right: -25%;
  width: 150px;
  animation-duration: 7.2s;
  animation-delay: 3s;
}

.wind-breeze-particles span:nth-child(4) {
  top: 32%;
  right: -15%;
  width: 100px;
  animation-duration: 5.5s;
  animation-delay: 4.2s;
}

@keyframes breezeFly {
  0% {
    transform: translateX(0) translateY(0) scaleX(0.8);
    opacity: 0;
  }

  20% {
    opacity: 0.7;
  }

  80% {
    opacity: 0.7;
  }

  100% {
    transform: translateX(-520px) translateY(-25px) scaleX(1.3);
    opacity: 0;
  }
}

/* 3. Small Inner Circle (Flipped to opposite diagonal side relative to top circle) */
.acacia-sub-img-wrap {
  position: absolute;
  bottom: -15px;
  right: -15px;
  left: auto;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

[dir="rtl"] .acacia-sub-img-wrap {
  left: -15px;
  right: auto;
  bottom: -15px;
}

.acacia-sub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text Content Column */
.acacia-info-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  position: relative;
  z-index: 5;
}

.acacia-badge-wrap {
  margin-bottom: 16px;
}

.acacia-badge {
  background: rgba(45, 106, 79, 0.1);
  color: #1b4332;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 30px;
  display: inline-block;
  border: 1px solid rgba(45, 106, 79, 0.2);
}

.acacia-title {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.25;
  color: #0b121e;
  margin-bottom: 20px;
}

.text-green-accent {
  color: #1b4332;
}

.acacia-subdesc {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1b4332;
  line-height: 1.7;
  margin-bottom: 14px;
}

.acacia-paragraph {
  font-size: 0.98rem;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 30px;
}

/* 2x2 Feature Checkmark Grid */
.acacia-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  width: 100%;
}

@media (max-width: 576px) {
  .acacia-features-grid {
    grid-template-columns: 1fr;
  }
}

.acacia-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.acacia-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.12);
  color: #1b4332;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(45, 106, 79, 0.3);
}

.acacia-feature-text {
  font-size: 0.90rem;
  font-weight: 800;
  color: #1b4332;
  white-space: nowrap;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (CALL & WHATSAPP & SCROLL TOP)
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 9999;
}

[dir="rtl"] .floating-actions-container {
  right: 25px;
  left: auto;
}

.floating-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
}

.floating-btn:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.38);
  color: #ffffff;
}

.floating-btn:active {
  transform: scale(0.94);
}

/* Direct Call Button Styling */
.floating-call-btn {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.floating-call-btn .floating-btn-pulse {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid #2d6a4f;
  animation: callPulse 2.2s infinite;
  pointer-events: none;
}

@keyframes callPulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* WhatsApp Chat Button Styling */
.floating-wa-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.floating-wa-btn .floating-btn-pulse {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.2s infinite 0.6s;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* Tooltip Badge / Label on Hover */
.floating-btn-label {
  position: absolute;
  right: 68px;
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

[dir="rtl"] .floating-btn-label {
  right: 68px;
  left: auto;
  transform: translateX(-12px);
}

.floating-btn:hover .floating-btn-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Scroll To Top Button */
.floating-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 67, 50, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[dir="rtl"] .floating-top-btn {
  right: 25px;
  left: auto;
}

.floating-top-btn:hover {
  transform: scale(1.12) translateY(-3px);
  background: #1b4332;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .floating-actions-container {
    bottom: 20px;
    right: 18px;
    gap: 10px;
  }

  [dir="rtl"] .floating-actions-container {
    right: 18px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .floating-top-btn {
    width: 42px;
    height: 42px;
  }

  .floating-btn-label {
    display: none;
  }
}

/* ==========================================================================
   LUXURY DARK EMERALD GREEN FOOTER THEME
   ========================================================================== */
.main-footer {
  background: linear-gradient(180deg, #0d2818 0%, #1b4332 50%, #0d2818 100%) !important;
  color: #ffffff !important;
  padding: 85px 0 45px !important;
  border-top: 3px solid #C5A059 !important;
  position: relative;
  z-index: 10;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.2);
}

.main-footer .footer-top-grid,
.main-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.main-footer .footer-brand-desc {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.96rem;
  line-height: 1.8;
  margin-top: 18px;
  max-width: 360px;
}

.main-footer h5 {
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4) !important;
  padding-bottom: 8px;
  display: inline-block;
}

.main-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main-footer ul li,
.main-footer ul li a,
.main-footer .footer-contact-list li,
.main-footer .footer-contact-list a,
.main-footer .footer-contact-list span,
.main-footer .footer-bottom-bar a,
.main-footer .footer-copyright-text {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.main-footer ul li a:hover,
.main-footer .footer-contact-list a:hover {
  color: #C5A059 !important;
  transform: translateX(-5px);
}

.main-footer .footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
  padding-top: 30px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-footer .footer-social-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-footer .footer-social-inline a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-footer .footer-social-inline a:hover {
  background: #C5A059 !important;
  color: #1b4332 !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
}

.main-footer .footer-copyright-text,
.main-footer .footer-copyright-text span {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.88rem;
}

.main-footer .footer-copyright-text .seo-keywords {
  color: rgba(197, 160, 89, 0.85) !important;
  font-size: 0.82rem;
  margin-top: 4px;
  display: block;
}

.main-footer .footer-logo-img {
  filter: brightness(0) invert(1) !important;
  max-width: 170px;
  height: auto;
}

/* ==========================================================================
   SMART IRRIGATION SECTION DISPLAY & OVERLAY STYLING
   ========================================================================== */
.smart-irrigation-section .accordion-content,
.smart-irrigation-section .accordion-overlay,
.smart-irrigation-section .residence-badge {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.smart-irrigation-section .accordion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(13, 40, 24, 0.88) 100%);
  pointer-events: none;
}

.smart-irrigation-section .accordion-content {
  position: absolute;
  bottom: 30px;
  right: 30px;
  left: 30px;
  z-index: 5;
  color: #ffffff;
  text-align: right;
}

.smart-irrigation-section .residence-badge {
  display: inline-block !important;
  background: rgba(197, 160, 89, 0.95);
  color: #0d2818;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.smart-irrigation-section .accordion-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.smart-irrigation-section .accordion-content p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 90%;
}

.smart-irrigation-section .btn-gold-sm {
  display: inline-block;
  background: #1b4332;
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 25px;
  border: 1px solid #C5A059;
  text-decoration: none;
  transition: all 0.3s ease;
}

.smart-irrigation-section .btn-gold-sm:hover {
  background: #C5A059;
  color: #1b4332 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

/* ==========================================================================
   MINIMALIST NO-BOX CONTACT SECTION (TEXT & ICONS ONLY)
   ========================================================================== */
.contact-info-col {
  gap: 12px !important;
}

.contact-info-card {
  padding: 6px 0 !important;
  gap: 14px !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  transition: transform 0.3s ease !important;
}

.contact-info-card:hover {
  background-color: transparent !important;
  background: transparent !important;
  transform: translateX(-4px) !important;
  box-shadow: none !important;
}

.contact-icon-circle.green {
  width: 40px !important;
  height: 40px !important;
  background-color: rgba(27, 67, 50, 0.08) !important;
  border: 1px solid rgba(27, 67, 50, 0.15) !important;
  border-radius: 50% !important;
}

.contact-icon-circle.green svg {
  width: 18px !important;
  height: 18px !important;
}

.contact-info-text {
  gap: 2px !important;
}

.info-label {
  font-size: 0.76rem !important;
  letter-spacing: 0.3px !important;
  color: #a88b6d !important;
}

.info-val {
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.contact-form-card {
  padding: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
}

.form-field-group {
  gap: 6px !important;
  margin-bottom: 14px !important;
}

.form-field-group label {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.form-field-group input,
.form-field-group select,
.form-field-group textarea {
  padding: 12px 16px !important;
  font-size: 0.9rem !important;
  border-radius: 10px !important;
  background-color: #ffffff !important;
  background: #ffffff !important;
  border: 1.5px solid rgba(27, 67, 50, 0.16) !important;
  color: #111827 !important;
}

.form-field-group input:focus,
.form-field-group select:focus,
.form-field-group textarea:focus {
  border-color: #1b4332 !important;
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1) !important;
}

.btn-submit-green {
  padding: 14px 22px !important;
  font-size: 0.95rem !important;
  border-radius: 10px !important;
  margin-top: 8px !important;
  background-color: #1b4332 !important;
}

.btn-submit-green:hover {
  background-color: #111827 !important;
}

align-items: center;
justify-content: center;
background: rgba(13, 40, 24, 0.85);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
padding: 8px 16px;
border-radius: 50px;
border: 1px solid rgba(197, 160, 89, 0.45);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
z-index: 20;
max-width: 92%;
overflow-x: auto;
}

.gallery-thumb-item {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.65;
  flex-shrink: 0;
}

.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb-item:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.gallery-thumb-item.active {
  opacity: 1;
  border-color: #C5A059 !important;
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.6);
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  .main-header {
    padding: 10px 14px !important;
  }

  .header-actions {
    gap: 6px !important;
  }

  .header-action-btn {
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
  }

  .section-padding {
    padding: 45px 0 !important;
  }

  .acacia-about-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .acacia-main-img-wrap {
    width: 100% !important;
    max-width: 320px !important;
    height: 320px !important;
    margin: 0 auto !important;
  }

  .acacia-img-inner {
    width: 190px !important;
    height: 190px !important;
  }

  .acacia-sub-img-wrap {
    width: 105px !important;
    height: 105px !important;
  }

  .acacia-third-img-wrap {
    width: 125px !important;
    height: 125px !important;
  }

  .gallery-3slide-viewport {
    height: 380px !important;
  }

  .gallery-3slide-card {
    width: 82vw !important;
    height: 320px !important;
  }

  .gallery-3slide-card.prev {
    transform: translateX(95%) scale(0.75) !important;
    opacity: 0.3 !important;
  }

  .gallery-3slide-card.next {
    transform: translateX(-95%) scale(0.75) !important;
    opacity: 0.3 !important;
  }

  .news-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .news-img-wrap {
    height: 240px !important;
  }

  .full-bleed-ticker {
    padding: 15px 0 !important;
  }

  .footer-top-grid,
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .footer-bottom-bar {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
  }

  .footer-legal-links {
    justify-content: center !important;
  }
}

/* ==========================================================================
   CONTACT SECTION BACKGROUND VIDEO STYLING
   ========================================================================== */
.contact-video-bg-section {
  position: relative;
  overflow: hidden;
  background: #0e1911 !important;
}

.contact-video-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.contact-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0.85) contrast(1.1);
}

.contact-video-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 25, 17, 0.75) 0%, rgba(20, 38, 24, 0.82) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.contact-video-bg-section .relative-z {
  position: relative;
  z-index: 2;
}

.contact-video-bg-section .contact-main-heading {
  color: #ffffff !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.contact-video-bg-section .contact-sub-text {
  color: rgba(255, 255, 255, 0.85) !important;
}

.contact-video-bg-section .contact-pill-badge {
  background: rgba(46, 117, 72, 0.35) !important;
  border: 1px solid rgba(92, 219, 142, 0.5) !important;
  color: #5cdb8e !important;
}

.contact-video-bg-section .contact-form-card,
.contact-video-bg-section .contact-info-card {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
}

/* ==========================================================================
   SECTION SCALE TO 80%
   ========================================================================== */
.indoor-ai-section {
  padding: 60px 0 !important;
}

.indoor-ai-section .container {
  transform: scale(0.8);
  transform-origin: center center;
}

/* ==========================================================================
   MOBILE RESPONSIVE FIXES FOR VIDEO 2 & HORIZONTAL GALLERY (ELIMINATE EMPTY GAPS)
   ========================================================================== */
@media (max-width: 768px) {

  /* Eliminate large vertical empty gap under Video 2 on mobile phones */
  .scroll-zoom-film-section {
    height: 120vh !important;
    min-height: 120vh !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .film-sticky-wrapper {
    height: 100vh !important;
  }

  .video-player-container-zoom {
    height: 60vh !important;
    max-height: 450px !important;
    border-radius: 16px !important;
  }

  .our-story-badge-header {
    top: 25px !important;
    padding: 0 12px !important;
  }

  /* Responsive Touch Carousel for Horizontal Scroll Section on Mobile (No 420vh gap) */
  .horizontal-scroll-section {
    height: auto !important;
    min-height: auto !important;
    padding: 30px 0 10px !important;
    margin-bottom: 0 !important;
    background-color: var(--bg-cream) !important;
  }

  .acacia-about-section {
    padding-top: 15px !important;
    margin-top: 0 !important;
  }

  .horizontal-sticky-wrapper {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    display: block !important;
    padding: 10px 16px 20px !important;
    scrollbar-width: none;
  }

  .horizontal-sticky-wrapper::-webkit-scrollbar {
    display: none;
  }

  .horizontal-gallery-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    transform: none !important;
    width: max-content !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .power-title-slide {
    display: flex !important;
    flex: 0 0 240px !important;
    width: 240px !important;
    height: 340px !important;
    max-width: 240px !important;
    border-radius: 16px !important;
  }

  .giant-power-title {
    font-size: 2.2rem !important;
    letter-spacing: 4px !important;
  }

  .large-gallery-card {
    width: 82vw !important;
    max-width: 320px !important;
    height: 380px !important;
    transform: none !important;
    margin: 0 !important;
    border-radius: 16px !important;
  }

  .large-gallery-card:nth-child(even),
  .large-gallery-card:nth-child(odd) {
    transform: none !important;
  }

  .large-card-content {
    padding: 16px 18px !important;
    bottom: 14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    border-radius: 12px !important;
  }

  .large-card-content h3 {
    font-size: 1.1rem !important;
    margin-bottom: 4px !important;
  }

  .large-card-content p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
}

/* ==========================================================================
   ENHANCED EXTRA TALL PORTRAIT MOBILE IMAGES (تكبير المقاسات الطولية للصور)
   ========================================================================== */
@media (max-width: 768px) {

  /* 1. Water Sustainability Cards -> Extra Tall Vertical Cards */
  .smart-irrigation-section .accordion-container {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    gap: 24px !important;
  }

  .smart-irrigation-section .accordion-card {
    flex: none !important;
    width: 100% !important;
    height: 520px !important;
    aspect-ratio: 9 / 16 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .smart-irrigation-section .accordion-content {
    bottom: 24px !important;
    left: 20px !important;
    right: 20px !important;
  }

  .smart-irrigation-section .accordion-content p,
  .smart-irrigation-section .accordion-content .btn-gold-sm {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* 2. About Acacia Sky Layered Images -> Extra Tall Vertical Frame */
  .acacia-main-img-wrap {
    min-height: 520px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .acacia-img-inner {
    width: 310px !important;
    height: 480px !important;
    border-radius: 28px !important;
  }

  .acacia-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* 3. Interactive Gallery Showcase Carousel Slides -> Extra Tall Portrait */
  .gallery-viewport {
    height: 640px !important;
    max-width: 92vw !important;
    aspect-ratio: 3 / 4 !important;
    border-radius: 26px !important;
    overflow: hidden !important;
  }

  .gallery-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  /* 4. Trees & Plants Catalog Cards -> Extra Tall Portrait Images */
  .news-img-wrap {
    height: 480px !important;
    aspect-ratio: 3 / 4 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .news-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* 5. Success Partners / Hotels Cards -> Tall Vertical Cards */
  .hotel-card {
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .hotel-img-col {
    height: 460px !important;
    aspect-ratio: 9 / 16 !important;
  }

  .hotel-img-col img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* ==========================================================================
   FULL-WIDTH CLEAR VIDEO SECTION FOR GALLERY (قسم ملاذ بصري)
   ========================================================================== */
.gallery-video-bg-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: 80px 0 100px !important;
  background: transparent !important;
}

.gallery-video-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.gallery-bg-video {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.15);
  filter: none !important;
  opacity: 1 !important;
}

.gallery-video-bg-overlay {
  display: none !important;
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.gallery-video-bg-section .relative-z {
  position: relative;
  z-index: 2;
}

.gallery-video-bg-section .light-subtitle {
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

.gallery-video-bg-section .light-title {
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95);
}

/* ==========================================================================
   FULL LTR (ENGLISH) LAYOUT & ALIGNMENT ADAPTATION RULES
   ========================================================================== */
html[dir="ltr"] body {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  text-align: left;
}

html[dir="ltr"] .acacia-info-col,
html[dir="ltr"] .acacia-badge-wrap,
html[dir="ltr"] .acacia-title,
html[dir="ltr"] .acacia-subdesc,
html[dir="ltr"] .acacia-paragraph,
html[dir="ltr"] .acacia-features-grid,
html[dir="ltr"] .news-body,
html[dir="ltr"] .contact-form-card,
html[dir="ltr"] .contact-info-col,
html[dir="ltr"] .contact-info-text,
html[dir="ltr"] .footer-col,
html[dir="ltr"] .footer-brand-col,
html[dir="ltr"] .modal-card,
html[dir="ltr"] .modal-header {
  text-align: left !important;
}

html[dir="ltr"] .acacia-feature-item {
  flex-direction: row;
  justify-content: flex-start;
  text-align: left !important;
}

html[dir="ltr"] .acacia-check-icon {
  margin-left: 0 !important;
  margin-right: 12px !important;
}

html[dir="ltr"] .news-card {
  text-align: left !important;
}

html[dir="ltr"] .news-body {
  text-align: left !important;
}

html[dir="ltr"] .news-date {
  text-align: left !important;
}

html[dir="ltr"] .news-link {
  text-align: left !important;
}

html[dir="ltr"] .accordion-card {
  text-align: left !important;
}

html[dir="ltr"] .accordion-content {
  left: 30px !important;
  right: 30px !important;
  text-align: left !important;
}

html[dir="ltr"] .section-header.text-center,
html[dir="ltr"] .stats-counter-wrapper {
  text-align: center !important;
}

/* Internal text & placeholder color explicitly set to black for high visibility */
input,
select,
textarea,
.modal-card input,
.modal-card select,
.modal-card textarea,
.modal-form input,
.modal-form select,
.modal-form textarea,
.form-group input,
.form-group select,
.form-group textarea,
.form-field-group input,
.form-field-group select,
.form-field-group textarea {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

input::placeholder,
textarea::placeholder,
select::placeholder,
.modal-card input::placeholder,
.modal-form input::placeholder,
.form-group input::placeholder,
.form-field-group input::placeholder {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  opacity: 0.75 !important;
}

select option {
  color: #000000 !important;
  background-color: #ffffff !important;
}

html[dir="ltr"] .hero-welcome-badge,
html[dir="ltr"] .hero-main-title,
html[dir="ltr"] .hero-subtitle {
  text-align: center !important;
}

html[dir="ltr"] .hero-actions {
  justify-content: center !important;
}

html[dir="ltr"] .form-field-group label {
  text-align: left !important;
  display: block;
}

html[dir="ltr"] .footer-top-grid {
  text-align: left !important;
}

html[dir="ltr"] .footer-legal-links {
  justify-content: flex-start !important;
}