/* ========================================
   YAS PARK PLACE BY ALDAR
   Luxury Editorial — Espresso & Champagne Theme
   Typography: Plus Jakarta Sans + Inter
   ======================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  /* Primary Colors — Warm Espresso Brown */
  --primary-green-btn: #593d2d;
  --primary-green: #593d2d;
  --primary-green-light: #7a5a48;
  --primary-green-dark: #3e2a1e;

  /* Deep Palette — Rich Espresso Dark */
  --navy: #1a1210;
  --navy-light: #211916;
  --navy-mid: #2a1f1b;
  --navy-deep: #110c0a;

  /* Secondary Colors */
  --secondary-beige: #1a121033;
  --secondary-beige-light: #f0e8e2;
  --secondary-beige-dark: #1a1210;

  /* Neutral Colors */
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f5f0ec;
  --gray-medium: #8b7e76;
  --gray-dark: #3d342e;
  --gray-border: #d3c7bc;

  /* Text Colors */
  --text-primary: #3d342e;
  --text-secondary: #6b5d53;
  --text-white: #f0e8e2;
  --text-light: #d3c7bc;
  --text-muted: #9b8e84;

  /* Accent Palette — Espresso & Champagne */
  --gold: #d3c7bc;
  --gold-light: #e4dbd3;
  --gold-dark: #593d2d;
  --gold-glow: rgba(211, 199, 188, 0.3);
  --gold-shimmer: rgba(211, 199, 188, 0.12);
  --rose-gold: #d3c7bc;
  --espresso: #593d2d;
  --espresso-light: #7a5a48;

  /* Status Colors */
  --success: #27ae60;
  --error: #e74c3c;
  --warning: #feca57;

  /* Background Gradients */
  --gradient-hero: linear-gradient(
    170deg,
    rgba(17, 12, 10, 0.93) 0%,
    rgba(26, 18, 16, 0.4) 40%,
    rgba(26, 18, 16, 0.55) 70%,
    rgba(17, 12, 10, 0.95) 100%
  );
  --gradient-about: linear-gradient(
    to bottom,
    #1a1210 0%,
    #1a1210cc 30%,
    #1a1210cc 80%,
    #1a1210 95%,
    #1a1210 100%
  );
  --gradient-footer: linear-gradient(
    to bottom,
    #1a1210 0%,
    #1a1210f7 30%,
    #1a1210f7 80%,
    #1a1210f7 100%
  );
  --gradient-payment: none;
  --gradient-location: var(--secondary-beige);
  --gradient-experts: linear-gradient(
    to bottom,
    var(--secondary-beige),
    var(--primary-green-light)
  );

  /* Button Gradients */
  --gradient-primary: linear-gradient(135deg, var(--espresso), var(--espresso-light));
  --gradient-primary-hover: linear-gradient(
    135deg,
    var(--espresso-light),
    var(--espresso)
  );

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(211, 199, 188, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);

  /* Card Gradients */
  --gradient-card-overlay: linear-gradient(
    135deg,
    rgba(89, 61, 45, 0.04),
    rgba(26, 18, 16, 0.08)
  );
  --gradient-map-overlay: linear-gradient(
    135deg,
    rgba(26, 18, 16, 0.06) 0%,
    rgba(89, 61, 45, 0.06) 100%
  );

  /* Shadow Colors */
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.2);
  --shadow-dark: rgba(0, 0, 0, 0.4);
  --shadow-green: rgba(89, 61, 45, 0.2);
  --shadow-gold: 0 8px 30px rgba(89, 61, 45, 0.22);

  /* Transitions */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 700ms;

  /* Letter-spacing */
  --ls-heading: 0.02em;
  --ls-subheading: 0.04em;
  --ls-label: 0.1em;
  --ls-body: 0.01em;
}

/* ========================================
   FONT DECLARATIONS
   ======================================== */
