@charset "UTF-8";

/* ============================================================
   ASONA ABUSUA GLOBAL — AWARD-WINNING CORPORATE REDESIGN
   Theme: Royal Corporate Gold on Obsidian Navy
   Typography: Cormorant Garamond (Display) + DM Sans (Body)
   Version: 3.0 | Stan Paraclete 2026
   ============================================================ */

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
  /* Gold palette */
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-dark:     #8B6914;
  --gold-faint:    rgba(201,168,76,0.12);
  --gold-border:   rgba(201,168,76,0.22);

  /* Navy palette */
  --navy:          #080C18;
  --navy-mid:      #0F1525;
  --navy-panel:    #141B2E;
  --navy-card:     #1A2238;

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #F7F5EF;
  --text-primary:  #1A1F2E;
  --text-body:     #3D4458;
  --text-muted:    #7B8098;

  /* Brand accents – legacy kept for compatibility */
  --brand-main:    #C9A84C;
  --brand-dark:    #26282b;

  /* Shadows */
  --shadow-xs:     0 2px 8px rgba(8,12,24,0.06);
  --shadow-sm:     0 4px 16px rgba(8,12,24,0.08);
  --shadow-md:     0 8px 32px rgba(8,12,24,0.12);
  --shadow-lg:     0 20px 60px rgba(8,12,24,0.16);
  --shadow-gold:   0 8px 40px rgba(201,168,76,0.20);

  /* Motion */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0, 0, 0.2, 1);
  --speed:         0.32s;

  /* Shape */
  --radius-sm:     3px;
  --radius:        6px;
  --radius-lg:     12px;

  /* Typography */
  --font-display:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', 'Poppins', system-ui, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  outline: none !important;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }

a {
  color: var(--gold-dark);
  transition: color var(--speed) var(--ease);
}
a:hover { color: var(--gold); text-decoration: none; }

h1, h2 { font-family: var(--font-display); }
h3, h4, h5, h6 { font-family: var(--font-body); }

.overflow { overflow: hidden; }

.container { max-width: 1300px; }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
  padding: 0 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: #fff;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
textarea {
  height: 150px;
  padding: 14px 18px;
  resize: vertical;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
button[type=submit] {
  height: 52px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--navy);
  padding: 0 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
button[type=submit]:hover {
  opacity: 0.90;
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   ODOMETER
   ============================================================ */
.odometer { line-height: 1; }
.odometer.odometer-auto-theme,
.odometer.odometer-theme-car { padding: 0; }
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-car .odometer-digit { padding: 0; }
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-car .odometer-digit .odometer-digit-inner { left: 0; }

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.accordion {
  width: 100%;
  float: left;
  background: #fff;
  padding: 0;
}
.accordion .card {
  background: none;
  border-radius: var(--radius-sm) !important;
  margin-top: 0;
  margin-bottom: 6px;
  border: 1px solid var(--gold-border) !important;
  overflow: hidden;
  transition: box-shadow var(--speed) var(--ease);
}
.accordion .card:hover { box-shadow: var(--shadow-sm); }
.accordion .card .card-header {
  background: none;
  padding: 0;
  border-bottom: none;
}
.accordion .card .card-header a {
  width: 100%;
  float: left;
  padding: 18px 24px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: color var(--speed) var(--ease);
}
.accordion .card .card-header a:before {
  content: "+";
  float: left;
  margin-right: 10px;
  color: var(--gold);
  font-weight: 700;
}
.accordion .card .card-header a:hover { color: var(--gold-dark); text-decoration: none; }
.accordion .card .card-body {
  width: 100%;
  border-top: 1px solid var(--gold-border);
  line-height: 1.8;
  padding: 16px 24px;
  color: var(--text-body);
}
.accordion .card [aria-expanded=true] { color: var(--gold-dark) !important; }
.accordion .card [aria-expanded=true]:before { content: "-" !important; color: var(--gold) !important; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; }
.pagination .page-item { display: inline-block; margin-right: 6px; }
.pagination .page-item.active .page-link {
  background: var(--gold);
  color: var(--navy);
  border-color: transparent;
}
.pagination .page-item .page-link {
  display: inline-block;
  border-radius: var(--radius-sm) !important;
  padding: 12px 18px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid var(--gold-border);
  line-height: 1;
  transition: all var(--speed) var(--ease);
}
.pagination .page-item .page-link:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-faint); }

/* ============================================================
   GALLERY SLIDER (Swiper)
   ============================================================ */
.gallery-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  text-align: center;
  margin: 30px 0;
  background: var(--navy);
  border-radius: var(--radius);
}
.gallery-container .swiper-wrapper { width: 100%; float: left; position: relative; }
.gallery-container .swiper-slide { width: 80%; margin: 0; opacity: 0.5; transition: opacity 0.4s; }
.gallery-container .swiper-slide.swiper-slide-active { opacity: 1; }
.gallery-container .swiper-slide img { width: 100%; }
.gallery-container .gallery-pagination { bottom: 20px; position: absolute; z-index: 2; }
.gallery-container .gallery-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.4); opacity: 1; }
.gallery-container .gallery-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active { background: var(--gold); }

/* ============================================================
   VIDEO BACKGROUND
   ============================================================ */
.video-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0; top: 0;
  overflow: hidden;
  background: var(--navy);
}
.video-bg video {
  min-width: 100%;
  min-height: 100%;
  float: left;
  opacity: 0.12;
}

/* ============================================================
   NAV PILLS
   ============================================================ */
.nav-pills { width: 100%; display: flex; flex-wrap: wrap; margin-bottom: 40px; }
.nav-pills .nav-item { display: inline-block; margin-right: 30px; }
.nav-pills .nav-item:last-child { margin-right: 0; }
.nav-pills .nav-item .nav-link {
  background: none;
  color: var(--text-body);
  border-bottom: 2px solid transparent;
  padding: 4px 0;
  border-radius: 0;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all var(--speed) var(--ease);
}
.nav-pills .nav-item .nav-link.active { border-bottom: 2px solid var(--gold); color: var(--gold-dark); }
.nav-pills .nav-item .nav-link:hover { color: var(--gold-dark); text-decoration: none; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: none;
  display: flex;
  align-items: center;
}
.breadcrumb .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0;
}
.breadcrumb .breadcrumb-item:first-child:before { display: none; }
.breadcrumb .breadcrumb-item:before {
  content: "›";
  color: rgba(10,14,26,0.4);
  font-weight: 400;
  padding: 0 12px;
  font-size: 14px;
}
.breadcrumb .breadcrumb-item.active { color: var(--navy); opacity: 0.6; }
.breadcrumb .breadcrumb-item a { color: var(--navy); font-weight: 700; }
.breadcrumb .breadcrumb-item a:hover { text-decoration: underline; }

/* ============================================================
   HAMBURGER
   ============================================================ */
