:root {
  --sayah-teal-dark: #083139;
  --sayah-teal-darker: #04262b;
  --sayah-linen: #fbf1e8;
  --sayah-linen-dark: #c9beb5;
  --sayah-bronze: #bf9164;
  --sayah-bronze-dark: #6d523c;
  --sayah-navy: #11083a;
  --sayah-navy-darker: #080328;
  --sayah-ocean-teal: #6aaeb5;
  --sayah-ocean-dark: #2c4c4f;
  --sayah-indigo: #7069b5;
  --sayah-indigo-dark: #4f4e82;
}

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



body {
  font-family: 'Alexandria', sans-serif;
  background: var(--sayah-teal-dark);
  overflow-x: hidden;
}

/* ==========================================================
   HEADER C — Split Door (Variation C)
   ========================================================== */
.header-c {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  direction: rtl;
  visibility: hidden;
  opacity: 0;
  transition: none;
  will-change: transform;
  transform: translateZ(0);
}

.header-c.visible {
  visibility: visible;
  opacity: 1;
}
.header-c.solid {
  background: var(--sayah-teal-dark);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.header-c-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-c-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 150px;
  transform: translateZ(0);
}
.header-c-logo .nav-logo-slot {
  width: 55px;
  height: auto;
  transform: translateZ(0);
}
.header-c-logo .nav-logo-slot svg {
  width: 100%;
  height: auto;
  display: block;
}
.header-c-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.header-c-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header-c-nav a {
  position: relative;
  color: var(--sayah-linen);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.85;
  padding-bottom: 4px;
  transition: opacity 0.35s ease, color 0.35s ease;
}
.header-c-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--sayah-bronze);
  transition: width 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.header-c-nav a:hover,
.header-c-nav a.active {
  opacity: 1;
  color: var(--sayah-bronze);
}
.header-c-nav a.active::after {
  width: 100%;
}

.header-c-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-c-actions .btn-sayah-primary {
  padding: 8px 22px;
  font-size: 0.8rem;
}

/* ---- Burger button ---- */
.burger-c-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.burger-c-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--sayah-linen);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.68,-0.55,0.27,1.55),
              opacity 0.3s ease;
  transform-origin: center;
}

/* ---- Split Door Overlay ---- */
.burger-c-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  direction: rtl;
  visibility: hidden;
  overflow: hidden;
  clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
  background: var(--sayah-teal-darker);
}
.burger-c-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}
.burger-c-pattern svg {
  width: 100%;
  height: 100%;
}
.burger-c-pattern path {
  stroke: var(--sayah-ocean-teal);
  stroke-width: 2;
  fill: none;
}

.burger-c-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2.5rem;
}
.burger-c-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.burger-c-nav a {
  color: var(--sayah-linen);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: color 0.3s ease;
}
.burger-c-nav a:hover {
  color: var(--sayah-bronze);
}
.burger-c-nav a:nth-child(odd) {
  transform: translateX(-60px);
}
.burger-c-nav a:nth-child(even) {
  transform: translateX(60px);
}

.burger-c-actions {
  opacity: 0;
  transform: translateY(20px);
}
.burger-c-actions .btn-sayah-primary {
  font-size: 1rem;
  padding: 12px 36px;
}

/* ---- Side door decorative lines ---- */
.burger-c-door-lines {
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(191,145,100,0.15) 50%, transparent 100%);
  z-index: 0;
  opacity: 0;
}
.burger-c-door-lines.left {
  left: 20%;
}
.burger-c-door-lines.right {
  right: 20%;
}

.sayah-hero-root {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--sayah-teal-dark);
  direction: rtl;
  visibility: hidden;
  opacity: 0;
}

.sayah-hero-root.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-pin-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform, opacity;
}

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

.hero-sky-bg { z-index: 1; }
.hero-clouds-container { position: absolute; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.hero-architecture-wrapper { z-index: 3; }

.main-building-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-building-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}
.hero-fog-bottom { z-index: 4; pointer-events: none; mix-blend-mode: screen; opacity: 0.1; }
.hero-interactive-content {
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cloud-item {
  position: absolute;
  width: 40%;
  height: auto;
  bottom: 10%;
  will-change: transform;
}
.cloud-left { left: -10%; }
.cloud-right { right: -10%; }

.logo-stroke-overlay {
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.logo-stroke-overlay svg {
  display: block;
}

.mask-image-group {
  opacity: 0;
  visibility: hidden;
}

.stroke-svg {
  width: min(80%, 900px);
  height: auto;
  max-height: 70vh;
}

.stroke-path {
  fill: none;
  stroke: var(--sayah-linen);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.hero-title-reveal h1 {
  font-family: 'Alexandria', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--sayah-teal-dark);
  margin-bottom: 24px;
}

.reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  will-change: transform;
}

.hero-subtitle {
  font-family: 'Alexandria', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: var(--sayah-teal-dark);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-sayah-primary {
  background: linear-gradient(135deg, var(--sayah-bronze), var(--sayah-bronze-dark));
  color: var(--sayah-linen);
  padding: 16px 40px;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(191, 145, 100, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-sayah-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.6s ease;
  pointer-events: none;
}

.btn-sayah-primary:hover::before {
  background-position: 0 0;
}

.sayah-vision-section {
  position: relative;
  min-height: 100vh;
  background: var(--sayah-linen);
  direction: rtl;
  overflow: hidden;
  margin-top: -30vh;
}

.vision-split {
  display: flex;
  flex-direction: row;
  direction: ltr;
  min-height: 100vh;
}

/* ===== Left: Image Panel ===== */
.vision-image-panel {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  direction: rtl;
}

.vision-image-panel .img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.vision-image-panel .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.vision-image-panel .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    var(--sayah-linen) 0%,
    transparent 35%
  );
  z-index: 2;
  pointer-events: none;
}

.vision-image-panel .img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--sayah-linen), transparent);
  z-index: 2;
  pointer-events: none;
}

