/* ═══════════════════════════════════════════════════════════════
   XAYDAB PREMIUM — Main Stylesheet
   Premium Western-Style Real Estate Industrial Park Landing Page
   Design Language: Luxury Dubai / American Property
   ═══════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════
   § CSS CUSTOM PROPERTIES (Design Tokens)
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* — Navy Palette — */
  --navy-900: #0a1628;
  --navy-800: #0f2140;
  --navy-700: #152d54;
  --navy-600: #1a3a6a;
  --navy-500: #1e4d8e;

  /* — Champagne Gold — */
  --gold-500: #c9a84c;
  --gold-400: #d4b85c;
  --gold-300: #e0c96d;
  --gold-gradient: linear-gradient(135deg, #c9a84c, #e0c96d);

  /* — Neutrals — */
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #adb5bd;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  /* — Glass / Frost — */
  --glass-bg: rgba(10, 22, 40, 0.7);
  --glass-border: rgba(201, 168, 76, 0.2);
  --glass-blur: blur(20px);

  /* — Typography — */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* — Layout — */
  --container-max: 1280px;
  --header-height: 72px;
}


/* ═══════════════════════════════════════════════════════════════
   § GLOBAL RESET & BASE STYLES
   ═══════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}

/* — Container — */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* — Screen-reader only — */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ═══════════════════════════════════════════════════════════════
   § SECTION TITLE COMPONENT
   ═══════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-500);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.15;
  margin-bottom: 16px;
}

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

.section-desc {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════
   § HEADER — Glassmorphism Sticky Navigation
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 16px 0;
}

.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* — Logo — */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 28px;
  color: var(--gold-500);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* — Main Navigation — */
.main-nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* — Header Actions — */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* — Language Switcher — */
.lang-switcher {
  position: relative;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 14px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy-800);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

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

.lang-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.lang-option:hover,
.lang-option.active {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-400);
}

/* — Mobile Menu Button — */
.mobile-menu-btn {
  display: none;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  left: 4px;
}

.mobile-menu-btn span:nth-child(1) { top: 8px; }
.mobile-menu-btn span:nth-child(2) { top: 15px; }
.mobile-menu-btn span:nth-child(3) { top: 22px; }

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 15px;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
}

/* — Mobile Navigation Overlay — */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.mobile-nav-link:hover {
  color: var(--gold-400);
}

.mobile-lang {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.mobile-lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 20px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}


/* ═══════════════════════════════════════════════════════════════
   § HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(15, 33, 64, 0.6) 50%,
    rgba(10, 22, 40, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* — Hero Label with decorative line — */
.hero-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--gold-400);
  margin-bottom: 24px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold-400);
  flex-shrink: 0;
}

/* — Hero Title — */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--gold-400);
}

/* — Hero Subtitle — */
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* — Hero CTA Buttons — */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold-gradient);
  border: none;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

/* — Hero Stats Bar — */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════════
   § ABOUT / INTRODUCE SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-about {
  padding: 120px 0;
  background: var(--white);
}

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

.about-content {
  /* Left side text wrapper */
  min-width: 0;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-700);
  text-align: justify;
}

.about-image {
  position: relative;
  min-width: 0;
}

.about-image img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  height: 480px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.about-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--gold-400);
  border-radius: 16px;
  z-index: -1;
}


/* ═══════════════════════════════════════════════════════════════
   § OVERVIEW / FACTS SECTION (Dark parallax)
   ═══════════════════════════════════════════════════════════════ */
.section-overview {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.overview-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.overview-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(15, 33, 64, 0.85) 100%
  );
}

.overview-content {
  position: relative;
  z-index: 2;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.fact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.1);
}

.fact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--gold-400);
  font-size: 22px;
}

.fact-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 500;
}

.fact-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════
   § LOCATION SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-location {
  padding: 120px 0;
  background: var(--gray-50);
}

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

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.location-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-card:hover {
  transform: translateX(8px);
  border-color: var(--gold-400);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.1);
}

.location-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  border-radius: 12px;
  color: var(--gold-400);
  font-size: 20px;
}

.location-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
  font-size: 1rem;
}

.location-card p {
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.location-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.location-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.4) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════════
   § GALLERY SECTION (Masonry-inspired)
   ═══════════════════════════════════════════════════════════════ */
.section-gallery {
  padding: 120px 0;
  background: var(--white);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Second item spans 2 rows for masonry effect */
.gallery-item:nth-child(2) {
  grid-row: span 2;
}

.gallery-item .gallery-zoom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  border: none;
  cursor: pointer;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   § AMENITIES SECTION (Dark parallax)
   ═══════════════════════════════════════════════════════════════ */
.section-amenities {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.amenities-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.amenities-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.92);
}

.amenities-content {
  position: relative;
  z-index: 2;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.amenity-card:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.15);
}

.amenity-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 20px;
  color: var(--gold-400);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.amenity-card:hover .amenity-icon {
  background: rgba(201, 168, 76, 0.25);
  transform: scale(1.1);
}