.hamburger {
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  transition: 500ms;
  transition-timing-function: cubic-bezier(0.86,0,0.07,1);
}
.hamburger span {
  display: block;
  height: 2px;
  width: 28px;
  background: var(--gold-light);
  opacity: 1;
  position: absolute;
  left: 0;
  transform: rotate(0deg);
  transition: 0.28s ease-in-out;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { width: 14px; top: 18px; }
.hamburger span:nth-child(4) { width: 8px; top: 18px; left: 17px; }
.hamburger.open span:nth-child(1) { top: 9px; transform: rotate(135deg); }
.hamburger.open span:nth-child(2) { opacity: 0; left: 20px; }
.hamburger.open span:nth-child(3) { width: 28px; top: 9px; transform: rotate(-135deg); }
.hamburger.open span:nth-child(4) { opacity: 0; left: 20px; }
.hamburger:hover span { background: var(--gold); }

/* ============================================================
   PRELOADER — Dark Luxury
   ============================================================ */
.preloader {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 0; top: 0;
  z-index: 9999;
  background: var(--navy);
  transition: all 0.6s cubic-bezier(0.86,0,0.07,1);
  transition-delay: 0.95s;
  overflow: hidden;
}
.preloader::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}
.preloader * {
  transition: all 0.5s cubic-bezier(0.86,0,0.07,1);
  transition-duration: 700ms;
}
.preloader .layer {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0; top: 0;
  background: var(--navy-panel);
  transition-delay: 0.3s;
}
.preloader .inner {
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 2;
}
.preloader .inner figure {
  display: block;
  margin-bottom: 20px;
  transition-delay: 0.1s;
}
.preloader .inner figure img { height: 64px; filter: drop-shadow(0 4px 20px rgba(201,168,76,0.5)); }
.preloader .inner p {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
}

/* TRANSITION OVERLAY */
.transition-overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: -100%; top: 0;
  z-index: 9998;
  background: var(--navy);
  transition: all 0.5s cubic-bezier(0.86,0,0.07,1);
  overflow: hidden;
}
.transition-overlay .layer {
  width: 100%;
  height: 100vh;
  position: absolute;
  right: -100%; top: 0;
  background: var(--navy-panel);
  transition: all 0.5s cubic-bezier(0.86,0,0.07,1) 0.6s;
}
.transition-overlay.active { left: 0; }
.transition-overlay.active .layer { right: 0; }

/* PAGE LOADED */
.page-loaded .preloader { right: -100%; }
.page-loaded .preloader .inner figure { opacity: 0; transform: scale(1.4); }
.page-loaded .preloader .inner p { transform: translateY(16px); opacity: 0; }
.page-loaded .preloader .layer { left: -100%; }
.page-loaded .navbar .container .upper-side { transform: translateY(0); }
.page-loaded .navbar .container .menu { opacity: 1; }
.page-loaded .slider .slider-container { transform: scale(1); opacity: 1; }

/* ============================================================
   SIDE NAVIGATION — Luxury Dark Panel
   ============================================================ */
.side-navigation {
  width: 400px;
  max-width: 100%;
  height: 100vh;
  min-height: 400px;
  position: fixed;
  left: -100%; top: 0;
  background: var(--navy);
  z-index: 10;
  box-shadow: 10px 0 80px rgba(0,0,0,0.6);
  color: #fff;
  font-size: 14px;
  padding: 0 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: left 0.5s cubic-bezier(0.86,0,0.07,1);
}
.side-navigation::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.side-navigation .menu { display: none; margin-bottom: 24px; }
.side-navigation .menu ul { width: 100%; margin: 0; padding: 0; }
.side-navigation .menu ul li {
  width: 100%;
  display: block;
  margin: 0;
  padding: 3px 0;
  list-style: none;
  position: relative;
}
.side-navigation .menu ul li ul {
  width: 100%;
  display: none;
  padding-left: 20px;
  margin-bottom: 10px;
}
.side-navigation .menu ul li ul li { display: block; }
.side-navigation .menu ul li ul li a {
  font-size: 1.6vw;
  color: rgba(255,255,255,0.55) !important;
}
.side-navigation .menu ul li a {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-size: 2.6vw;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color var(--speed) var(--ease);
}
.side-navigation .menu ul li a:hover { color: var(--gold-light) !important; text-decoration: none; }
.side-navigation .side-content { width: 100%; display: block; }
.side-navigation figure { display: block; margin-bottom: 28px; }
.side-navigation figure img { height: 44px; }
.side-navigation address { display: block; margin-bottom: 20px; }
.side-navigation h6 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 10px;
}
.side-navigation p { display: block; margin-bottom: 24px; color: rgba(255,255,255,0.55); font-size: 13px; }
.side-navigation p a { color: var(--gold-light) !important; }
.side-navigation .gallery { margin-bottom: 20px; padding: 0; margin-left: -5px; margin-right: -5px; }
.side-navigation .gallery li { width: 33.333%; float: left; margin: 0; padding: 0 5px; list-style: none; }
.side-navigation .gallery li img { width: 100%; }
.side-navigation .social-media { width: 100%; float: left; margin: 0 0 20px; padding: 0; }
.side-navigation .social-media li { float: left; margin-left: 6px; padding: 0; list-style: none; }
.side-navigation .social-media li a {
  width: 38px; height: 38px;
  float: left;
  text-align: center;
  line-height: 38px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  transition: all var(--speed) var(--ease);
}
.side-navigation .social-media li a:hover { color: var(--navy); background: var(--gold); border-color: var(--gold); }
.side-navigation.active { left: 0; }

/* ============================================================
   NAVBAR — Fixed glass-dark, premium sticky
   ============================================================ */
.navbar {
  width: 100%;
  padding: 0;
  position: fixed;
  left: 0; top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.navbar.is-scrolled {
  background: rgba(8,12,24,0.96) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 40px rgba(0,0,0,0.5);
}
.navbar .container { flex-direction: column; }

/* UPPER BAR */
.navbar .container .upper-side {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0;
  align-items: center;
  border-bottom: 1px solid rgba(201,168,76,0.14);
  transform: translateY(-72px);
  transition: transform 0.6s cubic-bezier(0.86,0,0.07,1) 1.2s;
}
.page-loaded .navbar .container .upper-side { transform: translateY(0); }

.navbar .container .upper-side .logo img {
  height: 50px;
  filter: drop-shadow(0 2px 12px rgba(201,168,76,0.35));
  transition: filter var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.navbar .container .upper-side .logo img:hover {
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.6));
  transform: scale(1.02);
}

.navbar .container .upper-side .phone-email {
  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
  text-align: right;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.navbar .container .upper-side .phone-email img { display: none; }
.navbar .container .upper-side .phone-email h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--gold-light) !important;
  margin: 0 !important;
  line-height: 1.3;
  display: block;
}
.navbar .container .upper-side .phone-email small a {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 0.3px;
  opacity: 1 !important;
  transition: color var(--speed) var(--ease);
}
.navbar .container .upper-side .phone-email small a:hover { color: var(--gold-light); text-decoration: none; }

.navbar .container .upper-side .language {
  margin-right: 32px;
  margin-left: 48px;
  padding: 8px 0;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.navbar .container .upper-side .language a {
  display: inline-block;
  margin: 0 4px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--speed) var(--ease);
}
.navbar .container .upper-side .language a:hover { color: var(--gold-light); text-decoration: none; }
.navbar .container .upper-side .hamburger { width: 30px; height: 22px; margin-right: 0; }