.vision-image-panel .img-edge-line {
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 2px;
  background: var(--sayah-bronze);
  opacity: 0.3;
  z-index: 3;
  pointer-events: none;
}

/* ===== Right: Content Panel ===== */
.vision-content-panel {
  flex: 0 0 50%;
  direction: rtl;
  display: flex;
  align-items: center;
  padding: 80px 60px 80px 50px;
  position: relative;
  overflow: hidden;
}

.vision-inner {
  max-width: 540px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.vision-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--sayah-bronze);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid var(--sayah-bronze);
}

.vision-title {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  color: var(--sayah-teal-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.reveal-line {
  display: block;
  overflow: hidden;
      padding-top: 12px;
    padding-bottom: 8px;
}
.reveal-line span {
  display: block;
  will-change: transform;
}

.vision-desc {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--sayah-teal-dark);
  opacity: 0.65;
  line-height: 1.8;
  margin-bottom: 44px;
  font-weight: 400;
}

.vision-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 44px;
      align-items: flex-start;
    padding-inline-start: 3vw;
}

.vision-stat-item {
  display: flex;
  flex-direction: column;
}

.vision-stat-number {
  font-size: clamp(2.6rem, 3.8vw, 3.8rem);
  font-weight: 700;
  color: var(--sayah-bronze);
  line-height: 1;
  margin-bottom: 4px;
  direction: ltr;
}

.vision-stat-date {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 600;
  color: var(--sayah-teal-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.vision-stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sayah-teal-dark);
  opacity: 0.45;
}

.vision-stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--sayah-teal-dark);
  opacity: 0.1;
}

.vision-cards {
  display: flex;
  gap: 14px;
}

.vision-card {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(8,49,57,0.02);
  border: 1px solid rgba(8,49,57,0.06);
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  cursor: default;
}
.vision-card.card-right { transform: translateX(40px); }
.vision-card.card-left { transform: translateX(-40px); }

.vision-card:hover {
  border-color: var(--sayah-bronze);
  background: rgba(191,145,100,0.04);
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 28px rgba(8,49,57,0.05);
}

.vision-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191,145,100,0.08);
  border-radius: 0;
  transition: transform 0.4s ease;
}

.vision-card-icon svg { display: block; }

.vision-card-text { flex: 1; }

.vision-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sayah-teal-dark);
  margin-bottom: 3px;
}

.vision-card-desc {
  font-size: 0.82rem;
  color: var(--sayah-teal-dark);
  opacity: 0.55;
  line-height: 1.6;
}

/* Pattern 2 at bottom-right corner */
.vision-pattern-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  width: 320px;
  height: 380px;
  overflow: hidden;
}
.vision-pattern-corner svg {
  width: 100%;
  height: 100%;
  display: block;
}
.vision-pattern-corner path {
  stroke: var(--sayah-teal-dark);
}

/* Skeleton */
.vision-skeleton {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: row;
  direction: ltr;
  pointer-events: none;
  background: var(--sayah-linen);
}

.vision-skeleton-media {
  flex: 0 0 50%;
  background: var(--sayah-linen-dark);
  opacity: 0.15;
}