@font-face {
  font-family: "LEMONMILK-Bold";
  src: url("./fonts/LEMONMILK-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LEMONMILK-Regular";
  src: url("./fonts/LEMONMILK-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: var(--ls-body);
  line-height: 1.7;
}

::selection {
  background: var(--espresso);
  color: var(--gold-light);
}

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

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

::-webkit-scrollbar-thumb {
  background: rgba(211, 199, 188, 0.3);
  border-radius: 3px;
}

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

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.language-switcher {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 1000;
  animation: fadeSlideDown 0.8s var(--ease-luxury) 0.5s both;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  background: rgba(17, 12, 10, 0.88);
  color: var(--gold);
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  transition: all var(--duration-normal) var(--ease-luxury);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.lang-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(211, 199, 188, 0.12),
    transparent
  );
  transition: left 0.6s ease;
}

.lang-btn:hover::before {
  left: 100%;
}

.lang-btn i {
  font-size: 1rem;
  transition: transform 0.5s var(--ease-luxury);
}

.lang-btn:hover {
  background: rgba(211, 199, 188, 0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border-color: var(--gold);
}

.lang-btn:hover i {
  transform: rotate(360deg);
}

.lang-btn:active {
  transform: translateY(0);
}

/* RTL Language Switcher */
html[dir="rtl"] .language-switcher {
  right: auto;
  left: 25px;
}

@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromLeft {
  from { opacity: 0; transform: translateX(-100px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Mobile responsiveness for language switcher */
@media (max-width: 768px) {
  .language-switcher { top: 15px; right: 15px; }
  html[dir="rtl"] .language-switcher { left: 15px; }
  .lang-btn { padding: 0.6rem 1rem; font-size: 0.85rem; }
  .lang-btn i { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .language-switcher { top: 10px; right: 10px; }
  html[dir="rtl"] .language-switcher { left: 10px; }
  .lang-btn { padding: 0.5rem 0.8rem; font-size: 0.8rem; gap: 0.4rem; }
}

/* Phone number inputs should always be LTR */
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[type="phone"],
html[dir="rtl"] .phone-input,
html[dir="rtl"] #hero-consultation-phone,
html[dir="rtl"] #expert-phone,
html[dir="rtl"] #golden-visa-phone,
html[dir="rtl"] #brochure-phone,
html[dir="rtl"] #floor-plan-phone,
html[dir="rtl"] #consultation-phone {
  direction: ltr !important;
  text-align: left !important;
}

html[dir="rtl"] input[type="tel"]::placeholder,
html[dir="rtl"] input[type="phone"]::placeholder,
html[dir="rtl"] .phone-input::placeholder {
  direction: ltr !important;
  text-align: left !important;
}

html[dir="rtl"] .iti,
html[dir="rtl"] .iti__flag-container,
html[dir="rtl"] .iti__selected-flag,
html[dir="rtl"] .iti__country-list,
html[dir="rtl"] .iti__country,
html[dir="rtl"] .iti__dial-code,
html[dir="rtl"] .iti__country-name {
  direction: ltr !important;
  text-align: left !important;
}

html[dir="rtl"] .iti input[type="tel"],
html[dir="rtl"] .iti input[type="phone"] {
  padding-left: 52px !important;
  padding-right: 8px !important;
}

html[dir="rtl"] .iti__country-list {
  left: 0 !important;
  right: auto !important;
}
html[dir="rtl"] .iti__flag-container {
  left: 0 !important;
  right: auto !important;
}
html[dir="rtl"] .iti__selected-flag {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 0;
  background: var(--gradient-hero), url("images/exterior/2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: visible;
}

/* Ambient light effect */
.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      ellipse at 25% 25%,
      rgba(211, 199, 188, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 75% 75%,
      rgba(89, 61, 45, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
  animation: ambientShift 20s ease-in-out infinite alternate;
}

@keyframes ambientShift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(2%, -2%) rotate(1deg); }
}

.hero-text,
.hero-form-container {
  align-self: baseline;
}

.hero-grid {
  padding: 1.25rem 0 1.25rem 1.25rem;
  display: grid;
  grid-template-areas:
    "logos logos"
    "text form";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  justify-content: center;
  align-items: stretch;
  border: none;
  min-height: 100vh;
  height: auto;
  position: relative;
  z-index: 2;
  gap: 1.75rem;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-logos {
  grid-area: logos;
  padding: 12px 0;
  margin-bottom: 8px;
  animation: fadeSlideDown 0.8s var(--ease-luxury) 0.2s both;
}

.hero-logos-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.hero-bottom-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  margin-top: 20px;
}

.developer-logo-top {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}

.developer-logo-top:hover {
  filter: brightness(1.3);
}

.project-logo-top {
  height: 150px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.zain-logo-bottom {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.zain-logo-top {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  animation: heroTextReveal 1.2s var(--ease-luxury) 0.4s both;
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.developer {
  color: var(--gold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.location {
  color: var(--gold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-name {
  color: var(--white);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: none;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.project-name-span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  animation: heroTextReveal 1.2s var(--ease-luxury) 0.6s both;
}

/* ========================================
   HERO BUTTONS
   ======================================== */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

/* ========================================
   BUTTON STYLES — Premium Gold
   ======================================== */
.btn-primary {
  background: var(--espresso);
  color: #ffffff;
  border: none;
  width: 100%;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 0.82rem;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-luxury);
  position: relative;
  overflow: hidden;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  border-radius: 0;
}

/* Shimmer effect on buttons */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.7s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--espresso-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(89, 61, 45, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(211, 199, 188, 0.3);
  padding: 15px 30px;
  width: 100%;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.82rem;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-luxury);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: var(--espresso);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  border-color: var(--espresso);
}

/* ========================================
   LICENSE INFO
   ======================================== */
.license-info {
  margin-bottom: 0;
}

.license-info small {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========================================
   HERO FORM CONTAINER — Glassmorphism
   ======================================== */
.hero-form-container {
  grid-area: form;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  min-height: auto;
  animation: heroFormReveal 1.2s var(--ease-luxury) 0.8s both;
}

@keyframes heroFormReveal {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-form {
  width: 100%;
  max-width: 420px;
  height: auto;
  min-height: auto;
  background: rgba(17, 12, 10, 0.88);
  backdrop-filter: blur(30px) saturate(1.2);
  -webkit-backdrop-filter: blur(30px) saturate(1.2);
  border: 1px solid rgba(211, 199, 188, 0.12);
  border-radius: 0;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(211, 199, 188, 0.06);
}

.zain-logo-footer {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.hero-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: none;
}

.hero-form p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-privacy-guarantee {
  margin-bottom: 0px !important;
  font-size: 0.78rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

/* ========================================
   HERO CONSULTATION FORM
   ======================================== */
.hero-consultation-form {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.hero-consultation-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-consultation-form .form-group label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

.iti__tel-input {
  width: 100%;
}

.iti__selected-flag {
  border-right: 1px solid rgba(89, 61, 45, 0.18);
}

.hero-consultation-form .form-group input {
  padding: 15px 18px;
  border: 1px solid rgba(89, 61, 45, 0.15);
  border-radius: 0;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
  transition: all var(--duration-normal) var(--ease-luxury);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.hero-consultation-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-family: "Inter", sans-serif;
}

.hero-consultation-form .form-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 3px rgba(89, 61, 45, 0.1),
    0 0 30px rgba(89, 61, 45, 0.08);
}

.hero-consultation-form .btn-primary {
  width: 100%;
  margin-top: 8px;
  border-radius: 0;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.bold-text {
  font-weight: 900;
}

/* ========================================
   HERO PROPERTY INFO — Glass Cards
   ======================================== */
.hero-property-info {
  width: 100%;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(89, 61, 45, 0.12);
  animation: heroTextReveal 1.2s var(--ease-luxury) 0.7s both;
}

.property-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.fact-card {
  align-self: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(89, 61, 45, 0.1);
  padding: 20px 15px;
  border-radius: 0;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-luxury);
  width: 100%;
  height: 100% !important;
}

.fact-card:hover {
  background: rgba(211, 199, 188, 0.06);
  border-color: rgba(211, 199, 188, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.fact-card:nth-child(4) .fact-number {
  font-size: 1.2rem;
}

.fact-number {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
}

.fact-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  font-family: "Inter", sans-serif;
}

/* ========================================
   ABOUT PROJECT SECTION
   ======================================== */
.about-project {
  background: var(--navy);
  position: relative;
  padding: 7rem 0;
  border-top: 1px solid rgba(89, 61, 45, 0.08);
}

.about-project::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(211, 199, 188, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

/* Subtle noise texture overlay */
.about-project::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-conic-gradient(
      rgba(255, 255, 255, 0.008) 0% 25%,
      transparent 0% 50%
    )
    0 0 / 3px 3px;
  pointer-events: none;
  z-index: 0;
}

.about-content {
  gap: 60px;
  align-items: center;
  text-align: center;
  padding: 20px;
  min-height: 400px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.about-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  border-radius: 0;
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-card-overlay);
  z-index: 1;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease-luxury);
}

.about-image:hover img {
  transform: scale(1.02);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: none;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  position: relative;
}

/* Gold accent underline — thin formal line */
.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
}

.about-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-brochure-section {
  text-align: center;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-brochure-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(89, 61, 45, 0.4);
  color: var(--gold);
  padding: 16px 40px;
  font-size: 0.82rem;
  font-weight: 600;
  width: fit-content;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--duration-normal) var(--ease-luxury);
}

.download-brochure-btn:hover {
  background: var(--espresso);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.download-brochure-btn i {
  font-size: 1rem;
}

.about-description + h3,
.architecture-highlights + h3,
.wellness-features + h3,
.location-highlights + h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}

.about-description + h3:first-of-type {
  margin-top: 32px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.tag {
  background: rgba(89, 61, 45, 0.06);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-luxury);
  border: 1px solid rgba(89, 61, 45, 0.18);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

.tag:hover {
  background: var(--espresso);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.location-highlights {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.architecture-highlights {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.wellness-features {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.amenities-highlights {
  background: rgba(255, 255, 255, 0.02);
  padding: 28px;
  border-radius: 0;
  margin-bottom: 36px;
  border-left: 2px solid var(--gold);
  backdrop-filter: blur(8px);
}

.amenities-highlights h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}

.amenities-highlights p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   FORM STYLES — Premium Inputs
   ======================================== */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group input {
  padding: 15px 18px;
  border: 1px solid rgba(89, 61, 45, 0.15);
  border-radius: 0;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
  transition: all var(--duration-normal) var(--ease-luxury);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(89, 61, 45, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.validation-output {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 20px;
  display: none;
  visibility: hidden;
  opacity: 0;
  color: var(--gold);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.checkbox input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(89, 61, 45, 0.35);
  border-radius: 0;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox input:checked + .checkmark {
  background: var(--espresso);
  border-color: var(--espresso);
}

.checkbox input:checked + .checkmark::after {
  content: "\2713";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
}

.special-offer .btn-secondary {
  width: 100%;
}

/* ========================================
   FLOOR PLANS — Glass Panel
   ======================================== */
.floor-plans-diagram {
  margin-top: 40px;
  padding: 40px;
  background: #211916;
  border-radius: 0;
  border: 1px solid rgba(89, 61, 45, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.floor-plans-diagram h3 {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--gold);
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.02em;
}

.floor-plan-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.floor-plan-tab {
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(89, 61, 45, 0.12);
  padding: 12px 24px;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-luxury);
  font-size: 0.78rem;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.floor-plan-tab.active,
.floor-plan-tab:hover {
  background: var(--espresso);
  color: #ffffff;
  border-color: var(--espresso);
  transform: translateY(-2px);
}

.floor-plan-content {
  position: relative;
  min-height: 400px;
}

.floor-plan-diagram {
  display: none;
  text-align: center;
}

.floor-plan-diagram.active {
  display: block;
  animation: fadeIn 0.5s var(--ease-luxury);
}

.floor-plan-diagram img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform var(--duration-normal) var(--ease-luxury);
}

.floor-plan-diagram img:hover {
  transform: scale(1.01);
}

.floor-plan-download-section {
  text-align: center;
  margin-top: 2rem;
}

.download-floor-plan-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 0;
}

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

/* ========================================
   GALLERY SECTION — within About
   ======================================== */
.gallery-section {
  width: 55%;
  margin: 0 auto;
  padding: 40px;
  margin-top: 60px;
  background: rgba(7, 11, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(89, 61, 45, 0.1);
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--gold);
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.02em;
}

.gallery {
  padding: 100px 0;
  background: var(--navy);
}

.gallery-content {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  order: 1;
}

.gallery-left {
  width: 100%;
  max-width: 950px;
  overflow: hidden;
  order: 2;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 30px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(89, 61, 45, 0.1);
  padding: 14px 28px;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-luxury);
  font-size: 0.82rem;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.tab-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-luxury);
}

.tab-btn.active,
.tab-btn:hover {
  background: rgba(89, 61, 45, 0.1);
  color: var(--gold);
  border-color: rgba(89, 61, 45, 0.25);
}

.tab-btn.active::before,
.tab-btn:hover::before {
  width: 100%;
}

.tab-content {
  display: none;
  animation: fadeInUp 0.5s var(--ease-luxury);
}

.tab-content.active {
  display: block;
}

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

.gallery-carousel {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

/* ========================================
   SWIPER STYLES — Premium Carousel
   ======================================== */
.swiper {
  width: 100%;
  height: 450px;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  overflow: hidden;
  height: 450px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-luxury);
}

.swiper-slide img:hover {
  transform: scale(1.03);
}

/* Swiper Navigation — Refined */
.swiper-button-next,
.swiper-button-prev {
  background: rgba(7, 11, 20, 0.8);
  backdrop-filter: blur(12px);
  width: 56px;
  height: 56px;
  border-radius: 0;
  color: var(--gold);
  transition: all var(--duration-normal) var(--ease-luxury);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(89, 61, 45, 0.15);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--espresso);
  color: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(89, 61, 45, 0.25);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.4rem;
  font-weight: bold;
}

/* Swiper Pagination — Refined Lines */
.swiper-pagination-bullet {
  width: 28px;
  height: 2px;
  border-radius: 0;
  background: rgba(89, 61, 45, 0.25);
  opacity: 1;
  transition: all var(--duration-normal) var(--ease-luxury);
}

.swiper-pagination-bullet-active {
  background: var(--gold);
  width: 44px;
  box-shadow: 0 0 8px rgba(89, 61, 45, 0.35);
}

/* Gallery Sidebar */
.gallery-info {
  background: rgba(12, 18, 32, 0.6);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 0;
  border: 1px solid rgba(89, 61, 45, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.gallery-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.gallery-info p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 30px;
}

.gallery-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0;
  border: 1px solid rgba(89, 61, 45, 0.08);
  transition: all var(--duration-normal) var(--ease-luxury);
}

.stat-item:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 61, 45, 0.18);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

/* ========================================
   CONSULTATION DIALOG — Premium Modal
   ======================================== */
.consultation-dialog {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.dialog-content {
  background: var(--navy-light);
  border: 1px solid rgba(89, 61, 45, 0.12);
  border-radius: 0;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: dialogReveal 0.6s var(--ease-luxury);
}

@keyframes dialogReveal {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.96);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(89, 61, 45, 0.12);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-luxury);
}

.dialog-close:hover {
  background: rgba(89, 61, 45, 0.12);
  color: var(--gold);
  border-color: var(--gold);
}

.dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.dialog-image {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: hidden;
}

.dialog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.dialog-image img:hover {
  opacity: 1;
}

.dialog-form {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy-light);
}

.dialog-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: 0.02em;
}

.consultation-form .form-group {
  margin-bottom: 20px;
}

.consultation-form label {
  display: block;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-size: 0.75rem;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

.consultation-form input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(89, 61, 45, 0.15);
  border-radius: 0;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.4s var(--ease-luxury);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.consultation-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(89, 61, 45, 0.1);
}

.consultation-form .btn-primary {
  width: 100%;
  margin-top: 16px;
  border-radius: 0;
}

/* ========================================
   FLOATING CONTACT BUTTONS — Pulse Animation
   ======================================== */
.floating-buttons {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  text-decoration: none;
  transition: all 0.4s var(--ease-luxury);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  position: relative;
}

/* Pulse ring animation */
.float-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: floatPulse 2.5s var(--ease-luxury) infinite;
}

@keyframes floatPulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.5); opacity: 0; }
}

.float-btn.phone {
  background: var(--espresso);
  color: #ffffff;
}

.float-btn.phone::before {
  border-color: var(--espresso);
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.whatsapp::before {
  border-color: #25d366;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

/* ========================================
   FLOOR PLANS SECTION
   ======================================== */
.floor-plans {
  padding: 80px 0;
  background: var(--navy);
}

.section-header1 {
  display: flex;
  justify-content: center;
  text-align: center;
}

.residence-images {
  margin: auto;
}

.section-header1 h2 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 800;
}

.section-header,
.section-header4 {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header4 {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2,
.gallery-section h3,
.floor-plans-diagram h3 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}

.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: none;
}

.section-header4 h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}

.section-header p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.step-number {
  color: var(--gold);
}

.step-content,
.step-content p {
  text-align: center;
  width: 100%;
}

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

.step-content h4 {
  text-align: center;
  color: var(--white);
}

/* ========================================
   PAYMENT PLANS — Glassmorphism Cards
   ======================================== */
.payment-plans {
  padding: 100px 2rem;
  background: rgba(12, 18, 32, 0.92);
  background-size: cover;
  position: relative;
}

.payment-plans::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
}

/* Payment Option Tabs */
.payment-option-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.payment-option-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.2rem 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-luxury);
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.payment-option-tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-luxury);
}

.payment-option-tab:hover {
  background: rgba(89, 61, 45, 0.05);
  border-color: rgba(89, 61, 45, 0.18);
  color: rgba(255, 255, 255, 0.7);
}

.payment-option-tab.active {
  background: rgba(89, 61, 45, 0.08);
  border-color: var(--gold);
  color: var(--white);
}

.payment-option-tab.active::before {
  width: 60%;
}

.payment-option-tab .tab-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.payment-option-tab .tab-ratio {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--gold);
  line-height: 1.2;
}