/* MAIN MENU */
.navbar .container .menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201,168,76,0.10);
  transition: opacity 0.5s cubic-bezier(0.86,0,0.07,1) 1.4s;
  opacity: 0;
}
.page-loaded .navbar .container .menu { opacity: 1; }
.navbar .container .menu ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: 0;
  margin-top: -1px;
  padding: 0;
}
.navbar .container .menu ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
/* Link styles */
.navbar .container .menu ul > li > a {
  color: rgba(255,255,255,0.78) !important;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 20px 16px !important;
  border-top: 2px solid transparent;
  transition: all var(--speed) var(--ease);
}
.navbar .container .menu ul > li > a:hover,
.navbar .container .menu ul > li.active > a {
  color: var(--gold-light) !important;
  border-top-color: var(--gold) !important;
  text-decoration: none !important;
}

/* Dropdown */
.navbar .container .menu ul li:hover > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.navbar .container .menu ul li ul {
  min-width: 240px;
  position: absolute;
  left: 0;
  top: 120%;
  background: var(--navy);
  border: 1px solid var(--gold-border);
  border-top: 2px solid var(--gold);
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--ease);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  z-index: 200;
}
.navbar .container .menu ul li ul::before { display: none !important; }
.navbar .container .menu ul li ul li {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.navbar .container .menu ul li ul li a {
  display: block !important;
  padding: 10px 22px !important;
  color: rgba(255,255,255,0.7) !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px;
  text-transform: none !important;
  border-top: none !important;
  border-left: 2px solid transparent;
  transition: all var(--speed) var(--ease);
}
.navbar .container .menu ul li ul li a:hover {
  color: var(--gold-light) !important;
  border-left-color: var(--gold);
  background: var(--gold-faint);
  padding-left: 28px !important;
  text-decoration: none !important;
}

/* Mobile dropdown toggle button */
.mobile-dropdown-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  cursor: pointer;
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .mobile-dropdown-toggle { display: none !important; }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.slider {
  width: 100%;
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-wrap: wrap;
  background: var(--navy);
  overflow: hidden;
}
.slider .slider-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  transform: scale(1.25);
  transition: transform 0.8s cubic-bezier(0.86,0,0.07,1) 1.25s, opacity 0.8s ease 1.25s;
  opacity: 0;
}
.page-loaded .slider .slider-container { transform: scale(1); opacity: 1; }
.slider .slider-container .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  background-size: cover;
  background-position: center;
}
.slider .slider-container .swiper-slide:after {
  content: "";
  width: 100%; height: 100%;
  position: absolute;
  left: 0; top: 0;
  background: linear-gradient(135deg, rgba(8,12,24,0.88) 0%, rgba(8,12,24,0.65) 55%, rgba(201,168,76,0.15) 100%);
}
.slider .slider-container .swiper-slide .container {
  position: relative;
  z-index: 9;
  padding-left: 80px;
}
.slider .slider-container .swiper-slide .container h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.slider .slider-container .swiper-slide .container h1 span { display: inline-block; position: relative; }
.slider .slider-container .swiper-slide .container h1 span::before {
  content: "";
  width: 247px; height: 70px;
  position: absolute;
  left: 0; top: 40px;
  background: url(../images/title-mark.png) center no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.15;
}
.slider .slider-container .swiper-slide .container h2 {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  letter-spacing: 0.3px;
  line-height: 1.7;
}
/* Hero CTA button */
.slider .slider-container .swiper-slide .container a {
  display: inline-flex;
  align-items: center;
  height: 56px;
  color: var(--navy) !important;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 36px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  box-shadow: var(--shadow-gold);
  border: none;
  transition: all var(--speed) var(--ease);
  text-decoration: none !important;
}
.slider .slider-container .swiper-slide .container a i { margin-left: 10px; }
.slider .slider-container .swiper-slide .container a:hover {
  box-shadow: 0 12px 48px rgba(201,168,76,0.45);
  transform: translateY(-2px);
}
.slider .slider-container .swiper-slide .container figure { float: left; margin-left: 20px; margin-bottom: 0; }
.slider .slider-container .swiper-slide .container figure img { height: 56px; }

/* Slider inner elements */
.slider .slider-container .inner-elements {
  width: 100%;
  position: absolute;
  left: 0; top: 0;
}
.slider .slider-container .inner-elements .container {
  position: relative;
  height: 100vh;
}
/* Social media vertical strip */
.slider .slider-container .inner-elements .container .social-media {
  width: 20px;
  position: absolute;
  left: 15px;
  top: calc(50% + 60px);
  transform: translateY(-50%);
  z-index: 4;
  text-align: center;
}
.slider .slider-container .inner-elements .container .social-media h6 {
  width: 120px;
  color: rgba(255,255,255,0.45);
  transform: rotate(90deg);
  transform-origin: left;
  margin-left: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 120px;
}
.slider .slider-container .inner-elements .container .social-media ul { margin: 0; padding: 0; }
.slider .slider-container .inner-elements .container .social-media ul:before {
  content: "";
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.3);
  display: inline-block;
  margin-bottom: 16px;
  margin-top: 10px;
}
.slider .slider-container .inner-elements .container .social-media ul li { margin: 0; padding: 4px 0; list-style: none; }
.slider .slider-container .inner-elements .container .social-media ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  transition: color var(--speed) var(--ease);
}
.slider .slider-container .inner-elements .container .social-media ul li a:hover { color: var(--gold-light); }

/* Slider pagination */
.slider .slider-container .inner-elements .container .pagination {
  width: auto;
  position: absolute;
  left: auto;
  right: 15px;
  bottom: 24px;
  z-index: 4;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  line-height: 50px;
}
.slider .slider-container .inner-elements .container .pagination .swiper-pagination-current {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-right: 6px;
}
.slider .slider-container .inner-elements .container .pagination .swiper-pagination-total {
  font-size: 18px;
  margin-left: 6px;
  opacity: 0.5;
}