.vision-skeleton-content {
  flex: 0 0 50%;
  padding: 80px 60px 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.skeleton-block {
  background: linear-gradient(90deg, var(--sayah-linen-dark) 25%, #e8ddd3 50%, var(--sayah-linen-dark) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
  border-radius: 3px;
  opacity: 0.2;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 1024px) {
  .vision-content-panel { padding: 70px 40px 70px 35px; }
  .vision-skeleton-content { padding: 70px 40px 70px 35px; }
}

@media (max-width: 768px) {
  .vision-split { flex-direction: column; direction: rtl; }

  .vision-image-panel { flex: 0 0 45vh; }
  .vision-image-panel .img-overlay {
    background: linear-gradient(to bottom, transparent 40%, var(--sayah-linen) 100%);
  }
  .vision-image-panel .img-edge-line { display: none; }
  .vision-image-panel .img-accent { display: none; }

  .vision-content-panel { flex: 1; padding: 40px 28px 50px; }
  .vision-pattern-corner { width: 200px; height: 240px; }
  .vision-cards { flex-direction: column; }
  .vision-stat-divider { display: none; }

  .vision-skeleton { flex-direction: column; direction: rtl; }
  .vision-skeleton-media { flex: 0 0 45vh; }
  .vision-skeleton-content { flex: 1; padding: 40px 28px; }
}

@media (max-width: 480px) {
  .vision-image-panel { flex: 0 0 35vh; }
  .vision-content-panel { padding: 30px 20px 40px; }
  .vision-skeleton-content { padding: 30px 20px; }
  .vision-title { font-size: clamp(1.5rem, 5vw, 1.8rem); }
  .vision-stats { flex-direction: column; gap: 16px; }
  .vision-stat-item { align-items: center; text-align: center; }
  .vision-stat-number { text-align: center; }
  .vision-stat-date { text-align: center; }
  .vision-pattern-corner { width: 150px; height: 180px; }
}

@media (max-width: 1024px) {
  .stroke-svg {
    width: min(85%, 700px);
    max-height: 60vh;
  }
}

@media (max-width: 768px) {
  .header-c-nav {
    display: none;
  }

  .header-c-actions {
    display: none;
  }

  .burger-c-btn {
    display: flex;
  }

  .header-c-logo img {
    height: 28px;
  }

  .burger-c-door-lines {
    display: none;
  }

  .stroke-svg {
    width: min(90%, 600px);
    max-height: 55vh;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 16px;
  }

  .btn-sayah-primary {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .hero-cta-group {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header-c-inner {
    padding: 0 16px;
  }

  .header-c-logo {
    min-width: auto;
  }

  .header-c-logo img {
    height: 24px;
  }

  .burger-c-nav a {
    font-size: 1.3rem;
  }

  .burger-c-actions .btn-sayah-primary {
    font-size: 0.85rem;
    padding: 10px 28px;
  }

  .stroke-svg {
    width: min(95%, 400px);
    max-height: 45vh;
  }

  .hero-title-reveal h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .reveal-word {
    display: inline;
    overflow: visible;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 12px;
    line-height: 1.7;
  }

  .cloud-item {
    width: 55%;
    bottom: 5%;
  }

  .btn-sayah-primary {
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
    font-size: 0.85rem;
    text-align: center;
  }
}

@media (max-height: 500px) {
  .stroke-svg {
    max-height: 50vh;
  }

  .hero-title-reveal h1 {
    font-size: clamp(1.4rem, 4vh, 2.2rem);
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .btn-sayah-primary {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

/* ================================================================
   SECTION 4 — INTERIOR & FEATURES (Variation B: Cinematic Horizons)
   ================================================================ */

/* Section layout */
.interior-section{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}

/* Slide counter */
.slide-counter{
  position:fixed;
  bottom:3rem;left:3rem;
  z-index:100;
  font-size:0.8rem;
  font-weight:300;
  color:var(--sayah-linen-dark);
  letter-spacing:0.05em;
  direction:ltr;
}
.slide-counter .current{color:var(--sayah-bronze);font-weight:600;font-size:1.1rem}
.slide-counter .sep{color:rgba(251,241,232,0.3);margin:0 0.35rem}

/* Progress dots */
.progress-dots{
  position:fixed;
  bottom:3.2rem;right:3rem;
  z-index:100;
  display:flex;gap:0.6rem;
}
.progress-dot{
  width:8px;height:8px;
  border-radius:50%;
  background:rgba(251,241,232,0.15);
  transition:background 0.4s,transform 0.4s;
  cursor:pointer;
}
.progress-dot.active{
  background:var(--sayah-bronze);
  transform:scale(1.4);
}

/* Horizontal track */
.horizontal-section{
  position:relative;
  height:100vh;
  overflow:hidden;
}
.horizontal-track{
  display:flex;
  width:300vw;
  height:100vh;
}

/* Each slide */
.horiz-slide{
  width:100vw;
  height:100vh;
  flex-shrink:0;
  display:flex;
  align-items:stretch;
  position:relative;
  overflow:hidden;
  direction:ltr;
}
.horiz-slide-inner{
  display:flex;
  flex-direction:row-reverse;
  width:100%;
  height:100%;
}

/* Split panels */
.slide-image-panel{
  flex:0 0 58%;
  position:relative;
  overflow:hidden;
}
.slide-image-panel img{
  position:absolute;
  inset:-5% 0;
  width:100%;height:110%;
  object-fit:cover;
  will-change:transform;
}
.slide-image-panel .image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(8,49,57,0.35) 0%,transparent 50%);
  z-index:2;
  pointer-events:none;
}
.slide-image-panel .bronze-edge{
  position:absolute;
  top:0;bottom:0;left:0;
  width:1px;
  background:linear-gradient(180deg,transparent,var(--sayah-bronze) 30%,var(--sayah-bronze) 70%,transparent);
  z-index:3;
  opacity:0.5;
}

.slide-content-panel{
  flex:0 0 42%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:4rem 3rem 4rem 4rem;
  position:relative;
}
.slide-number{
  font-size:0.7rem;
  font-weight:600;
  color:var(--sayah-bronze);
  letter-spacing:0.15em;
  margin-bottom:0.75rem;
  opacity:0.5;
}
.slide-title{
  font-size:clamp(1.4rem,2.8vw,2.2rem);
  font-weight:700;
  line-height:1.3;
  color:var(--sayah-linen);
  margin-bottom:1rem;
}
.slide-desc{
  font-size:clamp(0.8rem,1.2vw,0.95rem);
  font-weight:300;
  color:var(--sayah-linen-dark);
  line-height:1.8;
  max-width:380px;
}

/* Pattern divider between slides */
.pattern-divider{
  position:absolute;
  left:0;top:0;bottom:0;
  width:120px;
  z-index:5;
  pointer-events:none;
  opacity:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.horiz-slide:first-child .pattern-divider{display:none}
.pattern-divider svg{
  height:60%;
  width:auto;
  opacity:0.06;
}
.pattern-divider svg path{stroke:var(--sayah-bronze)}

/* Arrow navigation */
.arrow-nav{
  position:fixed;
  bottom:3rem;
  left:50%;
  transform:translateX(-50%);
  z-index:100;
  display:flex;
  gap:1.25rem;
}
.arrow-btn{
  width:40px;height:40px;
  border-radius:50%;
  border:1px solid rgba(251,241,232,0.15);
  background:rgba(8,49,57,0.7);
  backdrop-filter:blur(6px);
  color:var(--sayah-linen);
  font-size:0.8rem;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:border-color 0.3s,background 0.3s;
  user-select:none;
}
.arrow-btn:hover{
  border-color:var(--sayah-bronze);
  background:rgba(191,145,100,0.15);
}

/* Pattern decorative behind content */
.slide-pattern-bg{
  position:absolute;
  bottom:0;left:0;
  width:280px;height:100%;
  pointer-events:none;
  z-index:0;
  opacity:0.03;
}
.slide-pattern-bg svg{width:100%;height:100%}

/* Responsive */
@media(max-width:860px){
  .horiz-slide-inner{flex-direction:column}
  .slide-image-panel{flex:0 0 55%}
  .slide-content-panel{flex:1;padding:2rem}
  .slide-desc{max-width:none}
  .pattern-divider{display:none}
  .slide-counter{bottom:5rem;left:1.5rem}
  .arrow-nav{bottom:1.5rem}
  .progress-dots{bottom:5.2rem;right:1.5rem}
  .slide-pattern-bg{width:160px}
}
@media(max-width:480px){
  .slide-image-panel{flex:0 0 50%}
  .slide-content-panel{padding:1.25rem}
  .slide-title{font-size:1.1rem}
  .slide-desc{font-size:0.78rem}
}

/* ================================================================
   SECTION 5 — FLOOR PLANS (Variation D: Morphing Grid)
   ================================================================ */

/* Plans section */
.plans-section{
  position:relative;
  z-index:2;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:4rem 2rem;
}
.pattern-grid-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:0.025;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.pattern-grid-bg svg{width:120%;height:auto;min-height:100%}
.pattern-grid-bg svg path{stroke:var(--bronze, #bf9164);stroke-width:2}
.pattern-border-top,.pattern-border-bottom{
  position:absolute;
  left:0;right:0;
  pointer-events:none;
  z-index:1;
  opacity:0.05;
  height:30px;
}
.pattern-border-top{top:0}
.pattern-border-bottom{bottom:0;transform:rotate(180deg)}
.pattern-border-top svg,.pattern-border-bottom svg{width:100%;height:100%}
.pattern-border-top svg path,.pattern-border-bottom svg path{stroke:var(--bronze, #bf9164);stroke-width:1.5}

.plans-container{
  position:relative;
  z-index:2;
  width:min(100%,1000px);
}
.plans-header{text-align:center;margin-bottom:2.5rem}
.plans-tag{
  display:inline-block;
  font-size:0.7rem;font-weight:600;
  letter-spacing:3px;
  color:var(--bronze, #bf9164);
  border:1px solid rgba(191,145,100,0.25);
  padding:0.35rem 1.1rem;
  margin-bottom:1rem;
}
.plans-title{
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:700;
  margin-bottom:0.5rem;
  color:var(--linen, #fbf1e8);
}
.plans-desc{
  font-size:clamp(0.8rem,1.1vw,0.95rem);
  font-weight:300;
  color:var(--sand, #c9beb5);
}

/* 2x2 Grid */
.plans-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
  perspective:1000px;
}
.plan-card{
  position:relative;
  border-radius:6px;
  overflow:hidden;
  cursor:pointer;
  aspect-ratio:16/11;
  background:var(--teal-deeper, #04262b);
  border:1px solid rgba(191,145,100,0.1);
  transition:border-color 0.4s ease,box-shadow 0.4s ease;
  will-change:transform;
}
.plan-card:hover{
  border-color:rgba(191,145,100,0.3);
  box-shadow:0 8px 30px rgba(0,0,0,0.3);
}
.plan-card img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.5s ease;
}
.plan-card:hover img{transform:scale(1.05)}
.plan-card-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(8,49,57,0.85) 0%,transparent 60%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:1.25rem;
  opacity:0;
  transition:opacity 0.35s ease;
}
.plan-card:hover .plan-card-overlay{opacity:1}
.plan-card-name{
  font-size:clamp(0.85rem,1.1vw,1rem);
  font-weight:600;
  color:var(--linen, #fbf1e8);
  transform:translateY(6px);
  transition:transform 0.35s ease;
}
.plan-card:hover .plan-card-name{transform:translateY(0)}
.plan-card-action{
  font-size:0.72rem;
  color:var(--bronze, #bf9164);
  margin-top:0.3rem;
  opacity:0;
  transform:translateY(6px);
  transition:all 0.35s ease 0.05s;
}
.plan-card:hover .plan-card-action{opacity:1;transform:translateY(0)}
.plan-card::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:2px;
  background:var(--bronze, #bf9164);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.plan-card:hover::after{transform:scaleX(1)}

/* Morph clone */
.morph-clone{
  position:fixed;
  z-index:99995;
  border-radius:6px;
  overflow:hidden;
  pointer-events:none;
  object-fit:cover;
}

/* Lightbox */
#planLightbox{
  position:fixed;inset:0;
  z-index:99990;
  background:rgba(4,38,43,0.94);
  backdrop-filter:blur(24px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.25s ease;
}
#planLightbox.active{opacity:1;pointer-events:auto}
.lightbox-header{
  position:absolute;
  top:0;left:0;right:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.25rem 1.5rem;
  z-index:10;
  pointer-events:none;
}
.active .lightbox-header > *{pointer-events:auto}
.lightbox-label{
  font-size:0.85rem;font-weight:500;
  color:var(--linen, #fbf1e8);letter-spacing:1px;
}
.lightbox-close{
  width:40px;height:40px;
  border-radius:50%;
  border:1px solid rgba(251,241,232,0.15);
  background:rgba(8,49,57,0.5);
  color:var(--linen, #fbf1e8);
  font-size:1.1rem;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:all 0.3s;
}
.lightbox-close:hover{border-color:var(--bronze, #bf9164);background:rgba(191,145,100,0.15)}
.lightbox-body{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:4rem 1.5rem;
  flex:1;
}
.lightbox-image-wrap{
  position:relative;
  width:min(80vw,800px);
  max-height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(191,145,100,0.2);
  border-radius:4px;
  padding:0.5rem;
  background:rgba(8,49,57,0.3);
  opacity:0;
  transition:opacity 0.25s ease, transform 0.25s ease;
  transform:scale(0.97);
}
.active .lightbox-image-wrap{opacity:1;transform:scale(1)}
.lightbox-image-wrap img{
  max-width:100%;
  max-height:65vh;
  object-fit:contain;
  border-radius:2px;
  display:block;
}
.lightbox-footer{
  position:absolute;
  bottom:0;left:0;right:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.5rem;
  padding:1.25rem 1.5rem;
  z-index:10;
}
.lightbox-footer > *{pointer-events:auto}
.lb-footer-inner{
  pointer-events:auto;
  display:flex;
  align-items:center;
  gap:1.5rem;
}
.lb-nav-btn{
  width:36px;height:36px;
  border-radius:50%;
  border:1px solid rgba(251,241,232,0.12);
  background:rgba(8,49,57,0.6);
  backdrop-filter:blur(6px);
  color:var(--linen, #fbf1e8);
  font-size:0.85rem;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:all 0.3s;
}
.lb-nav-btn:hover{border-color:var(--bronze, #bf9164);background:rgba(191,145,100,0.15)}
.lb-counter{font-size:0.8rem;color:var(--sand, #c9beb5);letter-spacing:2px;font-feature-settings:"tnum";min-width:50px;text-align:center}
.lb-counter .lb-cur{color:var(--linen, #fbf1e8);font-weight:600}

/* Responsive */
@media(max-width:768px){
  .plans-section{padding:2.5rem 1rem}
  .plans-grid{grid-template-columns:1fr;gap:0.85rem}
  .plan-card{aspect-ratio:4/3}
  .lightbox-image-wrap{width:90vw;max-height:55vh}
  .lightbox-body{padding:3rem 1rem}
  .lb-nav-btn,.lightbox-close{touch-action:manipulation}
  .pattern-border-top,.pattern-border-bottom{height:18px}
}
@media(max-width:480px){
  .plans-header{margin-bottom:1.5rem}
  .plan-card-overlay{padding:1rem}
  .plan-card-name{font-size:0.82rem}
  .lightbox-image-wrap{max-height:45vh;padding:0.3rem}
}

/* ===== Section 6: Location & Connectivity ===== */
.location-section {
  position: relative;
  padding: 6rem 4rem;
  min-height: 100vh;
  overflow: hidden;
  background: var(--sayah-teal-dark);
}
.location-pattern-corner {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  width: 280px;
  height: 340px;
  overflow: hidden;
}
.location-pattern-corner svg { width: 100%; height: 100%; display: block; }
.location-pattern-corner path { stroke: var(--sayah-bronze); stroke-width: 2; }
.location-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.location-header { margin-bottom: 3rem; }
.location-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--sayah-bronze);
  border: 1px solid rgba(191,145,100,0.25);
  padding: 0.4rem 1.2rem;
  margin-bottom: 1rem;
}
.location-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--sayah-linen);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.location-desc {
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  font-weight: 300;
  color: var(--sayah-linen-dark);
  max-width: 520px;
  line-height: 1.7;
}
.location-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.location-map {
  position: relative;
  border: 1px solid rgba(191,145,100,0.15);
  border-radius: 6px;
  overflow: hidden;
}
.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.map-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.75rem;
  color: var(--sayah-bronze);
  opacity: 0.5;
  pointer-events: none;
}
.map-image-container {
  position: relative;
  width: 100%;
}
.responsive-map-img {
  width: 100%;
  height: auto;
  display: block;
}
.project-pin, .map-pin {
  position: absolute;
  width: 38px;
  height: 38px;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.4s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.project-pin {
  z-index: 12;
}
.project-pin svg, .map-pin svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.5));
  transition: filter 0.3s ease;
}
.project-pin:hover, .map-pin:hover {
  transform: translate(-50%, -105%) scale(1.12);
}
.project-pin:hover svg, .map-pin:hover svg {
  filter: drop-shadow(0px 3px 10px rgba(0,0,0,0.7));
}
.pin-mini-label {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 49, 57, 0.9);
  color: var(--sayah-linen);
  padding: 2px 6px;
  font-size: 0.65rem;
  border-radius: 4px;
  border: 1px solid var(--sayah-bronze);
  white-space: nowrap;
  pointer-events: none;
}
.map-pin[data-index="6"] .pin-mini-label {
  top: auto;
  bottom: -20px;
}
.pin-glow-ring {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 16px;
  height: 8px;
  background: rgba(255, 184, 117, 0.5);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}
.map-image-container.pin-focused .map-pin:not(.active) {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -100%) scale(0.7);
}
.map-pin.active svg path, .project-pin.glowing svg path {
  fill: #ffb875 !important;
}
.map-pin.active svg, .project-pin.glowing svg {
  filter: drop-shadow(0px 0px 12px rgba(255, 184, 117, 0.9));
}
.map-pin.active .pin-glow-ring, .project-pin.glowing .pin-glow-ring {
  opacity: 1;
  animation: dualGlowAnim 1.6s infinite ease-in-out;
}
@keyframes dualGlowAnim {
  0% {
    width: 16px;
    height: 8px;
    opacity: 1;
    box-shadow: 0 0 10px 4px rgba(255, 184, 117, 0.7);
  }
  100% {
    width: 60px;
    height: 30px;
    opacity: 0;
    box-shadow: 0 0 25px 15px rgba(255, 184, 117, 0);
  }
}
.location-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 2rem;
}
.timeline-line {
  position: absolute;
  right: 6px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(191,145,100,0.2);
  z-index: 0;
}
.poi-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  opacity: 0;
  transform: translateX(30px);
  cursor: pointer;
  z-index: 1;
}
.poi-card:hover .poi-name { color: var(--sayah-bronze); }
.poi-card:hover .poi-time-badge { background: var(--sayah-bronze); color: var(--sayah-linen);}
.poi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sayah-bronze);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.poi-card:hover .poi-dot { transform: scale(1.4); }
.poi-time-badge {
  flex-shrink: 0;
  background: rgba(191,145,100,0.12);
  border: 1px solid rgba(191,145,100,0.2);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--sayah-bronze);
  min-width: 70px;
  text-align: center;
  transition: all 0.3s ease;
}
.poi-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}
.poi-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(106,174,181,0.1);
  border-radius: 4px;
  flex-shrink: 0;
}
.poi-icon svg { display: block; }
.poi-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sayah-linen);
  transition: color 0.3s ease;
}
.location-banner {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  padding: 2.5rem 3rem;
  border: 1px solid rgba(191,145,100,0.12);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(4,38,43,0.8), rgba(8,49,57,0.6));
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}
.banner-neighborhood {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--sayah-ocean-teal);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.banner-tagline {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--sayah-linen);
  margin-bottom: 1.2rem;
}
.banner-address {
  font-size: 0.8rem;
  color: var(--sayah-linen-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.banner-btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  font-family: 'Alexandria', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sayah-teal-dark);
  background: var(--sayah-bronze);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.banner-btn:hover { background: var(--sayah-bronze-dark); transform: translateY(-1px); }

/* ===== Location Lightbox ===== */
#locationLightbox {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(4,38,43,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#locationLightbox.active { opacity: 1; pointer-events: auto; }
.loc-lightbox-inner {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.loc-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.loc-lightbox-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--sayah-bronze);
}
.loc-lightbox-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(251,241,232,0.15);
  background: rgba(8,49,57,0.5);
  color: var(--sayah-linen);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.loc-lightbox-close:hover {
  border-color: var(--sayah-bronze);
  background: rgba(191,145,100,0.15);
}
.loc-lightbox-image-wrap {
  position: relative;
  border: 1px solid rgba(191,145,100,0.2);
  border-radius: 4px;
  padding: 0.5rem;
  background: rgba(8,49,57,0.3);
  overflow: hidden;
}
.loc-lightbox-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 2px;
}
.loc-lightbox-poi-name {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sayah-linen-dark);
  margin-top: 0.75rem;
}
.loc-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(251,241,232,0.12);
  background: rgba(8,49,57,0.6);
  color: var(--sayah-linen);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.loc-lightbox-arrow:hover {
  border-color: var(--sayah-bronze);
  background: rgba(191,145,100,0.2);
}
.loc-lightbox-arrow.prev { right: 1rem; }
.loc-lightbox-arrow.next { left: 1rem; }
html[dir="rtl"] .loc-lightbox-arrow.prev { right: auto; left: 1rem; }
html[dir="rtl"] .loc-lightbox-arrow.next { left: auto; right: 1rem; }

@keyframes markerPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.6); opacity: 0; }
}

@media(max-width: 1024px) {
  .location-section { padding: 4rem 2rem; }
  .location-body { gap: 2rem; }
}
@media(max-width: 768px) {
  .location-section { padding: 3rem 1.25rem; }
  .location-body { grid-template-columns: 1fr; gap: 2rem; }
  .location-map { min-height: unset; }
  .map-overlay { min-height: unset; }
  .location-timeline { padding-right: 1.5rem; }
  .location-banner { padding: 2rem 1.5rem; }
  .loc-lightbox-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
  .loc-lightbox-image-wrap img { max-height: 55vh; }
}
@media(max-width: 480px) {
  .location-section { padding: 2.5rem 1rem; }
  .location-map { min-height: unset; }
  .map-overlay { min-height: unset; }
  .poi-card { padding: 0.75rem 0; }
  .poi-time-badge { min-width: 56px; font-size: 0.6rem; padding: 0.2rem 0.5rem; }
  .poi-name { font-size: 0.78rem; }
  .location-banner { padding: 1.5rem 1rem; }
}

/* ===== Section 7: CTA Form (Variation D) ===== */
.cta-form-section {
  position: relative;
  padding: 7rem 2rem;
  background: var(--sayah-linen);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 30%, rgba(106,174,181,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(191,145,100,0.04) 0%, transparent 50%);
}
.cta-pattern-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  z-index: 0;
}
.cta-pattern-grid svg {
  width: 100%;
  height: 100%;
  color: var(--sayah-bronze);
}
.cta-pattern-corner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}
.cta-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}
.cta-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sayah-bronze);
  padding: 0.35rem 1rem;
  border: 1px solid rgba(191,145,100,0.2);
  border-radius: 100px;
  background: rgba(191,145,100,0.04);
}
.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--sayah-teal-dark);
}
.cta-title .word {
  display: inline-block;
  opacity: 0;
  margin-left: 0.15em;
}
.cta-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--sayah-bronze-dark);
  max-width: 420px;
}
.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 0.25rem;
}
.cta-feature {
  font-size: 0.75rem;
  color: var(--sayah-ocean-teal);
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(106,174,181,0.2);
  border-radius: 100px;
  background: rgba(106,174,181,0.04);
}
.cta-form-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(8,49,57,0.06);
  border-radius: 20px;
  padding: 2.5rem 2.5rem;
  box-shadow: 0 4px 24px rgba(8,49,57,0.15), 0 1px 4px rgba(8,49,57,0.08);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.cta-form-card:hover {
  box-shadow: 0 8px 40px rgba(8,49,57,0.2), 0 2px 8px rgba(8,49,57,0.1);
  transform: translateY(-2px);
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cta-field {
  position: relative;
  text-align: right;
}
.cta-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--sayah-bronze-dark);
  margin-bottom: 0.35rem;
}
.cta-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(8,49,57,0.03);
  border: 1px solid rgba(8,49,57,0.08);
  border-radius: 10px;
  color: var(--sayah-teal-dark);
  font-family: 'Alexandria', sans-serif;
  font-size: 0.9rem;
  direction: rtl;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.cta-input::placeholder {
  color: rgba(109,82,60,0.25);
  font-size: 0.82rem;
}
.cta-input:focus {
  border-color: var(--sayah-bronze);
  background: rgba(191,145,100,0.04);
  box-shadow: 0 0 0 3px rgba(191,145,100,0.08);
}
.cta-input.error {
  border-color: #d17a7a;
  background: rgba(209,122,122,0.04);
  box-shadow: 0 0 0 3px rgba(209,122,122,0.08);
}
.cta-error-msg {
  font-size: 0.68rem;
  color: #d17a7a;
  margin-top: 0.2rem;
  display: none;
  text-align: right;
}
.cta-input.error + .cta-error-msg {
  display: block;
}
.cta-field-checkbox {
  margin-top: 0.15rem;
}
.cta-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.73rem;
  color: rgba(109,82,60,0.7);
  line-height: 1.6;
  text-align: right;
}
.cta-checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid rgba(109,82,60,0.25);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  position: relative;
  top: 3px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.cta-checkbox-label input[type="checkbox"]:checked {
  background: var(--sayah-bronze);
  border-color: var(--sayah-bronze);
}
.cta-checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #ffffff;
  clip-path: polygon(14% 44%, 0% 58%, 40% 100%, 100% 16%, 86% 2%, 40% 70%);
}
.cta-submit {
  width: 100%;
  padding: 1rem;
  background: var(--sayah-teal-dark);
  color: var(--sayah-linen);
  font-family: 'Alexandria', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 0.15rem;
  letter-spacing: 0.02em;
}
.cta-submit:hover {
  background: var(--sayah-teal-deeper);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(8,49,57,0.15);
}
.cta-submit:active {
  transform: translateY(0);
}
.cta-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  gap: 1rem;
}
.cta-success.active {
  display: flex;
}
.cta-checkmark {
  width: 60px;
  height: 60px;
}
.cta-checkmark-circle {
  stroke: var(--sayah-bronze);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  fill: none;
}
.cta-checkmark-check {
  stroke: var(--sayah-bronze);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}