.payment-option-tab:not(.active) .tab-ratio {
  color: rgba(89, 61, 45, 0.35);
}

/* Payment Option Content */
.payment-option-content {
  display: none;
  animation: paymentFadeIn 0.5s ease;
}

.payment-option-content.active {
  display: block;
}

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

.payment-horizontal {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0.5rem;
  margin: 0 auto;
  max-width: 900px;
  padding: 0 1rem;
}

/* Payment Connector Arrow */
.payment-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0.25;
  flex-shrink: 0;
  width: 30px;
}

.payment-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(89, 61, 45, 0.08);
  border-radius: 0;
  transition: all var(--duration-normal) var(--ease-luxury);
  min-width: 180px;
  flex: 1;
  text-align: center;
  position: relative;
}

.payment-step:hover {
  background: rgba(89, 61, 45, 0.05);
  border-color: rgba(89, 61, 45, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Step Icon */
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: rgba(89, 61, 45, 0.08);
  border: 1px solid rgba(89, 61, 45, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.35;
  letter-spacing: var(--ls-subheading);
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.step-content p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ========================================
   GOLDEN VISA SECTION
   ======================================== */
.golden-visa {
  padding: 6rem 0;
  background: var(--navy);
  position: relative;
  border-top: 1px solid rgba(89, 61, 45, 0.08);
}

.golden-visa .section-header h2 {
  color: var(--gold);
}

.golden-visa .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

.residency-options {
  margin-top: 2rem;
}

.residency-text {
  margin-bottom: 1.5rem;
}

.residency-option h4 {
  color: var(--gold);
  font-size: 1.5rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.residency-option p {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 1rem;
}

.apply-button-container {
  margin-top: 1.5rem;
}

.apply-button-container .btn-primary {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 0;
}

.golden-visa-content {
  margin-top: 3rem;
  text-align: center;
}

.golden-visa-content img {
  max-width: 550px;
  width: 100%;
  border-radius: 0;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s var(--ease-luxury);
}

.golden-visa-content img:hover {
  transform: scale(1.02);
}

/* Golden Visa Dialog */
.dialog-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.dialog-overlay.active {
  display: flex;
}

.golden-visa-dialog {
  background: var(--navy-light);
  border: 1px solid rgba(89, 61, 45, 0.12);
  border-radius: 0;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: dialogReveal 0.6s var(--ease-luxury);
}

.golden-visa-form .form-group {
  margin-bottom: 20px;
}

.golden-visa-form label {
  display: block;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-size: 0.75rem;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

.golden-visa-form input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(89, 61, 45, 0.15);
  border-radius: 0;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.4s var(--ease-luxury);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.golden-visa-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(89, 61, 45, 0.1);
}

.gold-btn {
  background: var(--espresso) !important;
  color: #ffffff !important;
}

.form-actions {
  margin-top: 1rem;
}

/* ========================================
   EXPERTS SECTION
   ======================================== */
.experts-contact {
  padding: 7rem 0;
  background: var(--navy-light);
  position: relative;
  border-top: 1px solid rgba(89, 61, 45, 0.08);
}

.experts-image {
  width: 100%;
  height: 250px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.4s var(--ease-luxury);
  margin-bottom: 30px;
}

.experts-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.experts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 5rem;
}

.experts-left h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: none;
}

.experts-left p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 40px;
}

.experts-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: auto;
}