/* Slider nav buttons */
.slider .slider-container .inner-elements .container .button-prev,
.slider .slider-container .inner-elements .container .button-next {
  width: 40px;
  position: absolute;
  right: 10px;
  z-index: 4;
  transform: rotate(90deg);
  transform-origin: bottom;
  font-family: var(--font-body);
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--speed) var(--ease);
}
.slider .slider-container .inner-elements .container .button-prev { top: calc(50% + 60px); margin-top: -60px; }
.slider .slider-container .inner-elements .container .button-next { top: calc(50% + 60px); margin-top: 60px; }
.slider .slider-container .inner-elements .container .button-prev:after {
  content: "";
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.3);
  position: absolute;
  right: calc(-100% - 20px);
  top: 6px;
}
.slider .slider-container .inner-elements .container .button-prev:hover,
.slider .slider-container .inner-elements .container .button-next:hover { color: var(--gold-light); }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  width: 100%;
  height: 420px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 160px;
  background-color: var(--navy);
  position: relative;
  margin-bottom: 30px;
}
.page-header::after {
  content: "";
  width: 100%; height: 100%;
  position: absolute;
  left: 0; top: 0;
  background: linear-gradient(135deg, rgba(8,12,24,0.92) 0%, rgba(8,12,24,0.7) 55%, rgba(201,168,76,0.18) 100%);
}
/* Gold bottom line */
.page-header::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  z-index: 5;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header .container h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white) !important;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.page-header .container p { display: none !important; }
.page-header .container .breadcrumb {
  position: absolute;
  left: 15px;
  bottom: -20px;
  background: var(--gold);
  width: auto;
  display: inline-flex !important;
  padding: 14px 28px;
  margin: 0;
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.intro figure {
  display: inline-block;
  margin-bottom: 0;
  margin-top: -20px;
  background: var(--gold-faint);
  position: relative;
  border: 1px solid var(--gold-border);
}
.intro figure .pattern-bg {
  width: 120%; height: 100%;
  position: absolute;
  left: 5%; top: -5%;
  background: url(../images/side-pattern-bg.png);
  background-size: contain;
  opacity: 0.3;
}
.intro figure .holder {
  position: relative;
  width: 100%;
  float: left;
  display: block !important;
  transform: translate(80px, -60px);
}
.intro figure .holder img {
  box-shadow: var(--shadow-lg);
  width: 525px;
}
.intro .content-box { display: block; padding-left: 10%; }
.intro .content-box b { display: block; font-size: 28px; font-weight: 800; opacity: 0.06; color: var(--gold); }
.intro .content-box h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.intro .content-box h4 span { color: var(--gold); }
.intro .content-box h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 24px; color: var(--text-body); }
.intro .content-box p {
  display: block;
  padding-right: 30%;
  margin-bottom: 28px;
  color: var(--text-body);
  line-height: 1.85;
  font-size: 14.5px;
}
.intro .content-box a { display: inline-block; color: var(--text-primary); font-weight: 600; }
.intro .content-box a img { height: 48px; margin-right: 14px; }
.intro .content-box a:hover { color: var(--gold-dark); text-decoration: none; }

/* ============================================================
   LOGOS / PARTNERS ROW
   ============================================================ */
.logos {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 80px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.logos * { transition: all var(--speed) var(--ease); }
.logos .col-lg-2 { border-right: 1px solid rgba(0,0,0,0.06); }
.logos .col-lg-2:last-child { border-right: none; }
.logos figure { width: 100%; margin: 0; position: relative; }
.logos figure:hover img { opacity: 0; transform: scale(1.15); }
.logos figure:hover h6 { opacity: 1; transform: scale(1); }
.logos figure img { width: 100%; filter: grayscale(80%); opacity: 0.6; transition: all var(--speed) var(--ease); }
.logos figure img:hover { filter: grayscale(0%); opacity: 1; }
.logos figure h6 {
  width: 100%; height: 20px; line-height: 20px;
  margin: 0;
  position: absolute; top: 50%; margin-top: -10px;
  text-align: center;
  opacity: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--gold-dark);
  transform: scale(1.08);
}

/* ============================================================
   BENEFITS / STATS SECTION
   ============================================================ */
.benefits {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
}
.benefits::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.benefits::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.benefits .col {
  border-right: 1px solid rgba(255,255,255,0.06);
  padding-top: 30px;
  padding-bottom: 30px;
}
.benefits .col:nth-child(odd) { margin-top: 40px; }
.benefits .col:hover figure:after { opacity: 1; }
.benefits .col:last-child { border-right: none; }
.benefits b {
  display: block;
  font-size: 28px;
  font-weight: 800;
  opacity: 0.06;
  color: var(--gold-light);
}
.benefits h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.benefits h4 span { color: var(--gold-light); }
.benefits h3 {
  font-family: var(--font-body);
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  font-size: 14px;
}
.benefits figure { display: block; margin-bottom: 20px; position: relative; }
.benefits figure:after {
  content: "";
  width: 64px; height: 64px;
  position: absolute;
  left: 50%; top: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  z-index: 0;
  margin-left: -32px;
  transition: opacity var(--speed) var(--ease);
}
.benefits figure img { height: 64px; position: relative; z-index: 2; filter: brightness(1.2); }
.benefits h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}
.benefits .odometer {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  color: var(--gold-light) !important;
}
.benefits .extra {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  display: inline-block;
  transform: translateY(8px);
}

/* ============================================================
   RECENT GALLERY
   ============================================================ */
.recent-gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}
.recent-gallery b { display: block; font-size: 28px; font-weight: 800; opacity: 0.05; }
.recent-gallery h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.recent-gallery h4 span { color: var(--gold); }
.recent-gallery h3 {
  font-family: var(--font-body);
  font-weight: 600;
  padding-right: 40%;
  margin-bottom: 28px;
  color: var(--text-body);
}
.recent-gallery .link {
  display: inline-block;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  transition: color var(--speed) var(--ease);
}
.recent-gallery .link i { margin-left: 8px; }
.recent-gallery .link:hover { color: var(--gold-dark); text-decoration: none; }
.recent-gallery .link::before {
  content: "";
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  position: absolute;
  left: 0; bottom: 0;
  transition: width var(--speed) var(--ease);
}
.recent-gallery .link:hover::before { width: 100%; }
.recent-gallery figure { display: block !important; margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); }
.recent-gallery figure img { transition: transform 0.5s var(--ease); }
.recent-gallery figure:hover img { transform: scale(1.04); }
.recent-gallery .col-md-4:nth-child(1) { margin-top: 100px; }
.recent-gallery .col-md-4:nth-child(2) { margin-top: 0; }
.recent-gallery .col-md-4:nth-child(3) { margin-top: 80px; }

/* ============================================================
   PROPERTY CALCULATOR / ABOUT DETAIL
   ============================================================ */
.property-calculator {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 120px;
  margin-top: 80px;
  position: relative;
}
.property-calculator figure {
  display: inline-block;
  margin-bottom: 0; margin-top: -20px;
  background: var(--gold-faint);
  border: 1px solid var(--gold-border);
  position: relative;
}
.property-calculator figure::before {
  content: "";
  width: 50vw; height: 100%;
  background: var(--gold-faint);
  position: absolute;
  left: -50vw; top: 0;
}
.property-calculator figure .pattern-bg {
  width: 120%; height: 100%;
  position: absolute; left: 5%; top: -5%;
  background: url(../images/side-pattern-bg.png);
  background-size: contain;
  opacity: 0.3;
}
.property-calculator figure .holder {
  position: relative; width: 100%; float: left;
  display: block !important;
  transform: translate(80px, -32px);
}
.property-calculator figure .holder img { box-shadow: var(--shadow-lg); width: 525px; }
.property-calculator .content-box { display: block; padding-left: 10%; }
.property-calculator .content-box b { display: block; font-size: 28px; font-weight: 800; opacity: 0.06; }
.property-calculator .content-box h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.property-calculator .content-box h4 span { color: var(--gold); }
.property-calculator .content-box h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 28px; }
.property-calculator .content-box ul { display: block; margin-bottom: 56px; padding: 0; }
.property-calculator .content-box ul li { display: inline-block; margin: 0; padding: 0; list-style: none; }
.property-calculator .content-box ul li:nth-child(1) { margin-right: 28px; }
.property-calculator .content-box ul li img { height: 36px; }
.property-calculator .content-box p { display: block; padding-right: 36%; margin-bottom: 28px; color: var(--text-body); line-height: 1.8; }
.property-calculator .content-box a { display: inline-block; color: var(--text-primary); font-weight: 600; }
.property-calculator .content-box a img { height: 48px; margin-right: 10px; }
.property-calculator .content-box a:hover { color: var(--gold-dark); text-decoration: none; }