.cta-success-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sayah-teal-dark);
}
.cta-success-desc {
  font-size: 0.82rem;
  color: var(--sayah-bronze-dark);
}
.cta-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(109,82,60,0.5);
}
.cta-contact-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(106,174,181,0.06);
  color: var(--sayah-ocean-teal);
  flex-shrink: 0;
}

@media(max-width: 1024px) {
  .cta-form-section { padding: 5rem 2rem; }
  .cta-title { font-size: 2.3rem; }
  .cta-form-card { padding: 2.25rem 2rem; }
}
@media(max-width: 768px) {
  .cta-form-section { padding: 4rem 1.5rem; }
  .cta-container { gap: 2rem; }
  .cta-title { font-size: 1.9rem; }
  .cta-form-card { padding: 2rem 1.5rem; }
  .cta-contact { gap: 1.25rem; }
  .cta-pattern-corner { width: 120px; }
}
@media(max-width: 480px) {
  .cta-form-section { padding: 3rem 1rem; }
  .cta-title { font-size: 1.5rem; }
  .cta-form-card { padding: 1.5rem 1rem; border-radius: 16px; }
  .cta-input { padding: 0.75rem 0.85rem; font-size: 0.82rem; }
  .cta-submit { padding: 0.85rem; font-size: 0.85rem; }
  .cta-desc { font-size: 0.85rem; }
}