.expert-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.expert-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 14px;
  border-radius: 0;
  transition: all 0.4s var(--ease-luxury);
  border: 1px solid transparent;
  border-left: 2px solid transparent;
}

.expert-feature:hover {
  background: rgba(89, 61, 45, 0.04);
  border-left-color: var(--gold);
}

.expert-feature i {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: all 0.4s var(--ease-luxury);
}

.expert-feature:hover i {
  opacity: 1;
  transform: scale(1.1);
}

.expert-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: var(--ls-subheading);
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.expert-feature p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* ========================================
   EXPERTS FORM — Premium Glass Panel
   ======================================== */
.experts-form {
  background: var(--navy-light);
  border: 1px solid rgba(211, 199, 188, 0.1);
  padding: 56px 48px;
  border-radius: 0;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.experts-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--espresso);
  color: #ffffff;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.experts-form-badge i {
  font-size: 0.7rem;
}

.experts-form h3 {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.experts-form-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.experts-form .form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: left;
}

.privacy-guarantee {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.expert-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.expert-form .form-group input,
.expert-form .form-group select,
.expert-form .form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(211, 199, 188, 0.12);
  border-radius: 0;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  transition: all 0.4s var(--ease-luxury);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.expert-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-family: "Inter", sans-serif;
}

.expert-form .form-group input:focus,
.expert-form .form-group select:focus,
.expert-form .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(211, 199, 188, 0.06);
  background: rgba(255, 255, 255, 0.06);
}