/* ============================================================
   PROPERTY PLANS
   ============================================================ */
.property-plans {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 120px;
}
.property-plans b { display: block; font-size: 28px; font-weight: 800; opacity: 0.06; }
.property-plans h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.property-plans h4 span { color: var(--gold); }
.property-plans h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 28px; }
.property-plans p { display: block; padding-right: 36%; margin-bottom: 28px; color: var(--text-body); line-height: 1.8; }
.property-plans table { display: table; margin-bottom: 28px; font-size: 14px; }
.property-plans table tr td { padding: 5px 0; }
.property-plans table tr td:first-child { color: var(--gold-dark); width: 120px; font-weight: 700; }
.property-plans .tab-nav { width: 100%; display: flex; flex-wrap: wrap; }
.property-plans .tab-nav li { display: inline-block; margin: 0 10px 0 0; padding: 0; list-style: none; }
.property-plans .tab-nav li a { color: var(--text-primary); font-weight: 600; }

/* ============================================================
   GET CONSULTATION
   ============================================================ */
.get-consultation {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 120px;
  margin-bottom: 80px;
  background-size: auto 120%;
  background-position: right;
  background-repeat: no-repeat;
  background-color: var(--off-white);
}
.get-consultation .content-box {
  width: 500px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 72px 48px;
  margin-bottom: -80px;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 70%, var(--gold-light) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.get-consultation .content-box::after {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 100px 200px 100vh 0;
  border-color: transparent rgba(255,255,255,0.07) transparent transparent;
  position: absolute;
  right: 0; top: 0;
}
.get-consultation b { display: block; font-size: 28px; font-weight: 800; opacity: 0.12; }
.get-consultation h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.get-consultation h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; margin-bottom: 28px; }
.get-consultation a.btn {
  display: inline-flex;
  align-items: center;
  height: 50px;
  background: var(--navy);
  color: var(--gold-light) !important;
  padding: 0 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--speed) var(--ease);
  text-decoration: none !important;
}
.get-consultation a.btn:hover {
  background: rgba(8,12,24,0.8);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================================================
   CERTIFICATES
   ============================================================ */
.certificates {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}
.certificates b { display: block; font-size: 28px; font-weight: 800; opacity: 0.06; }
.certificates h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.certificates h4 span { color: var(--gold); }
.certificates h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 40px; color: var(--text-body); }
.certificates figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.certificates figure:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.certificates figure img { width: 100%; transition: transform 0.5s var(--ease); }
.certificates figure:hover img { transform: scale(1.03); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}
.contact h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.contact h4 span { color: var(--gold); }
.contact h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 40px; }
.contact address p {
  display: block;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 14px;
}
.contact address p a { color: var(--gold-dark); font-weight: 600; }
.contact address p a:hover { color: var(--gold); }
.contact .map { width: 100%; display: flex; flex-wrap: wrap; margin-bottom: 40px; }
.contact .map .holder { width: 100%; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.contact .map .holder iframe { width: 100%; height: 360px; border: none; display: block; }
.contact .contact-form { padding-left: 40px; }

/* ============================================================
   BLOG / NEWS
   ============================================================ */
.blog {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}
.blog b { display: block; font-size: 28px; font-weight: 800; opacity: 0.06; }
.blog h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog h4 span { color: var(--gold); }
.blog h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 40px; }
.blog .post {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: flex-start;
}
.blog .post .post-image {
  width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.blog .post .post-image img { width: 100%; transition: transform 0.5s var(--ease); }
.blog .post:hover .post-image img { transform: scale(1.04); }
.blog .post .post-content {
  width: calc(100% - 280px);
  margin: 0;
  padding: 0 0 0 36px;
}
.blog .post .post-content .date {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-faint);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: 20px;
}
.blog .post .post-content h5 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog .post .post-content p { color: var(--text-body); line-height: 1.8; font-size: 14px; margin-bottom: 16px; }
.blog .post .post-content a.read-more {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color var(--speed) var(--ease);
}
.blog .post .post-content a.read-more:hover { color: var(--gold); text-decoration: none; }

/* Blog sidebar */
.blog .sidebar {
  width: 100%;
  padding-left: 40px;
  border-left: 1px solid rgba(0,0,0,0.07);
}
.blog .sidebar h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-border);
}

/* ============================================================
   RECENT POSTS
   ============================================================ */
.recent-posts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
  background: var(--off-white);
}
.recent-posts b { display: block; font-size: 28px; font-weight: 800; opacity: 0.06; }
.recent-posts h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.recent-posts h4 span { color: var(--gold); }
.recent-posts h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 40px; }
.recent-posts .post-box {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 12px 0;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.recent-posts .post-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.recent-posts .post-box figure { margin: 0; overflow: hidden; }
.recent-posts .post-box figure img { width: 100%; transition: transform 0.5s var(--ease); }
.recent-posts .post-box:hover figure img { transform: scale(1.04); }
.recent-posts .post-box .post-info { padding: 24px; }
.recent-posts .post-box .post-info .date {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 10px;
}
.recent-posts .post-box .post-info h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.recent-posts .post-box .post-info p { color: var(--text-body); font-size: 13.5px; line-height: 1.7; margin: 0; }

/* ============================================================
   SALES TEAM / LEADERSHIP
   ============================================================ */
.sales-team {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}
.sales-team b { display: block; font-size: 28px; font-weight: 800; opacity: 0.06; }
.sales-team h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.sales-team h4 span { color: var(--gold); }
.sales-team h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 40px; }
.sales-team figure {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin: 12px 0;
  transition: box-shadow var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.sales-team figure:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.sales-team figure img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}
.sales-team figure figcaption {
  width: calc(100% - 220px);
  background: var(--navy);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.sales-team figure figcaption::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.sales-team figure figcaption h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.sales-team figure figcaption small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.sales-team figure figcaption p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.7; margin: 0; }

/* ============================================================
   SALES OFFICES / CHAPTERS
   ============================================================ */
.sales-offices {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
  background: var(--off-white);
}
.sales-offices b { display: block; font-size: 28px; font-weight: 800; opacity: 0.06; }
.sales-offices h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.sales-offices h4 span { color: var(--gold); }
.sales-offices h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 40px; }
.sales-offices address { display: block; margin-bottom: 32px; }
.sales-offices address h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.sales-offices address p { color: var(--text-body); font-size: 14px; line-height: 1.7; }
.sales-offices address p a { color: var(--gold-dark); font-weight: 600; }
.sales-offices address p a:hover { color: var(--gold); text-decoration: none; }

/* ============================================================
   PRESS RELEASES
   ============================================================ */