/* ===== Section 8: Footer (Variation A — Classical Split) ===== */
.sayah-footer {
  position: relative;
  background: var(--sayah-teal-dark);
  overflow: hidden;
  padding: 5rem 2rem 0;
}
.footer-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  overflow: hidden;
  z-index: 0;
}
.footer-border svg {
  width: 100%;
  height: 100%;
  stroke: var(--sayah-ocean-teal);
  stroke-width: 3;
  fill: none;
  opacity: 0.15;
}
.footer-border-line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(40px);
}
.footer-logo {
  width: 140px;
  height: auto;
  display: block;
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--sayah-linen-dark);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(106,174,181,0.2);
  color: var(--sayah-ocean-teal);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.35s ease;
}
.footer-social a:hover {
  background: var(--sayah-ocean-teal);
  color: var(--sayah-teal-dark);
  border-color: var(--sayah-ocean-teal);
  transform: translateY(-3px);
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sayah-bronze);
  margin-bottom: 0.15rem;
}
.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-link-list a {
  color: var(--sayah-linen-dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
  width: fit-content;
}
.footer-link-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--sayah-bronze);
  transition: width 0.35s ease;
}
.footer-link-list a:hover {
  color: var(--sayah-bronze);
}
.footer-link-list a:hover::after {
  width: 100%;
}
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--sayah-linen-dark);
  cursor: pointer;
  transition: color 0.3s ease;
  width: fit-content;
}
.footer-contact-item:hover {
  color: var(--sayah-bronze);
}
.footer-contact-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(106,174,181,0.08);
  color: var(--sayah-ocean-teal);
  flex-shrink: 0;
  font-size: 0.65rem;
}
.footer-contact-label {
  font-size: 0.7rem;
  color: var(--sayah-bronze-dark);
  display: block;
  margin-bottom: 0.1rem;
  font-weight: 500;
}
.footer-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--sayah-teal-darker);
  color: var(--sayah-linen);
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-size: 0.8rem;
  border: 1px solid rgba(191,145,100,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.footer-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(106,174,181,0.08);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
}
.footer-copyright {
  font-size: 0.75rem;
  color: var(--sayah-linen-dark);
  opacity: 0.6;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.75rem;
  color: var(--sayah-linen-dark);
  opacity: 0.6;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.footer-legal a:hover {
  color: var(--sayah-bronze);
  opacity: 1;
}
@media(max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-col:first-child {
    grid-column: 1 / -1;
  }
  .footer-tagline {
    max-width: 100%;
  }
}
@media(max-width: 768px) {
  .sayah-footer { padding: 3.5rem 1.5rem 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding-bottom: 2rem;
  }
  .footer-col {
    align-items: center;
  }
  .footer-logo { margin: 0 auto; }
  .footer-link-list a { margin: 0 auto; }
  .footer-contact-item { margin: 0 auto; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1.5rem;
  }
  .footer-legal { justify-content: center; }
}
@media(max-width: 480px) {
  .sayah-footer { padding: 2.5rem 1rem 0; }
  .footer-inner { gap: 2rem; }
  .footer-bottom { padding: 1rem; }
  .footer-legal { gap: 1rem; flex-wrap: wrap; }
  .footer-logo { width: 110px; }
}