.expert-form .btn-primary {
  width: 100%;
  border-radius: 0;
  padding: 18px 32px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.expert-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ========================================
   FOOTER — Premium Dark
   ======================================== */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 0px 0 24px;
  position: relative;
  border-top: 1px solid rgba(89, 61, 45, 0.1);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(211, 199, 188, 0.02) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}

.footer-logo i {
  margin-right: 10px;
  color: var(--gold);
  font-size: 1.8rem;
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; list-style: none; }
.footer-section ul li a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section ul li a:hover { color: var(--gold); }
.footer-section p {
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  line-height: 1.7;
}

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(89, 61, 45, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--duration-normal) var(--ease-luxury);
}
.social-links a:hover {
  background: var(--espresso);
  color: #ffffff;
  transform: translateY(-2px);
  border-color: var(--gold);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-contact i {
  margin-right: 10px;
  color: var(--gold);
  width: 20px;
}

.footer-bottom {
  background-color: transparent;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(89, 61, 45, 0.08);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-project-logo,
.footer-aldar-logo {
  height: 90px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  font-size: 0.85rem;
}

.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}
.footer-links a:hover { color: var(--gold); }

/* ========================================
   LOCATION SECTION
   ======================================== */
.location-section {
  padding: 7rem 0;
  background: var(--navy-light);
  position: relative;
  border-top: 1px solid rgba(89, 61, 45, 0.08);
}

.location-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

.location-section .container {
  position: relative;
  z-index: 2;
}

.location-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.location-section .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.location-section .section-header p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 600px;
  margin: 0 auto;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
}

.location-map-container {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  padding: 3px;
  border: 1px solid rgba(89, 61, 45, 0.1);
}

.location-map-container::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gradient-map-overlay);
  border-radius: 0;
  z-index: 1;
  pointer-events: none;
}

.location-map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.4s var(--ease-luxury);
  background: var(--navy);
}

.location-map-container:hover iframe { transform: scale(1.01); }
.location-map-container:hover {
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  border-color: rgba(89, 61, 45, 0.18);
}
.location-map-container iframe:not([src=""]) { background: transparent; }

.location-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.location-detail {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0;
  border: 1px solid rgba(89, 61, 45, 0.08);
  transition: all 0.4s var(--ease-luxury);
}

.location-detail:hover {
  background: rgba(89, 61, 45, 0.05);
  border-color: rgba(89, 61, 45, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.location-detail p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.location-detail h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0.5rem 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}

/* Location Icons — Gold Gradient */
.location-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  margin-bottom: 0.5rem;
  transition: all var(--duration-normal) var(--ease-luxury);
}

.location-icon i,
.location-icon i::before {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.location-icon i {
  font-size: 1.4rem;
  color: var(--gold);
}

.beach-icon,
.tent-icon,
.marina-icon,
.parking-icon {
  background: rgba(89, 61, 45, 0.1);
  border: 1px solid rgba(211, 199, 188, 0.12);
  box-shadow: none;
}

.location-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(89, 61, 45, 0.35);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 2rem;
  margin: 4rem 0;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.feature-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(89, 61, 45, 0.08);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.5s var(--ease-luxury);
  display: flex;
  flex-direction: column;
}

.feature-item:hover {
  transform: translateY(-6px);
  border-color: rgba(89, 61, 45, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.feature-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(12, 18, 32, 0.4), transparent);
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.8s var(--ease-luxury);
}

.feature-item:hover .feature-image img {
  transform: scale(1.06);
}

.feature-content {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-content h3 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-size: 0.92rem;
  flex-grow: 1;
}

/* ========================================
   WELLNESS CAROUSEL
   ======================================== */
.wellness-carousel {
  border-radius: 0;
  overflow: hidden;
  max-width: 600px;
  margin: 2rem 0 3rem 0;
}

.wellness-swiper {
  width: 100%;
  height: 350px;
}

.wellness-swiper .swiper-slide {
  height: 350px;
}

.wellness-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
}

.wellness-swiper .swiper-pagination {
  bottom: 10px;
}

.wellness-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.wellness-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(89, 61, 45, 0.4);
}

.wellness-swiper .swiper-button-next,
.wellness-swiper .swiper-button-prev {
  color: var(--gold);
  background: rgba(7, 11, 20, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(89, 61, 45, 0.15);
  border-radius: 0;
  width: 42px;
  height: 42px;
}

.wellness-swiper .swiper-button-next:after,
.wellness-swiper .swiper-button-prev:after {
  font-size: 16px;
}

/* ========================================
   BROCHURE DIALOG — Premium Modal
   ======================================== */
.brochure-dialog {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brochure-dialog .dialog-content {
  background: var(--navy-light);
  border: 1px solid rgba(89, 61, 45, 0.12);
  border-radius: 0;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: dialogReveal 0.6s var(--ease-luxury);
}

@keyframes dialogSlideIn {
  from { opacity: 0; transform: translateY(-30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.brochure-dialog .dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(89, 61, 45, 0.12);
  width: 40px;
  height: 40px;
  border-radius: 0;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--duration-normal) var(--ease-luxury);
  z-index: 10;
}

.brochure-dialog .dialog-close:hover {
  background: rgba(89, 61, 45, 0.12);
  color: var(--gold);
  border-color: var(--gold);
}

.brochure-dialog .dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.brochure-dialog .dialog-image {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 0;
}

.brochure-dialog .dialog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  opacity: 0.85;
}

.brochure-dialog .dialog-form {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy-light);
}

.brochure-dialog .dialog-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: 0.02em;
}