.press-relases {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}
.press-relases b { display: block; font-size: 28px; font-weight: 800; opacity: 0.06; }
.press-relases h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.press-relases h4 span { color: var(--gold); }
.press-relases h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 40px; }
.press-relases figure {
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.press-relases figure img { width: 100%; transition: transform 0.5s var(--ease); }
.press-relases figure:hover img { transform: scale(1.04); }
.press-relases figure figcaption {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(8,12,24,0.95), transparent);
  padding: 32px 24px 20px;
  color: var(--white);
  transform: translateY(40px);
  opacity: 0;
  transition: all var(--speed) var(--ease);
}
.press-relases figure:hover figcaption { transform: translateY(0); opacity: 1; }
.press-relases figure figcaption h5 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.press-relases figure figcaption p { font-size: 14px; font-weight: 500; margin: 0; line-height: 1.4; }

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.photo-gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}
.photo-gallery b { display: block; font-size: 28px; font-weight: 800; opacity: 0.06; }
.photo-gallery h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.photo-gallery h4 span { color: var(--gold); }
.photo-gallery h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 40px; }
.photo-gallery .gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.photo-gallery .gallery li {
  width: 25%;
  float: left;
  margin: 0;
  padding: 4px;
  list-style: none;
}
.photo-gallery .gallery li figure {
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
}
.photo-gallery .gallery li figure img { width: 100%; transition: transform 0.5s var(--ease); }
.photo-gallery .gallery li figure:hover img { transform: scale(1.06); }
.photo-gallery .gallery li figure figcaption {
  position: absolute;
  inset: 0;
  background: rgba(8,12,24,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--speed) var(--ease);
}
.photo-gallery .gallery li figure:hover figcaption { opacity: 1; }
.photo-gallery .gallery li figure figcaption a { color: var(--gold-light); font-size: 24px; }
.photo-gallery .gallery-filter {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 32px;
  padding: 0;
}
.photo-gallery .gallery-filter li { display: inline-block; margin: 0 8px 8px 0; list-style: none; }
.photo-gallery .gallery-filter li a {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 30px;
  transition: all var(--speed) var(--ease);
}
.photo-gallery .gallery-filter li a:hover,
.photo-gallery .gallery-filter li a.current {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  text-decoration: none;
}

/* ============================================================
   INTRO VIDEO
   ============================================================ */
.intro-video {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}
.intro-video b { display: block; font-size: 28px; font-weight: 800; opacity: 0.06; }
.intro-video h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.intro-video h4 span { color: var(--gold); }
.intro-video h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 40px; }
.intro-video .video-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-border);
}
.intro-video .video-container video { width: 100%; display: block; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}
.faq b { display: block; font-size: 28px; font-weight: 800; opacity: 0.06; }
.faq h4 {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.faq h4 span { color: var(--gold); }
.faq h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 40px; }
.faq .sidebox {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 36px;
  margin-left: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.faq .sidebox::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}
.faq .sidebox h4 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.faq .sidebox p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; }
.faq .sidebox a {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--navy) !important;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  transition: all var(--speed) var(--ease);
  text-decoration: none !important;
}
.faq .sidebox a:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); }

/* ============================================================
   ERROR 404
   ============================================================ */
.error404 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.error404 figure { display: block; margin-bottom: 40px; }
.error404 figure img { max-height: 200px; }
.error404 h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.error404 p { color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 500px; margin: 0 auto 28px; }
.error404 a {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy) !important;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  text-decoration: none !important;
  transition: all var(--speed) var(--ease);
}
.error404 a:hover { box-shadow: 0 12px 40px rgba(201,168,76,0.4); transform: translateY(-2px); }

/* ============================================================
   APARTMENT / PROPERTY CUSTOMIZATION
   ============================================================ */
.apartment {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}
.property-customization {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
  background: var(--off-white);
}
.facilities {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0;
}

/* ============================================================
   ABOUT CONTENT
   ============================================================ */
.about-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 100px 0;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.about-content h2 span { color: var(--gold); }
.about-content h6 { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); }
.about-content h5 { font-family: var(--font-body); font-weight: 600; color: var(--text-muted); }
.about-content h4 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text-primary); }
.about-content p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.85;
}
.about-content p strong { color: var(--gold-dark); font-weight: 700; }
.about-content ul { padding-left: 0; }
.about-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-body);
  font-size: 14.5px;
  list-style: none;
}
.about-content ul li::before { content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.about-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  background: var(--gold-faint);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}
.about-content blockquote p { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--text-primary); margin: 0; }
.about-content blockquote strong { color: var(--gold-dark); }
.about-content .video-content { width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); margin-top: 20px; }
.about-content .video-content video { width: 100%; display: block; }
.about-content .gallery-container { border-radius: var(--radius); overflow: hidden; }

/* ============================================================
   FOOTER BAR — Gold CTA Banner
   ============================================================ */
.footer-bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -80px;
  position: relative;
  z-index: 3;
}
.footer-bar .inner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  padding: 56px 40px;
  color: var(--navy);
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.12);
}
.footer-bar .inner::after {
  content: '';
  position: absolute;
  top: -60%; right: -5%;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.footer-bar .inner figure { display: block; margin-bottom: 16px; float: left; margin-right: 28px; }
.footer-bar .inner figure img { height: 56px; filter: brightness(0) saturate(100%) invert(8%) sepia(10%) saturate(1700%) hue-rotate(195deg); }
.footer-bar .inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.footer-bar .inner p { font-family: var(--font-body); font-size: 14px; margin: 0; color: rgba(8,12,24,0.75); line-height: 1.7; }
.footer-bar .inner strong { font-weight: 700; color: var(--navy); }
.footer-bar .inner a { color: var(--navy); text-decoration: underline; font-weight: 700; }

/* ============================================================
   FOOTER — Deep Obsidian Navy
   ============================================================ */
.footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 180px;
  padding-bottom: 40px;
  background: var(--navy);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.footer p { color: rgba(255,255,255,0.45); font-family: var(--font-body); font-size: 13px; line-height: 1.8; }
.footer .logo { height: auto; margin-bottom: 18px; }
.footer .logo img { height: 50px; }
.footer .select-box {
  display: inline-block;
  position: relative;
  height: 48px;
  line-height: 46px;
  border: 1px solid var(--gold-border);
  padding-right: 16px;
  padding-left: 24px;
  margin-top: 20px;
  border-radius: var(--radius-sm);
  transition: border-color var(--speed) var(--ease);
}
.footer .select-box:hover { border-color: rgba(201,168,76,0.5); }
.footer .select-box span { margin-right: 36px; }
.footer .select-box .dropdown-toggle { color: rgba(255,255,255,0.6); font-family: var(--font-body); font-size: 13px; font-weight: 600; }
.footer .select-box .dropdown-toggle:hover { text-decoration: none; color: var(--gold-light); }
.footer .select-box .dropdown-toggle img { width: 20px; margin-right: 6px; }
.footer .select-box .dropdown-menu {
  width: 100%;
  background: var(--navy-panel);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  margin-left: -24px;
  margin-top: 8px;
}
.footer .select-box .dropdown-menu li { display: block; margin: 0; padding: 0; list-style: none; }
.footer .select-box .dropdown-menu li a { display: block; padding: 8px 24px; font-size: 13px; line-height: 1; color: rgba(255,255,255,0.65); font-family: var(--font-body); transition: color var(--speed) var(--ease); }
.footer .select-box .dropdown-menu li a:hover { background: var(--gold-faint); color: var(--gold-light); text-decoration: none; }
.footer .select-box .dropdown-menu li a img { width: 18px; margin-right: 6px; }

.footer .footer-menu { display: block; margin: 0; padding: 0; }
.footer .footer-menu li { width: 100%; float: left; margin: 0; padding: 5px 0; list-style: none; }
.footer .footer-menu li a {
  float: left;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 13px;
  transition: all var(--speed) var(--ease);
  padding-left: 0;
  position: relative;
}
.footer .footer-menu li a::before { content: '–'; color: var(--gold); margin-right: 8px; opacity: 0; transition: opacity var(--speed) var(--ease); }
.footer .footer-menu li a:hover { color: var(--gold-light); padding-left: 14px; text-decoration: none; }
.footer .footer-menu li a:hover::before { opacity: 1; }

.footer .contact-box { float: none; color: var(--white); text-align: left; border-left: 2px solid var(--gold); padding-left: 24px; }
.footer .contact-box h5 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer .contact-box h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
}
.footer .contact-box p { margin-bottom: 6px; }
.footer .contact-box p a { color: var(--gold-light); opacity: 1; font-size: 13px; }
.footer .contact-box p a:hover { color: var(--gold); }
.footer .contact-box ul { float: none; margin: 16px 0 0; padding: 0; display: flex; gap: 8px; }
.footer .contact-box ul li { float: none; margin: 0; padding: 0; list-style: none; }
.footer .contact-box ul li a {
  width: 38px; height: 38px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  transition: all var(--speed) var(--ease);
  float: none;
}
.footer .contact-box ul li a:hover { color: var(--navy); background: var(--gold); border-color: var(--gold); }