.amenity-icon svg {
  width: 32px;
  height: 32px;
}

.amenity-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.amenity-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   § DOCUMENTS / DOWNLOADS SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-documents {
  padding: 120px 0;
  background: var(--gray-50);
}

.doc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.doc-item:hover {
  border-color: var(--gold-400);
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.doc-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.doc-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 10px;
  color: #dc2626;
}

.doc-number {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-900);
  font-size: 14px;
  width: 28px;
  flex-shrink: 0;
}

.doc-name {
  color: var(--gray-800);
  font-size: 0.95rem;
  font-weight: 500;
}

.doc-download {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.doc-download:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

.doc-download svg {
  width: 16px;
  height: 16px;
}


/* ═══════════════════════════════════════════════════════════════
   § NEWS SECTION (Auto-scrolling marquee)
   ═══════════════════════════════════════════════════════════════ */
.section-news {
  padding: 80px 0;
  background: var(--white);
}

.news-scroll {
  overflow: hidden;
  position: relative;
}

.news-track {
  display: flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
}

.news-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.news-card {
  flex-shrink: 0;
  width: 350px;
  padding: 28px;
  background: var(--gray-50);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.news-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.news-source {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-900);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-source::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

.news-card p {
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   § VIDEO SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-video {
  padding: 80px 0;
  background: var(--navy-900);
}

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

.video-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-lazy {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-lazy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-lazy:hover img {
  transform: scale(1.05);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(201, 168, 76, 0.9);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold-500);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--navy-900);
}


/* ═══════════════════════════════════════════════════════════════
   § CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-contact {
  padding: 120px 0;
  background: var(--white);
}

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

.contact-subtitle {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* — Contact Form — */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
}

.btn-submit:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

/* — Form Success State — */
.form-success {
  display: none;
  padding: 20px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold-400);
  border-radius: 12px;
  text-align: center;
  color: var(--navy-900);
  font-weight: 600;
}

.form-success.show {
  display: block;
}

/* — Contact Image — */
.contact-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.contact-image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
}


/* ═══════════════════════════════════════════════════════════════
   § FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: relative;
}

.footer-bg img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.9) 0%,
    rgba(15, 33, 64, 0.85) 100%
  );
}

.footer-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  color: var(--white);
}

.footer-company-name {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-investor {
  font-size: 13px;
  color: var(--gold-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-info-item svg {
  flex-shrink: 0;
  color: var(--gold-400);
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.footer-menu-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-link::before {
  content: '›';
  color: var(--gold-500);
  font-weight: 700;
  flex-shrink: 0;
}

/* — Footer Social Icons — */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

/* — Copyright Bar — */
.copyright {
  text-align: center;
  padding: 16px 0;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}


/* ═══════════════════════════════════════════════════════════════
   § SCROLL TO TOP BUTTON
   ═══════════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold-500);
  color: var(--navy-900);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

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

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
}


/* ═══════════════════════════════════════════════════════════════
   § KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}


/* ═══════════════════════════════════════════════════════════════
   § RESPONSIVE — Tablet (≤ 1024px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Header — show mobile menu */
  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Hero stats — 2 columns */
  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About — single column */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image::after {
    display: none;
  }

  .about-image img {
    height: 350px;
  }

  /* Location — single column */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Facts & Amenities — 2 columns */
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Gallery — 2 columns, no row span */
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(2) {
    grid-row: auto;
  }

  /* Contact — single column */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   § RESPONSIVE — Mobile (≤ 640px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Hero stats */
  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 20px 16px;
  }

  /* Facts & Amenities — single column */
  .facts-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery — single column */
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  /* Form — single column rows */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Video — single column */
  .video-grid {
    grid-template-columns: 1fr;
  }

  /* Footer — single column */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Reduce section padding */
  .section-about,
  .section-overview,
  .section-location,
  .section-gallery,
  .section-amenities,
  .section-documents,
  .section-contact {
    padding: 80px 0;
  }

  /* Documents — stack vertically */
  .doc-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .doc-download {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   § FLOATING CONTACT WIDGET
   ═══════════════════════════════════════════════════════════════ */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    position: relative;
}
.float-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.float-zalo {
    background: #0068ff;
    color: white;
    border: 2px solid white;
}
.float-phone {
    background: #00b14f;
    border: 2px solid white;
}
.float-messenger {
    background: #0084ff;
    border: 2px solid white;
}
.float-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Tooltips */
.float-tooltip {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(15px);
    background: #fff;
    color: #333;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    pointer-events: none;
    font-family: var(--font-body);
    font-weight: 500;
}
.float-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}
.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(20px);
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        left: 20px;
    }
    .float-btn {
        width: 44px;
        height: 44px;
    }
    .float-btn svg {
        width: 20px;
        height: 20px;
    }
    .float-tooltip {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   § PRESS SECTION
   ═══════════════════════════════════════════════════════════════ */
.press-card {
    display: block;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
}
.press-card:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}
.press-source {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-500);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.press-title {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    font-weight: 600;
}