.brochure-dialog .dialog-form p {
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}

.brochure-dialog .brochure-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brochure-dialog .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brochure-dialog .form-group label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

.brochure-dialog .form-group input {
  padding: 14px 18px;
  border: 1px solid rgba(89, 61, 45, 0.15);
  border-radius: 0;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.4s var(--ease-luxury);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.brochure-dialog .form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(89, 61, 45, 0.1);
}

#brochure-phone {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.iti {
  display: block !important;
  visibility: visible !important;
}

.brochure-dialog .btn-primary {
  background: var(--espresso);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

.brochure-dialog .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ========================================
   ERROR & SUCCESS MESSAGES
   ======================================== */
.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.success-message {
  color: #22c55e;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.error-message.show { display: block; }
.success-message.show { display: block; }

/* ========================================
   TOAST NOTIFICATIONS — Premium
   ======================================== */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--navy-light);
  border: 1px solid rgba(89, 61, 45, 0.12);
  border-radius: 0;
  padding: 16px 20px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
  border-left: 3px solid #22c55e;
  transform: translateX(400px);
  transition: transform 0.5s var(--ease-luxury);
  min-width: 300px;
  max-width: 400px;
  backdrop-filter: blur(20px);
}

.toast.show { transform: translateX(0); }
.toast-success { border-left-color: #22c55e; }
.toast-error { border-left-color: #ef4444; }
.toast-content { display: flex; align-items: center; gap: 12px; }
.toast-icon { font-size: 18px; font-weight: bold; color: #22c55e; }
.toast-error .toast-icon { color: #ef4444; }
.toast-message { color: rgba(255, 255, 255, 0.8); font-size: 14px; font-weight: 500; line-height: 1.4; }

/* ========================================
   SCROLL REVEAL ANIMATION
   ======================================== */
@keyframes scrollReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ========================================
   VIP BADGE
   ======================================== */
.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--espresso), var(--espresso-light));
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  animation: vipPulse 3s ease-in-out infinite;
}

@keyframes vipPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(89, 61, 45, 0.35); }
  50% { box-shadow: 0 0 0 14px rgba(89, 61, 45, 0); }
}

/* Form VIP Header */
.form-vip-header {
  text-align: center;
  margin-bottom: 8px;
}

.form-vip-header i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
  opacity: 0.8;
}

.form-vip-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--gold);
  margin-bottom: 0;
  text-align: center;
  letter-spacing: 0.02em;
}

.form-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ========================================
   YAS ISLAND ATTRACTIONS SECTION
   ======================================== */
.yas-island-section {
  padding: 7rem 0;
  background: var(--navy-light);
  position: relative;
  border-top: 1px solid rgba(89, 61, 45, 0.08);
}

.yas-attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.attraction-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(89, 61, 45, 0.08);
  border-radius: 0;
  overflow: hidden;
  text-align: center;
  transition: all 0.5s var(--ease-luxury);
  position: relative;
}

.attraction-card:hover {
  border-color: rgba(89, 61, 45, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.attraction-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.attraction-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(12, 18, 32, 0.5), transparent);
  pointer-events: none;
  z-index: 1;
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

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

.attraction-content {
  padding: 1.5rem;
}

.attraction-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
  letter-spacing: var(--ls-subheading);
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.attraction-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

/* ========================================
   INVESTMENT SECTION
   ======================================== */
.investment-section {
  padding: 7rem 0;
  background: var(--navy-light);
  position: relative;
  border-top: 1px solid rgba(89, 61, 45, 0.08);
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.investment-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(89, 61, 45, 0.08);
  border-radius: 0;
  padding: 2.5rem;
  border-left: 2px solid var(--gold);
  transition: all 0.5s var(--ease-luxury);
}

.investment-card:hover {
  background: rgba(89, 61, 45, 0.05);
  border-color: rgba(89, 61, 45, 0.18);
  border-left-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.investment-icon {
  width: 48px;
  height: 48px;
  background: rgba(89, 61, 45, 0.08);
  border: 1px solid rgba(89, 61, 45, 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 1.2rem;
}

.investment-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
  letter-spacing: var(--ls-subheading);
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.investment-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ========================================
   SOLD OUT BANNER
   ======================================== */
.sold-out-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  animation: heroTextReveal 1s var(--ease-luxury) 0.8s both;
}
.sold-out-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(220,38,38,0.12), rgba(220,38,38,0.06));
  border: 1px solid rgba(220,38,38,0.35);
  border-radius: 0;
  color: #ff6b6b;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.sold-out-badge i {
  font-size: 0.9rem;
  color: #ff4444;
  animation: firePulse 1.5s ease-in-out infinite;
}
@keyframes firePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}
.sold-out-value {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.sold-out-value .value-amount {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}
.sold-out-value .value-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   LIGHT-MODE OVERRIDES — Yas Island, Investment, Experts
   Warm champagne backgrounds with espresso accents
   ======================================== */

/* --- Section Backgrounds --- */
.yas-island-section {
  background: var(--navy);
  border-top: 1px solid rgba(89, 61, 45, 0.08);
}
.investment-section {
  background: #ebe4dd;
  border-top: none;
}
.experts-contact {
  background: #ebe4dc;
  border-top: none;
}

/* --- Section Headers on Light --- */
.investment-section .section-header h2 {
  color: var(--espresso);
}
.investment-section .section-header p {
  color: #6b5d53;
}

/* --- Investment Cards --- */
.investment-card {
  background: #ffffff;
  border: 1px solid rgba(89, 61, 45, 0.08);
  border-left: 2px solid var(--espresso);
  box-shadow: 0 2px 12px rgba(89, 61, 45, 0.06);
}
.investment-card:hover {
  background: #ffffff;
  border-color: rgba(89, 61, 45, 0.12);
  border-left-color: var(--espresso-light);
  box-shadow: 0 16px 40px rgba(89, 61, 45, 0.12);
}
.investment-icon {
  background: rgba(89, 61, 45, 0.06);
  border: 1px solid rgba(89, 61, 45, 0.1);
  color: var(--espresso);
}
.investment-card h4 {
  color: var(--espresso);
}
.investment-card p {
  color: #6b5d53;
}

/* --- Experts / Why Yas Park Place on Light --- */
.experts-left h2 {
  color: var(--espresso);
}
.experts-left p {
  color: #6b5d53;
}
.expert-feature h4 {
  color: var(--espresso);
}
.expert-feature i {
  color: var(--espresso);
}
.expert-feature p {
  color: #6b5d53;
}
.expert-feature:hover {
  background: rgba(89, 61, 45, 0.05);
  border-left-color: var(--espresso);
}

/* --- Contact Form Section --- */
.contact-form-section {
  padding: 5rem 0;
  background: var(--navy);
}

/* --- Experts Form — Main Color --- */
.experts-form {
  background: #593d2d;
  border: 1px solid rgba(211, 199, 188, 0.15);
  box-shadow: 0 12px 40px rgba(89, 61, 45, 0.3);
}
.experts-form h3 {
  color: #ffffff;
}
.experts-form-subtitle {
  color: rgba(255, 255, 255, 0.65);
}
.experts-form-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.experts-form .form-group label {
  color: var(--gold);
}
.expert-form .form-group input,
.expert-form .form-group select,
.expert-form .form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(211, 199, 188, 0.2);
  color: #ffffff;
}
.expert-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.expert-form .form-group input:focus,
.expert-form .form-group select:focus,
.expert-form .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(211, 199, 188, 0.1);
  background: rgba(255, 255, 255, 0.12);
}
.experts-form .privacy-guarantee {
  color: rgba(255, 255, 255, 0.4);
}
.experts-form .btn-primary {
  background: #ffffff;
  color: var(--espresso);
}
.experts-form .btn-primary:hover {
  background: var(--gold);
  color: var(--espresso);
}