.footer .col-12 {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  margin-top: 64px;
  color: rgba(255,255,255,0.28);
  font-size: 12px;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .col-12 .copyright { float: none; }
.footer .col-12 .creation { float: none; }
.footer .col-12 .creation a { color: var(--gold-light); font-weight: 600; }

/* ============================================================
   LEADER CARDS (index.html + about-asona.html)
   ============================================================ */
.leader-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--gold-border);
}
.leader-card .leader-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-bottom: 3px solid var(--gold);
  transition: transform 0.5s var(--ease);
}
.leader-card:hover .leader-image { transform: scale(1.02); }
.leader-card h3 {
  font-family: var(--font-display) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  margin: 18px 18px 4px !important;
  line-height: 1.3;
}
.leader-card .title {
  font-family: var(--font-body) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark) !important;
  margin: 0 18px 10px !important;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-border);
  display: block;
}
.leader-card p:last-child {
  font-family: var(--font-body) !important;
  font-size: 12.5px !important;
  color: var(--text-muted) !important;
  margin: 8px 18px 20px !important;
  line-height: 1.65;
  flex: 1;
}

/* Leader img card variant */
.leader-img {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  flex-shrink: 0;
  border-bottom: 3px solid var(--gold);
}

/* ============================================================
   SECTION TITLE (shared)
   ============================================================ */
.section-title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  font-weight: 700 !important;
  text-align: center;
  margin-bottom: 16px !important;
  display: block;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ============================================================
   AUTODISPLAY — custom section header pattern
   ============================================================ */
h1.autoDisplay {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
}

/* ============================================================
   MOBILE MENU STYLES
   ============================================================ */