/* --- Wellness Swiper on Light --- */
.wellness-swiper .swiper-pagination-bullet {
  background: rgba(89, 61, 45, 0.25);
}
.wellness-swiper .swiper-pagination-bullet-active {
  background: var(--espresso);
}

/* ========================================
   TABLET RESPONSIVE STYLES
   ======================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .floor-plans-diagram {
    margin: 0 auto;
    width: 100%;
  }

  .hero {
    padding: 0;
    background-attachment: scroll;
  }

  .gallery { padding: 50px 0; }

  .hero-grid {
    gap: 20px;
    min-height: auto;
  }

  .hero-form-container {
    padding: 0;
    min-height: auto;
    height: auto;
  }

  .hero-form {
    height: auto;
    min-height: auto;
  }

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

  .hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.88rem;
  }

  .property-facts {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 10px;
  }

  .fact-card {
    height: auto !important;
    padding: 12px 8px;
    margin: auto;
  }

  .fact-number { font-size: 1.3rem; }
  .hero-property-info { padding-top: 10px; }
  .feature-tags { justify-content: center; }
  .plans-grid { grid-template-columns: 1fr; gap: 20px; }
  .payment-options { grid-template-columns: 1fr; gap: 20px; }
  .payment-option-tabs { gap: 0.75rem; }
  .payment-option-tab { padding: 0.75rem 1.5rem; }
  .payment-option-tab .tab-ratio { font-size: 1.3rem; }

  .payment-horizontal {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .payment-connector {
    transform: rotate(90deg);
    width: auto;
    height: 24px;
  }

  [dir="rtl"] .payment-connector {
    transform: rotate(-90deg);
  }

  .step-number { margin: 0px; font-size: 1.8rem; }
  .step-content h4 { font-size: 0.95rem; font-weight: 600; }
  .form-row { grid-template-columns: 1fr; }

  .gallery-content {
    gap: 30px;
    padding: 0 15px;
  }

  .brochure-dialog .brochure-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .brochure-dialog .dialog-form p { margin-bottom: 0px; }

  .gallery-section {
    margin-top: 40px;
    width: 100%;
    margin: 0 auto;
  }

  .gallery-section h3 { font-size: 1.5rem; margin-bottom: 20px; }

  .gallery-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .tab-btn {
    flex: 1;
    min-width: 0;
    max-width: 200px;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .gallery-carousel { margin-bottom: 20px; }
  .gallery-carousel .swiper { height: 400px; }
  .swiper-button-next, .swiper-button-prev { width: 48px; height: 48px; }
  .swiper-button-next::after, .swiper-button-prev::after { font-size: 1.2rem; }
  .floor-plans { padding: 50px 0; }

  .floor-plans-diagram {
    padding: 20px 16px;
    margin-top: 24px;
    width: 100%;
  }

  .floor-plans-diagram h3 { font-size: 1.4rem; margin-bottom: 20px; }
  .floor-plan-content { min-height: auto; }
  .payment-card { padding: 24px 16px; }
  .footer-content { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-logos { justify-content: center; margin-bottom: 1rem; }
  .footer-project-logo, .footer-aldar-logo { height: 35px; }
  .location-content { grid-template-columns: 1fr; gap: 2rem; }

  .location-details {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: auto 0px;
  }

  .location-section .section-header h2 { font-size: 2rem; }
  .section-header4 h2 { font-size: 2rem; }
  .location-section .section-header p { font-size: 1rem; }
  .section-header4 p { font-size: 1rem; }
  .location-map-container { padding: 4px; }
  .location-map-container iframe { height: 350px; }
  .floating-buttons { right: 20px; bottom: 20px; }
  .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
  .about-content { gap: 40px; }
  .about-sidebar { position: static !important; top: auto !important; }
  .about-project { padding: 50px 0; }
  .project-image { height: 150px; margin-bottom: 20px; }
  .special-offer.sticky { position: static !important; top: auto !important; }
  .gallery-section { margin-top: 20px; }
  .gallery-carousel .swiper { height: 300px; }
  .gallery-carousel .swiper-slide { height: 300px; }

  .brochure-dialog .dialog-content {
    width: 95%;
    max-height: 95vh;
    margin: 20px;
  }

  .brochure-dialog .dialog-grid { grid-template-columns: 1fr; min-height: auto; }
  .brochure-dialog .dialog-image { height: 250px; }
  .brochure-dialog .dialog-form { padding: 30px 20px; }
  .brochure-dialog .dialog-form h3 { font-size: 1.5rem; }

  .toast-container { top: 10px; right: 10px; left: 10px; }
  .toast { min-width: auto; max-width: none; }

  .features-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1rem 0;
  }

  .feature-image { height: 200px; }
  .feature-content { padding: 1.2rem; }
  .feature-content h3 { font-size: 1.2rem; }
  .feature-content p { font-size: 0.85rem; }
  .expert-features { gap: 0.5rem; }

  .location-section .container { padding: 2rem 1.5rem; }
  .location-detail { padding: 0.8rem; }
  .location-detail h3 { font-size: 1.5rem; }
  .location-detail p { font-size: 0.9rem; }

  .wellness-carousel { max-width: 100%; margin: 0; }
  .wellness-swiper { height: 300px; }
  .wellness-swiper .swiper-slide { height: 300px; }
  .wellness-swiper .swiper-button-next, .wellness-swiper .swiper-button-prev { width: 35px; height: 35px; }
  .dialog-image img { object-position: 50% 12%; }
  .wellness-swiper .swiper-button-next:after, .wellness-swiper .swiper-button-prev:after { font-size: 14px; }
  .dialog-grid { grid-template-columns: 1fr; }
  .dialog-image { height: 250px; }
  .experts-content { grid-template-columns: 1fr; gap: 2rem; }
  .payment-step { min-width: auto; width: 100%; }
  .section-header h2 { font-size: 2rem; }
  .section-header p { font-size: 1rem; }

  .section-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .yas-attractions-grid { grid-template-columns: 1fr; gap: 1rem; }
  .investment-grid { grid-template-columns: 1fr; }

  .sold-out-banner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  [dir="rtl"] .sold-out-banner { align-items: flex-end; }
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */
@media (max-width: 480px) {
  .hero {
    background-attachment: scroll;
  }

  .hero::after { display: none; }

  .hero-grid {
    grid-template-areas:
      "logos logos"
      "text text"
      "form form";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0px !important;
    text-align: center;
    min-height: auto;
    height: auto;
    padding: 1rem;
  }

  .hero-logos { padding: 15px 0; margin-bottom: 15px; }
  .hero-bottom-logos { padding: 15px 0; margin-top: 15px; }
  .developer-logo-top, .aldar-logo-top { height: 30px; }
  .project-logo-top { height: 96px; }
  .zain-logo-top { height: 50px; }
  .zain-logo-bottom { height: 45px; }

  .hero-form-container { padding: 0; min-height: auto; height: auto; }
  .hero-form { height: auto; min-height: auto; padding: 28px; }
  .hero-title { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .property-facts { grid-template-columns: repeat(2, 1fr); width: 100%; gap: 10px; }
  .hero-property-info { padding: 8px; }
  .about-content { flex-direction: column; gap: 40px; }
  .about-left { flex: none; }
  .about-sidebar { flex: none; position: static; top: auto; }
  .experts-content { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
  .plans-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .payment-options { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .location-section .container { flex-direction: column; }
  .step-number { font-size: 1.8rem; }

  .swiper-backface-hidden .swiper-slide { height: fit-content; }
  .step-content h4 { font-size: 0.9rem; margin-bottom: 0px; }
  .special-offer.sticky { position: static; top: auto; }

  .gallery-content {
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 100%;
    padding: 0 20px;
  }

  .gallery-sidebar { order: 2; }
  .gallery-left { max-width: 100%; order: 1; }
  .gallery-tabs { justify-content: center; flex-direction: row; gap: 12px; margin-bottom: 20px; }
  .tab-btn { padding: 10px 20px; font-size: 0.9rem; }

  .gallery-carousel {
    margin-bottom: 20px;
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-carousel .swiper {
    width: 100% !important;
    max-width: 100% !important;
    height: 350px;
    min-height: auto;
    max-height: none;
  }

  .payment-horizontal { margin: 1rem 0rem; gap: 1.5rem; }
  .swiper-button-next, .swiper-button-prev { width: 44px; height: 44px; }
  .swiper-button-next::after, .swiper-button-prev::after { font-size: 1.2rem; }
  .floor-plans { padding: 40px 0; }

  .floor-plan-tabs {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px;
  }

  .floor-plan-tab { padding: 8px 12px; font-size: 0.75rem; }

  .floor-plans-diagram {
    max-width: 100%;
    padding: 16px;
    overflow: hidden;
    margin-top: 20px;
  }

  .floor-plans-diagram h3 { font-size: 1.2rem; margin-bottom: 16px; }
  .floor-plan-content { min-height: auto; }
  .floor-plan-diagram { height: auto; min-height: auto; max-height: none; display: none; }
  .floor-plan-diagram.active { display: block; height: auto; min-height: auto; max-height: none; }
  .floor-plan-diagram img { width: 100%; height: auto; max-height: none; object-fit: contain; }
  .section-header h2 { font-size: 1.6rem; }
  .section-header4 h2 { font-size: 1.6rem; }
  .section-header p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.45); }
  .payment-plans { padding: 50px 15px; }
  .payment-step { gap: 0.5rem; padding: 1.5rem 1rem; }
  .experts-contact { padding: 40px 15px; text-align: center; background: #ebe4dc; overflow-x: hidden; }

  .experts-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow-x: hidden;
  }

  .experts-image { height: 200px; margin-bottom: 25px; }
  .experts-form .btn-primary { margin: auto; }
  .experts-form { padding: 32px 20px; }
  .expert-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .section-title { font-size: 2rem; }
  .section-title::after { margin-left: auto; margin-right: auto; }
  .about-project { padding: 2.5rem 0; }
  .about-content { padding: 15px; gap: 24px; }
  .gallery { padding: 40px 0; }
  .golden-visa { padding: 2.5rem 15px; }
  .location-section { padding: 2.5rem 0; }
  .location-detail { padding: 1rem 0.5rem; }
  .location-detail h3 { font-size: 1.3rem; }
  .container { padding: 0 15px; }
  .experts-contact { padding: 30px 15px; }
  .section-header { margin-bottom: 2rem; }

  .experts-form h3 { font-size: 1.5rem; }
  .experts-form p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.45); margin-bottom: 1.5rem; }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero::after { animation: none; }
  .float-btn::before { animation: none; }
}