@media (max-width: 991px) {
  .navbar .container .menu {
    display: none;
    position: fixed;
    top: 0; right: -100%;
    width: min(340px, 85vw);
    height: 100vh;
    background: var(--navy) !important;
    border-left: 1px solid var(--gold-border);
    box-shadow: -16px 0 60px rgba(0,0,0,0.6);
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 72px 0 40px;
    z-index: 9999;
    border-top: none !important;
    transition: right 0.4s cubic-bezier(0.86,0,0.07,1) !important;
    opacity: 1 !important;
  }
  .navbar .container .menu.menu-open {
    display: flex !important;
    right: 0;
  }
  .navbar .container .menu ul {
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .navbar .container .menu ul > li > a {
    font-size: 12px !important;
    padding: 14px 28px !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    display: block !important;
    width: 100%;
  }
  .navbar .container .menu ul li ul {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-top: none !important;
    background: rgba(255,255,255,0.03) !important;
    display: none !important;
    padding: 0 !important;
  }
  .navbar .container .menu ul li ul.open { display: block !important; }
  .navbar .container .menu ul li ul li a {
    padding: 10px 44px !important;
    font-size: 12px !important;
  }
  .navbar .container .menu ul li {
    position: relative;
  }
}

@media (min-width: 992px) {
  .navbar .container .menu { display: flex !important; }
  .mobile-dropdown-toggle { display: none !important; }
}

/* ============================================================
   RESPONSIVE — MEDIUM (≤1199px)
   ============================================================ */
@media only screen and (max-width: 1199px) {
  .intro figure .holder { transform: translate(60px, -60px); }
  .intro figure .holder img { width: 440px; }
  .property-calculator figure .holder { transform: translate(60px, -60px); }
  .property-calculator figure .holder img { width: 440px; }
  .footer-bar .inner p { font-size: 13.5px; }
  .footer-bar .inner p br { display: none; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤991px)
   ============================================================ */
@media only screen and (max-width: 991px) {
  .side-navigation .side-content { display: none; }
  .side-navigation .menu { display: block; }
  .page-header .container h1 { font-size: 7vw; }
  .intro figure { width: 100%; margin-bottom: 72px; }
  .intro figure .pattern-bg { width: 100%; left: 0; }
  .intro figure .holder { transform: translate(0, -40px); padding: 0 12%; }
  .intro figure .holder img { width: 100%; }
  .intro .content-box { padding-left: 0; }
  .logos figure img { padding: 0 10%; }
  .about-content { padding: 80px 0; }
  .sales-offices { padding: 80px 0; }
  .press-relases { padding: 80px 0; }
  .photo-gallery { padding: 80px 0; }
  .photo-gallery .gallery li { width: 33.333%; }
  .intro-video { padding: 80px 0; }
  .faq .sidebox { width: 100%; margin-left: 0; margin-top: 48px; }
  .apartment { padding: 80px 0; }
  .facilities { padding: 80px 0; }
  .blog .sidebar { width: 100%; margin-left: 0; padding-left: 0; border-left: none; }
  .sales-team { padding: 80px 0; }
  .error404 { padding: 80px 0; }
  .recent-gallery { padding: 80px 0; }
  .recent-gallery h3 { padding-right: 0; }
  .recent-gallery .col-md-4 { margin-top: 0 !important; }
  .recent-gallery figure { margin-top: 72px; }
  .benefits { padding: 80px 0; }
  .property-calculator { padding-bottom: 80px; margin-top: 0; }
  .property-calculator .col-lg-6:nth-child(1) { order: 2; }
  .property-calculator .col-lg-6:nth-child(2) { order: 1; }
  .property-calculator figure { width: 100%; }
  .property-calculator figure::before { display: none; }
  .property-calculator figure .pattern-bg { width: 100%; left: 0; }
  .property-calculator figure .holder { transform: translate(0, -40px); padding: 0 12%; }
  .property-calculator figure .holder img { width: 100%; }
  .property-calculator .content-box { padding-left: 0; margin-bottom: 140px; }
  .property-plans { padding-bottom: 80px; }
  .recent-posts { padding: 80px 0; }
  .recent-posts .post-box { margin: 20px 0; }
  .property-customization { padding: 80px 0; }
  .video-bg video { float: right; }
  .certificates { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .contact .contact-form { padding-left: 0; margin-top: 48px; }
  .blog { padding: 80px 0; }
  .footer-bar .inner { padding: 32px; }
  .footer-bar .inner .col-lg-4 { margin: 18px 0; }
  .footer-bar .inner figure { width: 60px; margin-right: 0; }
  .footer-bar .inner figure img { height: 44px; }
  .footer { padding-top: 140px; }
  .footer .select-box { margin-bottom: 72px; }
  .footer .footer-menu { padding: 0; }
  .footer .contact-box { border-left: none; padding-left: 0; margin-top: 72px; border-top: 2px solid var(--gold); padding-top: 24px; }
  .footer .col-12 { flex-direction: column; gap: 8px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤767px)
   ============================================================ */
@media only screen and (max-width: 767px) {
  .side-navigation { width: 80vw; }
  .page-header { height: 320px !important; padding-top: 130px !important; }
  .page-header .container h1 { font-size: 9vw; }
  .page-header .container .breadcrumb { width: calc(100% - 30px); }
  .navbar .container .upper-side .phone-email { display: none; }
  .navbar .container .upper-side .language { display: none; }
  .navbar .container .upper-side .hamburger { margin-left: auto; }
  .slider .slider-container .inner-elements .container .social-media { display: none; }
  .slider .slider-container .swiper-slide .container { padding-left: 16px; padding-right: 48px; }
  .slider .slider-container .swiper-slide .container h1 { font-size: 8vw; }
  .slider .slider-container .swiper-slide .container figure { width: 100%; margin-left: 0; margin-top: 24px; }
  .benefits .col { width: 50%; flex-basis: auto; border-right: none; }
  .benefits .col:nth-child(odd) { margin-top: 0; }
  .about-content h2 { font-size: 9vw; }
  .blog .post .post-image { width: 100%; margin-bottom: 24px; }
  .blog .post .post-content { width: 100%; padding: 0; margin: 0; }
  .contact .map .holder iframe { width: 100%; height: 400px; }
  .side-navigation .menu ul li a { font-size: 5vw !important; }
  .side-navigation .menu ul li ul li a { font-size: 3.5vw !important; }
  .certificates figure { margin: 12px 0; }
  .sales-team figure { flex-direction: column; }
  .sales-team figure img { width: 100%; height: 260px; }
  .sales-team figure figcaption { width: 100%; }
  .photo-gallery .gallery li { width: 50%; }
  .leader-card .leader-image { height: 200px; }
}

@media only screen and (max-width: 576px) {
  .leader-img { padding-top: 80%; }
  .leader-card .leader-image { height: 180px; }
  .footer .col-12 { font-size: 11px; }
}

/* ============================================================
   TABLET SALES TEAM
   ============================================================ */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sales-team figure img { width: 42%; height: 260px; }
  .sales-team figure figcaption { width: 58%; padding: 24px; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.gold-divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 12px auto;
  display: block;
}

.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-gold { background: var(--gold) !important; }

/* ============================================================
   CUSTOM BUTTON — Award-worthy gold CTA
   ============================================================ */
.custom-button {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 36px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark) !important;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  transition: color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  z-index: 1;
}
.custom-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
  z-index: -1;
}
.custom-button:hover::before { transform: scaleX(1); }
.custom-button:hover {
  color: var(--navy) !important;
  box-shadow: var(--shadow-gold);
  text-decoration: none !important;
}

/* Dark bg variant */
.dark-section .custom-button,
[style*="0a0a14"] .custom-button,
[style*="0d0d1a"] .custom-button {
  color: var(--gold-light) !important;
  border-color: var(--gold);
}
[style*="0a0a14"] .custom-button:hover,
[style*="0d0d1a"] .custom-button:hover {
  color: var(--navy) !important;
}

/* ============================================================
   SWIPER OVERRIDES
   ============================================================ */
.swiper-pagination-bullet { background: rgba(255,255,255,0.3); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ============================================================
   CHAPTER / CATEGORY CARDS (new pages)
   ============================================================ */
.chapter-body h3,
.cat-body h3,
.chapter-card h3,
.cat-card h3 {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
}

/* ============================================================
   SCROLL-TRIGGERED NAV CHANGE
   (JS adds .is-scrolled — see scripts.js)
   ============================================================ */
/* Already handled above via .is-scrolled class */

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .navbar, .preloader, .transition-overlay, .side-navigation, .footer-bar { display: none !important; }
  body { color: #000; background: #fff; }
}

/*# sourceMappingURL=style.css.map */

/* ============================================================
   NAV OVERLAY BACKDROPS — injected by scripts.js
   ============================================================ */
.side-nav-overlay,
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 299;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: pointer;
}
.side-nav-overlay.active,
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   SIDE NAVIGATION — z-index fix + show menu always when active
   ============================================================ */
/* Raise side-nav above navbar (was z-index:10, navbar is 100) */
.side-navigation {
  z-index: 300 !important;
}

/* At desktop: side-nav shows its side-content and hides menu */
/* At tablet/mobile (≤991px): side-nav shows menu, hides side-content — already in style.css */

/* Force side-nav .menu to be visible when side-nav is active at desktop */
@media (min-width: 992px) {
  .side-navigation .menu { display: block !important; }
}

/* ============================================================
   MOBILE NAV PANEL — slide from right with proper animation
   ============================================================ */
@media (max-width: 991px) {
  /* Use visibility+opacity+right for animatable slide — no display:none flip */
  .navbar .container .menu {
    display: flex !important;   /* always in DOM so transition works */
    right: -100% !important;
    visibility: hidden;
    opacity: 0;
    transition: right 0.42s cubic-bezier(0.86,0,0.07,1),
                visibility 0s 0.42s,
                opacity 0.42s ease !important;
  }
  .navbar .container .menu.menu-open {
    right: 0 !important;
    visibility: visible;
    opacity: 1;
    transition: right 0.42s cubic-bezier(0.86,0,0.07,1),
                visibility 0s 0s,
                opacity 0.42s ease !important;
  }
  /* Mobile nav needs to sit above overlay */
  .navbar .container .menu {
    z-index: 9999 !important;
  }
}

/* ============================================================
   HAMBURGER — raise above everything so it's always clickable
   ============================================================ */
.navbar .container .upper-side .hamburger {
  position: relative;
  z-index: 10001;
  cursor: pointer;
}

/* ============================================================
   SIDE NAV CLOSE BUTTON
   ============================================================ */
.side-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}
.side-nav-close:hover {
  background: rgba(201,168,76,0.2);
  color: #fff;
  border-color: var(--gold);
}

/* ============================================================
   MOBILE MENU CLOSE BUTTON (inside .navbar .menu)
   ============================================================ */
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.mobile-menu-close:hover {
  background: rgba(201,168,76,0.2);
  color: #fff;
}
