/* ==========================================================================
   ICONIC AVENUES - PREMIUM REAL ESTATE THEME
   Brand Theme: Dark Green (#243638), Cream (#F4F1D0),
   Light Cream (#FAF8E7), Warm Off-White (#FAF9F0), Crisp White (#FFFFFF)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&family=Cinzel:wght@600;700&display=swap');

:root {
  /* Brand Color Palette - Authentic Logo Color Scheme */
  --primary-color: #243638;
  /* Dark Green */
  --primary-dark: #172425;
  /* Deep Dark Green */
  --primary-light: #334A4D;
  /* Medium Slate Dark Green */
  --cream-color: #F4F1D0;
  /* Authentic Logo Cream */
  --cream-light: #F8F9FA;
  /* Clean Modern Off-White */
  --cream-dark: #E2E8F0;
  /* Clean Border Neutral */
  --accent-gold: #243638;
  /* Logo Dark Green Main Accent */
  --accent-gold-dark: #172425;
  /* Deep Green */
  --accent-gold-light: #F4F1D0;
  /* Cream Highlight */
  --neutral-dark: #172425;
  /* Deep Charcoal Dark Green */
  --neutral-muted: #64748B;
  /* Modern Slate Muted */
  --neutral-body: #243638;
  /* Logo Dark Green Body Text */
  --neutral-light: #F8F9FA;
  /* Clean Modern Off-White */
  --neutral-border: #E2E8F0;
  /* Crisp Modern Border */
  --neutral-border-light: #EEF2F6;
  /* Subtle Border */
  --white: #FFFFFF;

  /* Status Colors */
  --status-sale: #243638;
  --status-rent: #243638;
  --status-featured: #243638;

  /* Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Cinzel', serif;

  /* Spacing & Transitions */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  --shadow-subtle: 0 4px 20px -2px rgba(36, 54, 56, 0.05), 0 2px 6px -1px rgba(36, 54, 56, 0.03);
  --shadow-hover: 0 16px 36px -4px rgba(36, 54, 56, 0.10), 0 4px 12px -2px rgba(36, 54, 56, 0.06);
  --shadow-lg: 0 24px 48px -6px rgba(36, 54, 56, 0.16), 0 8px 16px -4px rgba(36, 54, 56, 0.08);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}

section[id],
div[id],
#the-3in1-advantage,
#real-estate-vertical,
#finance-vertical,
#interior-vertical {
  scroll-margin-top: 75px;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-body);
  background-color: #FFFFFF;
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Real Estate Bespoke Section Background Patterns (Clean White & Off-White)
   ========================================================================== */

/* 1. About Us Section: Clean Pure White Background (No Side Lining) */
.about-core-section {
  position: relative;
  background-color: #FFFFFF;
}

/* 2. Vision, Mission & 4 Core Pillars: Clean Off-White with Modern Architectural Slats */
.bg-pattern-louvers,
.bg-pattern-pillar-alt {
  background-color: #FAF9F5;
  background-image:
    repeating-linear-gradient(60deg,
      transparent,
      transparent 36px,
      rgba(36, 54, 56, 0.02) 36px,
      rgba(36, 54, 56, 0.02) 37px);
  position: relative;
  border-top: 1px solid #EAE4DC;
  border-bottom: 1px solid #EAE4DC;
}

/* 3. Three Core Services (Comprehensive Solutions): Crisp White with Subtle Vertical Pinstripes */
.bg-pattern-services {
  background-color: #FFFFFF;
  background-image:
    repeating-linear-gradient(90deg,
      transparent,
      transparent 58px,
      rgba(36, 54, 56, 0.018) 58px,
      rgba(36, 54, 56, 0.018) 59px);
  position: relative;
}

/* 4. THE ICONIC ADVANTAGE (Why Choose Us): Off-White CAD Square Grid & Lines */
.bg-pattern-advantage-cad {
  background-color: #F8F9FA;
  background-image:
    /* Crossbox Intersection Markers (+) */
    radial-gradient(circle at center, rgba(36, 54, 56, 0.18) 1.5px, transparent 1.5px),
    /* Main CAD Square Grid (48px x 48px) */
    linear-gradient(to right, rgba(36, 54, 56, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(36, 54, 56, 0.045) 1px, transparent 1px),
    /* Secondary Precision Measurement Lines (12px x 12px) */
    linear-gradient(to right, rgba(36, 54, 56, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(36, 54, 56, 0.015) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px, 48px 48px, 12px 12px, 12px 12px;
  background-position: 24px 24px, 0 0, 0 0, 0 0, 0 0;
  position: relative;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: -0.025em;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-gold);
}

/* Logo Component */
.site-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.site-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.footer-logo {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.footer-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.brand-logo-badge {
  display: inline-flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  text-decoration: none !important;
  transition: var(--transition);
  vertical-align: middle;
}

.brand-logo-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.brand-logo-badge .top-bar {
  background-color: var(--primary-color);
  color: var(--cream-color);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.24em;
  padding: 4px 14px 2px 17px;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-logo-badge .bottom-bar {
  background-color: var(--cream-color);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  padding: 3px 14px 4px 17px;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-logo-badge.logo-lg .top-bar {
  font-size: 1.45rem;
  padding: 6px 20px 3px 24px;
}

.brand-logo-badge.logo-lg .bottom-bar {
  font-size: 1.2rem;
  padding: 4px 20px 6px 24px;
}

/* Top Utility Bar */
.top-bar-utility {
  background-color: var(--primary-dark);
  color: #B4C4C6;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(244, 241, 208, 0.12);
}

.top-bar-utility a {
  color: #D3DFDF;
}

.top-bar-utility a:hover {
  color: var(--cream-color);
}

/* Header & Fixed Navbar */
#header-container {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999999 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: auto !important;
  transform: translate3d(0, 0, 0) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
  will-change: transform;
}

.site-header {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999999 !important;
  pointer-events: auto !important;
  overflow: visible !important;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--neutral-border);
  box-shadow: 0 4px 20px rgba(36, 54, 56, 0.08);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.99);
  box-shadow: 0 10px 30px rgba(22, 37, 40, 0.14);
  border-bottom-color: var(--accent-gold);
}

#footer-container,
.site-footer {
  position: relative !important;
  z-index: 1 !important;
}

/* Ensure Page Body Has Exact Top Padding For Fixed Header */
body {
  padding-top: 74px !important;
}

@media (max-width: 991.98px) {
  body {
    padding-top: 68px !important;
  }
}

.navbar {
  padding: 12px 0;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 600 !important;
  color: var(--primary-color) !important;
  padding: 8px 14px !important;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: none;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-gold-dark) !important;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: 3px;
}

/* Dropdown Menu */
.dropdown-menu {
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  padding: 10px;
  margin-top: 10px !important;
  background: #FFFFFF;
}

.dropdown-item {
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  color: var(--neutral-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  transition: var(--transition);
}

.dropdown-item i {
  color: var(--accent-gold-dark);
  font-size: 1.1rem;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background-color: var(--cream-light);
  color: var(--primary-color);
}

/* Buttons (Strict Logo Color Palette) */
.btn-primary-custom {
  background-color: var(--primary-color);
  color: var(--cream-color);
  border: 1.5px solid var(--primary-color);
  padding: 11px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  background-color: var(--primary-dark);
  color: #FFFFFF;
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(36, 54, 56, 0.25);
}

.btn-gold-custom {
  background-color: var(--primary-color);
  color: var(--cream-color);
  border: 1.5px solid var(--primary-color);
  padding: 11px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-gold-custom:hover,
.btn-gold-custom:focus {
  background-color: var(--cream-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(36, 54, 56, 0.2);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background-color: var(--primary-color);
  color: var(--cream-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(36, 54, 56, 0.2);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--cream-color);
  border: 1.5px solid var(--cream-color);
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background-color: var(--cream-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(36, 54, 56, 0.2);
}

/* Hero Section with Luxury Dark Green Ambient Lighting */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 75% 30%, rgba(244, 241, 208, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, rgba(36, 54, 56, 0.94) 0%, rgba(23, 36, 37, 0.90) 100%),
    url('../images/hero/hero-luxury-property.jpg') center/cover no-repeat;
  color: #FFFFFF;
  padding: 100px 0 130px;
  overflow: hidden;
}

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

/* Hero section buttons — override generic colors for dark background visibility */
.hero-section .btn-gold-custom {
  background-color: #D4AF37;
  color: #1A2D2E;
  border-color: #D4AF37;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.hero-section .btn-gold-custom:hover,
.hero-section .btn-gold-custom:focus {
  background-color: #C09B28;
  color: #FFFFFF;
  border-color: #C09B28;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45);
}

.hero-section .btn-outline-gold {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}

.hero-section .btn-outline-gold:hover,
.hero-section .btn-outline-gold:focus {
  background-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.hero-section.hero-inner {
  padding: 70px 0 80px;
  background: linear-gradient(135deg, rgba(36, 54, 56, 0.94) 0%, rgba(23, 36, 37, 0.90) 100%),
    url('../images/hero/property-modern-house.jpg') center/cover no-repeat;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(244, 241, 208, 0.15);
  border: 1px solid rgba(244, 241, 208, 0.35);
  color: #F4F1D0;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--cream-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #E2E8DA;
  max-width: 620px;
  margin-bottom: 30px;
}

/* Integrated Hero Glassmorphism Statistics Bar */
.hero-glass-stats-bar {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  margin-top: 48px;
}

.hero-glass-stats-bar .stat-item {
  text-align: center;
  padding: 8px 12px;
  position: relative;
}

@media (min-width: 992px) {
  .hero-glass-stats-bar .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(244, 241, 208, 0.35), transparent);
  }
}

.hero-glass-stats-bar .stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--cream-color);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-glass-stats-bar .stat-label {
  font-size: 0.85rem;
  color: #E2E8DA;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Floating Search Bar & Custom Icon Dropdowns */
.search-filter-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: 0 20px 45px -10px rgba(36, 54, 56, 0.16), 0 0 0 1px rgba(220, 210, 150, 0.35);
  margin-top: -65px;
  position: relative;
  z-index: 10;
  transition: var(--transition);
}

.search-filter-card:hover {
  box-shadow: 0 25px 55px -10px rgba(36, 54, 56, 0.22), 0 0 0 1.5px rgba(220, 210, 150, 0.6);
}

.filter-badge-icon {
  width: 32px;
  height: 32px;
  background: rgba(244, 241, 208, 0.6);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1rem;
  border: 1px solid rgba(220, 210, 150, 0.5);
}

.bg-gold-subtle {
  background-color: var(--cream-light);
  color: var(--primary-color) !important;
  font-weight: 600;
  border: 1px solid var(--cream-dark);
}

.search-filter-card .form-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
}

.input-icon-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-group .input-group-icon {
  position: absolute;
  left: 14px;
  color: var(--accent-gold-dark);
  font-size: 1.15rem;
  pointer-events: none;
  z-index: 5;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.input-icon-group .form-control,
.input-icon-group .form-select {
  padding-left: 44px !important;
  padding-right: 36px;
  padding-top: 12px;
  padding-bottom: 12px;
  height: 52px;
  border: 1.5px solid var(--neutral-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-color);
  background-color: #FAFAFC;
  transition: var(--transition);
  cursor: pointer;
}

.input-icon-group .form-control {
  cursor: text;
}

.input-icon-group .form-control::placeholder {
  color: #94A3B8;
  font-size: 0.92rem;
}

.input-icon-group:hover .form-control,
.input-icon-group:hover .form-select {
  border-color: var(--accent-gold);
  background-color: #FFFFFF;
}

.input-icon-group:hover .input-group-icon {
  color: var(--accent-gold);
  transform: scale(1.12);
}

.input-icon-group .form-control:focus,
.input-icon-group .form-select:focus {
  background-color: #FFFFFF;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.22);
  outline: none;
}

.filter-submit-btn {
  height: 52px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md) !important;
  letter-spacing: 0.02em;
}

/* Custom Interactive Filter Dropdowns */
.custom-filter-dropdown {
  position: relative;
}

.custom-dropdown-toggle {
  height: 52px;
  padding: 0 16px;
  background-color: #FAFAFC;
  border: 1.5px solid var(--neutral-border);
  border-radius: var(--radius-md) !important;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-color);
  text-align: left;
  transition: var(--transition);
}

.custom-dropdown-toggle:hover {
  background-color: #FFFFFF;
  border-color: var(--accent-gold);
  color: var(--primary-color);
}

.custom-dropdown-toggle:focus,
.custom-dropdown-toggle.show,
.show>.custom-dropdown-toggle {
  background-color: #FFFFFF !important;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.22) !important;
  color: var(--primary-color) !important;
}

.custom-dropdown-toggle .dropdown-icon-lead {
  color: var(--accent-gold-dark);
  font-size: 1.15rem;
  transition: var(--transition);
}

.custom-dropdown-toggle:hover .dropdown-icon-lead {
  color: var(--accent-gold);
  transform: scale(1.12);
}

.custom-dropdown-toggle .chevron-icon {
  font-size: 0.82rem;
  color: #94A3B8;
  transition: transform 0.25s ease;
}

.custom-dropdown-toggle.show .chevron-icon {
  transform: rotate(180deg);
  color: var(--accent-gold-dark);
}

.custom-dropdown-menu {
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: 0 18px 40px -6px rgba(10, 25, 47, 0.18);
  padding: 8px;
  margin-top: 8px !important;
  background: #FFFFFF;
  min-width: 100%;
}

.custom-dropdown-item {
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-dropdown-item:last-child {
  margin-bottom: 0;
}

.custom-dropdown-item .item-icon-box {
  width: 36px;
  height: 36px;
  background: rgba(10, 25, 47, 0.05);
  color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.custom-dropdown-item .item-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.custom-dropdown-item .item-title {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.92rem;
  line-height: 1.2;
}

.custom-dropdown-item .item-subtitle {
  color: var(--neutral-muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.custom-dropdown-item:hover,
.custom-dropdown-item:focus {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.12) 0%, rgba(197, 160, 89, 0.04) 100%);
  border-color: rgba(197, 160, 89, 0.35);
  transform: translateX(4px);
}

.custom-dropdown-item:hover .item-icon-box {
  background-color: var(--accent-gold);
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.custom-dropdown-item:hover .item-title {
  color: var(--primary-dark);
}

.custom-dropdown-item.active {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.08) 0%, rgba(197, 160, 89, 0.1) 100%);
  border-color: var(--accent-gold);
}

.custom-dropdown-item.active .item-icon-box {
  background-color: var(--primary-color);
  color: var(--accent-gold);
}

/* Section Header */
.section-header {
  margin-bottom: 45px;
}

.section-tag {
  color: var(--primary-color);
  background-color: rgba(36, 54, 56, 0.08);
  border: 1px solid rgba(36, 54, 56, 0.16);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: fit-content;
  align-self: flex-start;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  color: var(--primary-color);
  line-height: 1.25;
}

.section-desc {
  color: var(--neutral-muted);
  font-size: 1.05rem;
  max-width: 650px;
}

/* Stats Counter Box */
.stats-section {
  background-color: #F8F9FA;
  color: var(--primary-color);
  padding: 48px 0;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
  box-shadow: 0 4px 20px -2px rgba(36, 54, 56, 0.03);
}

.stat-item {
  text-align: center;
  padding: 12px 15px;
  position: relative;
}

@media (min-width: 992px) {
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(36, 54, 56, 0.20), transparent);
  }
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  color: #4A5D5F;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* About Page Core Statistics Strip */
.about-stat-strip {
  display: flex;
  align-items: flex-start;
  gap: 2.2rem;
}

.about-stat-item {
  flex: 1 1 auto;
}

.about-stat-number,
.about-core-section .stat-number {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.about-stat-label,
.about-core-section .stat-number+span {
  display: block;
  font-size: 0.85rem;
  line-height: 1.35;
  color: #64748B;
  font-weight: 500;
}

/* Premium Card Styles */
.custom-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-border);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.custom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(36, 54, 56, 0.3);
}

/* Service Card */
.service-card {
  padding: 32px 28px;
}

/* 3-in-1 Advantage Integrated Ecosystem Section (Single Image + Mixed Content) */
.advantage-single-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.advantage-main-img-box {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 50px -12px rgba(36, 54, 56, 0.22);
  border: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
  flex-grow: 1;
}

.advantage-main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.advantage-main-img-box:hover img {
  transform: scale(1.05);
}

.advantage-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 54, 56, 0.15) 0%, rgba(23, 36, 37, 0.6) 100%);
  pointer-events: none;
}

.advantage-img-tag-top {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

.badge-synergy {
  background: rgba(36, 54, 56, 0.92);
  backdrop-filter: blur(10px);
  color: #F4F1D0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 18px;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.advantage-floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  z-index: 5;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  transition: all 0.35s ease;
}

.advantage-floating-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  border-color: #D4AF37;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.advantage-floating-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #243638 0%, #172425 100%);
  color: #D4AF37 !important;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.advantage-floating-icon i {
  color: #D4AF37 !important;
  line-height: 1;
}

.advantage-floating-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: #243638;
  line-height: 1.25;
}

.advantage-floating-sub {
  font-size: 0.78rem;
  color: #475569;
  display: block;
}

/* Integrated 3-in-1 Service Items */
.integrated-service-item {
  background: #FFFFFF;
  border: 1px solid rgba(36, 54, 56, 0.09);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(36, 54, 56, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.integrated-service-item:hover {
  background: #FFFFFF;
  border-color: rgba(36, 54, 56, 0.25);
  box-shadow: 0 12px 30px -4px rgba(36, 54, 56, 0.12);
  transform: translateX(6px);
}

.integrated-service-item.item-real-estate {
  border-left: 4px solid var(--primary-color);
}

.integrated-service-item.item-finance {
  border-left: 4px solid var(--accent-gold);
}

.integrated-service-item.item-interiors {
  border-left: 4px solid #E86C38;
}

.integrated-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.35s ease;
}

.integrated-service-item:hover .integrated-service-icon {
  transform: scale(1.1) rotate(4deg);
}

.item-real-estate .integrated-service-icon {
  background: rgba(36, 54, 56, 0.08);
  color: var(--primary-color);
  border: 1px solid rgba(36, 54, 56, 0.14);
}

.item-finance .integrated-service-icon {
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold-dark);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.item-interiors .integrated-service-icon {
  background: rgba(232, 108, 56, 0.1);
  color: #E86C38;
  border: 1px solid rgba(232, 108, 56, 0.24);
}

.integrated-service-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 4px;
}

.item-real-estate .integrated-service-tag {
  background: rgba(36, 54, 56, 0.08);
  color: var(--primary-color);
}

.item-finance .integrated-service-tag {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold-dark);
}

.item-interiors .integrated-service-tag {
  background: rgba(232, 108, 56, 0.12);
  color: #E86C38;
}

.integrated-service-title {
  color: var(--primary-color);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.integrated-service-desc {
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.6;
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background-color: var(--cream-color);
  color: var(--primary-color);
  border: 1px solid rgba(36, 54, 56, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 22px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-icon-box i {
  color: var(--primary-color);
  transition: color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  line-height: 1;
}

.service-card:hover .service-icon-box,
.custom-card:hover .service-icon-box {
  background-color: var(--primary-color) !important;
  color: var(--cream-color) !important;
  border-color: var(--primary-color) !important;
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 8px 22px rgba(36, 54, 56, 0.22);
}

.service-card:hover .service-icon-box i,
.custom-card:hover .service-icon-box i {
  color: var(--cream-color) !important;
  transform: scale(1.05);
}

.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--neutral-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.link-gold {
  color: var(--accent-gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-gold:hover {
  color: var(--primary-color);
  gap: 10px;
}

/* Vision & Mission Cards */
.vision-mission-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.vision-card {
  background: linear-gradient(135deg, #243638 0%, #172425 100%);
  color: #FFFFFF;
  border: 1px solid rgba(244, 241, 208, 0.25);
  box-shadow: 0 15px 35px -5px rgba(36, 54, 56, 0.2);
}

.vision-card .section-tag {
  background-color: rgba(244, 241, 208, 0.15);
  color: #F4F1D0;
  border-color: rgba(244, 241, 208, 0.3);
}

.vision-card .pillar-icon-box {
  background: var(--cream-color);
  color: var(--primary-color);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-card h3 {
  color: #FFFFFF;
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.vision-card .lead-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #F4F1D0;
  line-height: 1.4;
  margin-bottom: 16px;
}

.vision-card p {
  color: #D3DFDF;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.vision-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 241, 208, 0.65);
  box-shadow: 0 24px 50px -8px rgba(18, 30, 31, 0.45);
}

.vision-card:hover .pillar-icon-box {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.mission-card {
  background: #FFFFFF;
  border: 1px solid var(--neutral-border);
  box-shadow: var(--shadow-subtle);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-card .pillar-icon-box {
  background-color: rgba(36, 54, 56, 0.08);
  color: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-card h3 {
  color: var(--primary-color);
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.mission-card .lead-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.4;
  margin-bottom: 16px;
}

.mission-card p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.mission-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 24px 50px -8px rgba(36, 54, 56, 0.16);
}

.mission-card:hover .pillar-icon-box {
  background-color: var(--primary-color);
  color: var(--cream-color);
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 8px 20px rgba(36, 54, 56, 0.25);
}

/* 4 Core Pillars */
.pillar-card {
  background: #FFFFFF;
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(36, 54, 56, 0.04);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #436265);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(36, 54, 56, 0.14);
  border-color: rgba(36, 54, 56, 0.3);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: rgba(36, 54, 56, 0.2);
  transition: all 0.35s ease;
}

.pillar-card:hover .pillar-number {
  color: var(--primary-color);
  transform: scale(1.15) translateY(-2px);
}

.pillar-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: rgba(36, 54, 56, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 20px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover .pillar-icon-box {
  background-color: var(--primary-color);
  color: var(--cream-color);
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 8px 20px rgba(36, 54, 56, 0.25);
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.pillar-text {
  color: var(--neutral-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Property Card */
.property-card .property-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.property-card .property-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.property-card:hover .property-img-wrapper img {
  transform: scale(1.06);
}

.badge-status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

.badge-status.badge-sale {
  background-color: var(--primary-color);
  color: var(--cream-color);
}

.badge-status.badge-rent {
  background-color: var(--status-rent);
  color: #FFFFFF;
}

.badge-featured {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.property-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-type {
  color: var(--accent-gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.property-title {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--primary-color);
}

.property-location {
  color: var(--neutral-muted);
  font-size: 0.88rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.property-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.property-amenities {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--neutral-border);
  color: var(--neutral-muted);
  font-size: 0.85rem;
}

.property-amenity-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.property-amenity-item i {
  color: var(--accent-gold-dark);
}

/* Why Choose Us Feature Item / Advantage Block */
.feature-box {
  background: #FFFFFF;
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
  margin-bottom: 0;
  box-shadow: 0 4px 16px rgba(36, 54, 56, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), #426164);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -8px rgba(36, 54, 56, 0.14), 0 0 0 1px rgba(36, 54, 56, 0.18);
  border-color: rgba(36, 54, 56, 0.25);
}

.feature-box:hover::before {
  transform: scaleY(1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background-color: rgba(36, 54, 56, 0.07);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  border: 1px solid rgba(36, 54, 56, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.feature-box:hover .feature-icon {
  background-color: var(--primary-color);
  color: var(--cream-color);
  border-color: var(--primary-color);
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 18px rgba(36, 54, 56, 0.22);
}

.feature-content {
  flex: 1;
}

.feature-content h5 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.feature-box:hover .feature-content h5 {
  color: #122123;
}

.feature-content .feature-tagline {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 6px;
  line-height: 1.4;
}

.feature-content p {
  color: #64748B;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Project Card */
.project-card .project-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.project-card .project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.06);
}

.project-card .project-body {
  padding: 24px;
}

/* Case Study Card */
.case-card {
  padding: 26px;
}

.case-category {
  color: var(--accent-gold-dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.case-card h4 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.case-metric {
  background-color: var(--cream-light);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 18px;
  border-left: 3px solid var(--accent-gold);
}

.case-metric strong {
  color: var(--primary-color);
  display: block;
  font-size: 0.85rem;
}

.case-metric span {
  color: var(--neutral-muted);
  font-size: 0.85rem;
}

/* Testimonials Grid Cards & Verified Feedback */
.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 34px 28px 28px;
  border: 1px solid var(--neutral-border);
  box-shadow: 0 4px 20px -2px rgba(10, 25, 47, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  opacity: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(10, 25, 47, 0.12), 0 0 0 1px rgba(197, 160, 89, 0.35);
  border-color: rgba(197, 160, 89, 0.4);
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-card::before {
  content: '\F6B0';
  /* Bootstrap Icons bi-quote */
  font-family: 'bootstrap-icons';
  position: absolute;
  bottom: 75px;
  right: 20px;
  font-size: 3.8rem;
  color: rgba(197, 160, 89, 0.08);
  line-height: 1;
  pointer-events: none;
  transition: var(--transition);
}

.testimonial-card:hover::before {
  color: rgba(197, 160, 89, 0.2);
  transform: scale(1.15) rotate(-6deg);
}

/* ==========================================================================
   Interactive World Map & Testimonial Showcase Component (Matching Reference)
   ========================================================================== */
.reviews-card-container {
  position: relative;
  z-index: 5;
}

/* ==========================================================================
   Interactive World Map & Testimonial Showcase Component
   ========================================================================== */
.bg-pattern-reviews-ambient {
  background-color: #FFFFFF;
  background-image:
    /* Clean micro-dot precision grid */
    radial-gradient(circle at center, rgba(36, 54, 56, 0.05) 1px, transparent 1px),
    /* Soft ambient spatial lighting */
    radial-gradient(circle at 10% 40%, rgba(36, 54, 56, 0.03) 0%, transparent 60%),
    radial-gradient(circle at 90% 60%, rgba(232, 108, 56, 0.035) 0%, transparent 60%);
  background-size: 24px 24px, auto, auto;
  position: relative;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.reviews-ambient-glow {
  position: absolute;
  top: 5%;
  right: 15%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 54, 56, 0.025) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.reviews-trust-bar {
  margin-top: 16px;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #F8FAFC;
  border: 1px solid var(--neutral-border);
  border-radius: 9999px;
  font-size: 0.88rem;
  color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(36, 54, 56, 0.03);
}

.reviews-card-container {
  position: relative;
  z-index: 5;
  background: transparent !important;
  border: none !important;
}

.reviews-showcase-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 16px 44px -8px rgba(36, 54, 56, 0.09), 0 0 0 1px rgba(36, 54, 56, 0.06);
  border: 1px solid rgba(36, 54, 56, 0.08);
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.reviews-card-header {
  border-bottom: 1px solid rgba(36, 54, 56, 0.07);
  padding-bottom: 14px;
}

.review-stars-display {
  font-size: 1rem;
  letter-spacing: 2px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.review-service-badge {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(36, 54, 56, 0.07);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  line-height: 1.3;
}

.review-verified-pill {
  font-size: 0.78rem;
  font-weight: 600;
  color: #10B981;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
}

.review-verified-pill i {
  font-size: 0.88rem;
  line-height: 1;
  flex-shrink: 0;
}

.reviews-quote-icon {
  font-size: 3.8rem;
  line-height: 0.7;
  color: #E86C38;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 16px;
  user-select: none;
  opacity: 0.85;
}

.review-content-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.review-quote-text {
  font-size: 0.98rem;
  line-height: 1.72;
  color: #243638;
  font-weight: 500;
  margin-bottom: 20px;
  max-height: 210px;
  overflow-y: auto;
  padding-right: 10px;
  white-space: pre-line;
  transition: opacity 0.28s ease, transform 0.28s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(36, 54, 56, 0.25) transparent;
}

.review-quote-text::-webkit-scrollbar {
  width: 5px;
}

.review-quote-text::-webkit-scrollbar-track {
  background: rgba(36, 54, 56, 0.04);
  border-radius: 4px;
}

.review-quote-text::-webkit-scrollbar-thumb {
  background: rgba(36, 54, 56, 0.25);
  border-radius: 4px;
}

.review-quote-text::-webkit-scrollbar-thumb:hover {
  background: #E86C38;
}

.review-quote-text.fading {
  opacity: 0;
  transform: translateY(6px);
}

.review-client-footer {
  border-top: 1px solid rgba(36, 54, 56, 0.07);
  padding-top: 18px;
}

.client-avatar-wrapper {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, var(--primary-color), #E86C38);
  box-shadow: 0 4px 14px rgba(36, 54, 56, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #FFFFFF;
}

.client-name {
  color: var(--primary-color);
  font-size: 1.08rem;
  font-family: var(--font-heading);
}

.client-meta-line {
  font-size: 0.84rem;
  color: #64748B;
}

.client-bullet {
  color: #CBD5E1;
}

.client-location {
  color: #475569;
  font-weight: 500;
}

.reviews-card-bottom-bar {
  border-top: 1px solid rgba(36, 54, 56, 0.07);
}

.review-counter-pill {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  font-variant-numeric: tabular-nums;
  padding: 4px 10px;
  background: rgba(36, 54, 56, 0.05);
  border-radius: 6px;
}

.review-pagination-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #CBD5E1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  width: 22px;
  background: var(--primary-color);
}

.review-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--neutral-border);
  box-shadow: 0 2px 8px rgba(36, 54, 56, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.review-nav-btn:hover {
  background: var(--primary-color);
  color: var(--cream-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(36, 54, 56, 0.18);
}

.reviews-map-wrapper {
  position: relative;
  width: 100%;
  min-height: 440px;
  background: #F8FAFC;
  border-radius: 28px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 16px 44px -8px rgba(36, 54, 56, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  overflow: visible;
}

.reviews-floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(36, 54, 56, 0.1);
  box-shadow: 0 10px 26px rgba(36, 54, 56, 0.1);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  transition: transform 0.3s ease;
}

.reviews-floating-stat:hover {
  transform: translateY(-3px);
}

.stat-top-right {
  top: 18px;
  right: 20px;
}

.stat-bottom-left {
  bottom: 18px;
  left: 20px;
}

.stat-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.reviews-floating-stat .stat-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.reviews-floating-stat .stat-sub {
  font-size: 0.74rem;
  color: #64748B;
  line-height: 1.2;
}

.reviews-map-bg {
  width: 100%;
  opacity: 0.95;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.02));
}

.reviews-map-bg svg {
  width: 100%;
  height: auto;
  max-height: 400px;
}

/* Map Teardrop Pin Markers */
.map-pin-marker {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 6;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin-tooltip {
  position: absolute;
  top: -32px;
  background: var(--primary-color);
  color: #FFFFFF;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(36, 54, 56, 0.25);
}

.map-pin-marker:hover .map-pin-tooltip,
.map-pin-marker.active .map-pin-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.map-pin-inner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid #E86C38;
  box-shadow: 0 6px 16px rgba(232, 108, 56, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.map-pin-inner img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #FFFFFF;
}

/* Downward Pointer Triangle */
.map-pin-pointer {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #E86C38;
  margin-top: -1px;
  transition: border-top-color 0.3s ease;
}

/* Pulse Ring around Pin */
.map-pin-marker::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(232, 108, 56, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.map-pin-marker:hover {
  transform: translate(-50%, -100%) scale(1.15);
  z-index: 15;
}

.map-pin-marker.active {
  transform: translate(-50%, -100%) scale(1.22);
  z-index: 20;
}

.map-pin-marker.active .map-pin-inner {
  border-color: var(--primary-color);
  box-shadow: 0 10px 24px rgba(36, 54, 56, 0.35), 0 0 0 3px rgba(232, 108, 56, 0.3);
}

.map-pin-marker.active .map-pin-pointer {
  border-top-color: var(--primary-color);
}

.map-pin-marker.active::before {
  opacity: 1;
  animation: pinPulseRing 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes pinPulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.testimonial-card:hover .testimonial-user-info h6 {
  color: var(--accent-gold-dark);
}

.testimonial-user-info span {
  font-size: 0.83rem;
  color: #64748B;
}

/* Blog Card */
.blog-card .blog-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card .blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}

.blog-card .blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--neutral-muted);
  margin-bottom: 10px;
}

.blog-category-badge {
  background-color: var(--cream-light);
  color: var(--primary-color);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.blog-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-excerpt {
  color: var(--neutral-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* CTA Banner Section - Luxury Logo Color Theme */
.cta-banner-section {
  background: linear-gradient(135deg, #243638 0%, #1A282A 50%, #172425 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 241, 208, 0.25);
  box-shadow: 0 20px 45px -10px rgba(36, 54, 56, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.cta-banner-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -10px rgba(36, 54, 56, 0.35);
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  bottom: 0;
  background: linear-gradient(115deg,
      transparent 0%,
      rgba(244, 241, 208, 0.04) 25%,
      rgba(244, 241, 208, 0.12) 45%,
      rgba(244, 241, 208, 0.04) 65%,
      transparent 100%);
  transform: skewX(-20deg);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  opacity: 0.7;
  pointer-events: none;
}

.cta-banner-section:hover::before {
  transform: translateX(65%) skewX(-20deg);
  opacity: 1;
}

.cta-banner-section::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(244, 241, 208, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-section h2,
.cta-banner-section h3,
.cta-banner-section h4,
.cta-banner-section h2.text-white,
.cta-banner-section h3.text-white,
.cta-banner-section .cta-title {
  color: #F4F1D0 !important;
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.cta-banner-section p,
.cta-banner-section p.text-light {
  color: #E2E8DA !important;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cta-banner-section .btn-gold-custom,
.cta-banner-section .btn-cta-contact,
.cta-banner-section .btn:not(.btn-outline-light):not(.btn-outline-dark) {
  background: #F4F1D0 !important;
  color: #243638 !important;
  border: 1.5px solid #F4F1D0 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
  font-weight: 700;
  padding: 12px 26px !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-banner-section .btn-gold-custom:hover,
.cta-banner-section .btn-cta-contact:hover,
.cta-banner-section .btn:not(.btn-outline-light):not(.btn-outline-dark):hover {
  background: #FFFFFF !important;
  color: #172425 !important;
  border-color: #FFFFFF !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.cta-banner-section .btn-outline-light,
.cta-banner-section .btn-outline-dark {
  background: transparent !important;
  color: #F4F1D0 !important;
  border: 1.5px solid #F4F1D0 !important;
  position: relative;
  z-index: 1;
  font-weight: 600;
  padding: 12px 28px !important;
  border-radius: var(--radius-pill) !important;
  transition: all 0.35s ease;
}

.cta-banner-section .btn-outline-light:hover,
.cta-banner-section .btn-outline-dark:hover {
  background: #F4F1D0 !important;
  color: #243638 !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.cta-banner-section .btn-gold-custom i,
.cta-banner-section .btn-cta-contact i,
.cta-banner-section .btn i {
  color: #243638 !important;
  margin-right: 2px;
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}

.cta-banner-section .btn-gold-custom:hover i,
.cta-banner-section .btn-cta-contact:hover i,
.cta-banner-section .btn:hover i {
  transform: scale(1.18) rotate(8deg);
}

/* Process Flow Step */
.process-step-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.process-step-number {
  width: 48px;
  height: 48px;
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.process-step-card h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-step-card p {
  font-size: 0.88rem;
  color: var(--neutral-muted);
}

/* FAQ Accordion */
.accordion-custom .accordion-item {
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.accordion-custom .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.05rem;
  padding: 18px 22px;
  background-color: #FFFFFF;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background-color: var(--cream-light);
  color: var(--primary-color);
  box-shadow: none;
}

.accordion-custom .accordion-button:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.accordion-custom .accordion-body {
  padding: 18px 22px;
  color: var(--neutral-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Inquiry Form */
.form-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 35px;
  border: 1px solid var(--neutral-border);
  box-shadow: var(--shadow-hover);
}

.form-floating>.form-control,
.form-floating>.form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--neutral-border);
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

/* Back to Top Button (Bottom-Right Luxury Brand Action) */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #243638 0%, #172425 100%);
  color: #F4F1D0;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(22, 37, 40, 0.35), 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: #D4AF37;
  color: #172425;
  border-color: #D4AF37;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

/* ==========================================================================
   FROSTED LUXURY DARK GLASS FOOTER DESIGN
   ========================================================================== */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, rgba(23, 36, 37, 0.93) 0%, rgba(15, 24, 25, 0.96) 100%),
    url('../images/hero/hero-luxury-property.jpg') center/cover no-repeat;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #E2E8F0;
  padding: 85px 0 0;
  border-top: 1px solid rgba(244, 241, 208, 0.25);
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F4F1D0, #D4AF37, #F4F1D0, transparent);
  z-index: 2;
}

/* Footer Logo */
.footer-logo {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.footer-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.footer-desc {
  color: #E2E8F0 !important;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 400;
  opacity: 0.94;
}

.footer-heading {
  font-family: var(--font-heading);
  color: #F4F1D0 !important;
  font-size: 1.18rem;
  font-weight: 800 !important;
  margin-bottom: 24px;
  position: relative;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #F4F1D0, transparent);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #CBD5E1 !important;
  font-size: 0.94rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.footer-links a i {
  font-size: 0.75rem;
  color: #F4F1D0;
  transition: transform 0.25s ease;
}

.footer-links a:hover {
  color: #FFFFFF !important;
  transform: translateX(6px);
  text-shadow: 0 0 12px rgba(244, 241, 208, 0.4);
}

.footer-links a:hover i {
  color: #F4F1D0;
  transform: translateX(3px);
}

.footer-office-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 241, 208, 0.22);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: var(--transition);
}

.footer-office-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(244, 241, 208, 0.45);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.35);
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.93rem;
  align-items: flex-start;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-item i {
  color: #F4F1D0;
  font-size: 1.12rem;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
  display: inline-block;
}

.footer-contact-item a,
.footer-contact-item div {
  color: #E2E8F0 !important;
  font-weight: 500;
  line-height: 1.55;
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: #F4F1D0 !important;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #F4F1D0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(244, 241, 208, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-link:hover {
  background: #F4F1D0;
  color: #172425;
  border-color: #F4F1D0;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(244, 241, 208, 0.5);
}

.footer-bottom {
  background: transparent;
  padding: 28px 0;
  margin-top: 50px;
  font-size: 0.9rem;
  color: #CBD5E1;
  border-top: 1px solid rgba(244, 241, 208, 0.16);
  font-weight: 500;
}

.footer-bottom a {
  color: #CBD5E1;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-bottom a:hover {
  color: #F4F1D0;
  text-shadow: 0 0 8px rgba(244, 241, 208, 0.4);
}

/* RERA Badge */
.footer-rera-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50rem;
  background: rgba(244, 241, 208, 0.08);
  border: 1px solid rgba(244, 241, 208, 0.2);
  font-size: 0.85rem;
  max-width: 100%;
}

.footer-rera-info .footer-rera-icon {
  color: #F4F1D0;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-rera-info .footer-rera-label {
  color: #FFFFFF;
  font-weight: 600;
  flex-shrink: 0;
}

.footer-rera-info .footer-rera-num {
  color: #FFFFFF;
  letter-spacing: 0.5px;
  word-break: break-all;
  font-weight: 500;
}



/* Breadcrumb */
.breadcrumb-custom {
  background: transparent;
  padding: 0;
  margin-bottom: 15px;
}

.breadcrumb-custom .breadcrumb-item a {
  color: var(--cream-dark);
  font-size: 0.9rem;
}

.breadcrumb-custom .breadcrumb-item.active {
  color: #FFFFFF;
  font-size: 0.9rem;
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(242, 235, 217, 0.5);
}

/* Pagination */
.pagination-custom .page-link {
  color: var(--primary-color);
  border: 1px solid var(--neutral-border);
  margin: 0 4px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 8px 16px;
}

.pagination-custom .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--cream-color);
}

.pagination-custom .page-link:hover {
  background-color: var(--cream-light);
  color: var(--primary-color);
}

/* Map Embed Wrapper */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--neutral-border);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Custom Luxury Filter Dropdowns & Quick Search Bar
   ========================================================================== */
.search-filter-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(10, 25, 47, 0.1), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(200, 169, 110, 0.3);
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.search-filter-card:hover {
  box-shadow: 0 20px 48px rgba(10, 25, 47, 0.14), 0 2px 6px rgba(0, 0, 0, 0.06);
  border-color: rgba(200, 169, 110, 0.55);
}

.filter-badge-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-color);
  color: var(--primary-color);
  border-radius: 8px;
  font-size: 1rem;
}

.bg-gold-subtle {
  background-color: var(--cream-color);
  color: var(--primary-color);
  font-weight: 600;
  border: 1px solid rgba(36, 54, 56, 0.15);
}

/* Input Icon Group */
.input-icon-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-group .input-group-icon {
  position: absolute;
  left: 14px;
  color: var(--primary-color);
  font-size: 1.05rem;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.input-icon-group .form-control {
  padding-left: 42px;
  height: 46px;
  border-radius: 10px;
  border: 1.5px solid #E2E8F0;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: #F8FAFC;
  color: var(--neutral-dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-icon-group .form-control:focus {
  background-color: #FFFFFF;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(36, 54, 56, 0.15);
  outline: none;
}

.input-icon-group .form-control:focus~.input-group-icon {
  transform: scale(1.12);
  color: var(--primary-color);
}

/* Custom Dropdown Toggle */
.custom-filter-dropdown {
  position: relative;
}

.custom-dropdown-toggle {
  height: 46px;
  background-color: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 0 14px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  cursor: pointer;
}

.custom-dropdown-toggle:hover {
  background-color: #FFFFFF;
  border-color: var(--primary-color);
  color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(36, 54, 56, 0.10);
  transform: translateY(-1px);
}

.custom-dropdown-toggle:focus,
.custom-dropdown-toggle.show,
.custom-filter-dropdown .show.custom-dropdown-toggle {
  background-color: #FFFFFF;
  border-color: var(--primary-color);
  color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(36, 54, 56, 0.15);
  outline: none;
}

.custom-dropdown-toggle .dropdown-icon-lead {
  color: var(--primary-color);
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.custom-dropdown-toggle:hover .dropdown-icon-lead {
  transform: scale(1.15);
  color: var(--primary-dark);
}

.custom-dropdown-toggle .selected-label {
  font-weight: 600;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-dropdown-toggle .chevron-icon {
  color: #64748B;
  font-size: 0.8rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.custom-dropdown-toggle[aria-expanded="true"] .chevron-icon,
.custom-dropdown-toggle.show .chevron-icon {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

/* Custom Dropdown Menu */
.custom-dropdown-menu {
  border-radius: 12px;
  border: 1px solid rgba(200, 169, 110, 0.35);
  padding: 6px;
  background-color: #FFFFFF;
  box-shadow: 0 16px 36px rgba(10, 25, 47, 0.16), 0 3px 10px rgba(0, 0, 0, 0.05);
  margin-top: 6px !important;
  min-width: 260px;
  max-height: 250px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) #F1F5F9;
  animation: dropdownSlideFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}

.custom-dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.custom-dropdown-menu::-webkit-scrollbar-track {
  background: #F8FAFC;
  border-radius: 8px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 8px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

@keyframes dropdownSlideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Custom Dropdown Item & Compact Dynamic Hover Effects */
.custom-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  margin-bottom: 3px;
  background-color: transparent;
  width: 100%;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.custom-dropdown-item:last-child {
  margin-bottom: 0;
}

.custom-dropdown-item .item-icon-box {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(200, 169, 110, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(200, 169, 110, 0.2);
}

.custom-dropdown-item .item-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.custom-dropdown-item .item-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: #0F172A;
  line-height: 1.2;
  transition: color 0.2s ease, transform 0.2s ease;
}

.custom-dropdown-item .item-subtitle {
  font-size: 0.72rem;
  color: #64748B;
  margin-top: 1px;
  line-height: 1.15;
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hover Effect: Rich Gold Gradient, Icon Lift, and Smooth Slide */
.custom-dropdown-item:hover,
.custom-dropdown-item:focus {
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.15) 0%, rgba(200, 169, 110, 0.05) 100%);
  border-color: rgba(200, 169, 110, 0.4);
  transform: translateX(4px);
  box-shadow: 0 3px 10px rgba(200, 169, 110, 0.12);
}

.custom-dropdown-item:hover .item-icon-box,
.custom-dropdown-item:focus .item-icon-box {
  background: linear-gradient(135deg, #DFBE82 0%, #C8A96E 100%);
  color: #0A192F;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 3px 8px rgba(200, 169, 110, 0.3);
  border-color: transparent;
}

.custom-dropdown-item:hover .item-title,
.custom-dropdown-item:focus .item-title {
  color: var(--primary-color);
}

.custom-dropdown-item:hover .item-subtitle,
.custom-dropdown-item:focus .item-subtitle {
  color: #334155;
}

/* Active State: Distinct Gold and Navy Highlighting */
.custom-dropdown-item.active {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.06) 0%, rgba(200, 169, 110, 0.18) 100%);
  border-color: var(--accent-gold);
}

.custom-dropdown-item.active .item-icon-box {
  background: var(--primary-color);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 2px 8px rgba(10, 25, 47, 0.2);
}

.custom-dropdown-item.active .item-title {
  color: var(--primary-color);
  font-weight: 700;
}

.custom-dropdown-item.active .item-subtitle {
  color: #1E293B;
  font-weight: 500;
}

/* Filter Submit Button */
.filter-submit-btn {
  height: 46px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(10, 25, 47, 0.16);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(10, 25, 47, 0.24);
}

/* Responsive adjustments for Quick Search Filter */
@media (max-width: 767.98px) {
  .search-filter-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .custom-dropdown-menu {
    min-width: 100%;
  }

  .custom-dropdown-item {
    padding: 8px 10px;
  }
}

/* ==========================================================================
   About Section Image Hover Effects & Interactive Shimmer
   ========================================================================== */
.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(10, 25, 47, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.25);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.about-img-wrapper .about-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  flex: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

/* Subtle Shimmer Light Sweep on Hover */
.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.28),
      transparent);
  transform: skewX(-25deg);
  transition: all 0.75s ease;
  z-index: 2;
  pointer-events: none;
}

.about-img-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10, 25, 47, 0.2), 0 0 25px rgba(200, 169, 110, 0.25);
  border-color: rgba(200, 169, 110, 0.6);
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.08);
}

.about-img-wrapper:hover::before {
  left: 140%;
}

/* Floating Badge Inside Image */
.about-floating-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(10, 25, 47, 0.92) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 169, 110, 0.4);
  padding: 16px 22px;
  margin: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.about-img-wrapper:hover .about-floating-badge {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(200, 169, 110, 0.3);
  background-color: rgba(6, 18, 36, 0.96) !important;
}

.about-floating-badge .badge-icon {
  transition: transform 0.4s ease, color 0.4s ease;
}

.about-img-wrapper:hover .about-floating-badge .badge-icon {
  transform: scale(1.2) rotate(10deg);
  color: #DFBE82 !important;
}

/* ==========================================================================
   Services Navbar Dropdown & Line Active Styling
   ========================================================================== */

/* Services Dropdown Toggle Nav Link */
.site-header .nav-link.dropdown-toggle,
.site-header .nav-link.dropdown-toggle:hover,
.site-header .nav-link.dropdown-toggle:focus,
.site-header .nav-link.dropdown-toggle.active {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px !important;
  position: relative;
}

/* Remove default Bootstrap caret */
.site-header .nav-link.dropdown-toggle::after,
.site-header .navbar-nav .dropdown-toggle::after {
  display: none !important;
  content: none !important;
  border: none !important;
  margin: 0 !important;
}

/* Right-Side Dropdown Arrow Indicator */
.site-header .nav-dropdown-arrow {
  font-size: 0.72rem;
  font-weight: 700;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
  color: inherit;
  display: inline-block;
  vertical-align: middle;
}

.site-header .nav-item.dropdown:hover .nav-dropdown-arrow,
.site-header .nav-item.dropdown.show .nav-dropdown-arrow,
.site-header .nav-link.dropdown-toggle[aria-expanded="true"] .nav-dropdown-arrow {
  transform: rotate(180deg);
  color: var(--accent-gold-dark);
}

/* Active Underline for Services nav-link and other nav-links */
.site-header .navbar-nav .nav-link.active::after,
.site-header .navbar-nav .nav-link.dropdown-toggle.active::after {
  content: '' !important;
  display: block !important;
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--accent-gold) !important;
  border-radius: 2px;
  border: none !important;
  transform: none !important;
}

/* Services Dropdown Menu Container */
.site-header .services-dropdown-menu {
  min-width: 320px;
  padding: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 14px;
  box-shadow: 0 20px 40px -10px rgba(10, 25, 47, 0.18), 0 6px 16px -2px rgba(10, 25, 47, 0.08);
  margin-top: 10px !important;
  position: relative;
}

/* Invisible Hover Bridge for desktop to prevent flickering when moving cursor */
.site-header .navbar-nav .dropdown>.services-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}

/* Desktop Hover & Click Trigger for Smooth Dropdown Reveal */
@media (min-width: 992px) {

  .site-header .navbar-nav .dropdown:hover>.services-dropdown-menu,
  .site-header .navbar-nav .dropdown.show>.services-dropdown-menu,
  .site-header .services-dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .site-header .navbar-nav .dropdown>.services-dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
    pointer-events: none;
  }
}

/* Dropdown Category Header */
.site-header .services-dropdown-menu .dropdown-header {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #94A3B8;
  padding: 4px 10px 8px 10px;
  margin-bottom: 2px;
}

/* Service Dropdown Item */
.site-header .service-dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--primary-color) !important;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

/* Left Accent Indicator Bar on Hover */
.site-header .service-dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 3.5px;
  background: var(--primary-color);
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transform: scaleY(0.3);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Service Item Icon Box */
.site-header .service-dropdown-item .service-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(36, 54, 56, 0.08);
  border: 1px solid rgba(36, 54, 56, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.site-header .service-dropdown-item .service-item-icon i {
  color: var(--primary-color) !important;
  font-size: 1.2rem !important;
  display: inline-block !important;
  line-height: 1 !important;
  transition: color 0.25s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Service Item Content */
.site-header .service-dropdown-item .service-item-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.site-header .service-dropdown-item .service-item-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.3;
  transition: all 0.25s ease;
}

.site-header .service-dropdown-item .service-item-desc {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 1px;
  transition: color 0.25s ease;
}

/* Service Item Dynamic Hover State */
.site-header .service-dropdown-item:hover,
.site-header .service-dropdown-item:focus {
  background: linear-gradient(135deg, #FAF8E7 0%, rgba(244, 241, 208, 0.65) 100%) !important;
  border-color: #E2DDB6 !important;
  transform: translateX(5px);
  box-shadow: 0 6px 18px rgba(36, 54, 56, 0.08);
}

.site-header .service-dropdown-item:hover::before,
.site-header .service-dropdown-item:focus::before {
  opacity: 1;
  transform: scaleY(1);
}

.site-header .service-dropdown-item:hover .service-item-icon,
.site-header .service-dropdown-item:focus .service-item-icon {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 12px rgba(36, 54, 56, 0.28);
}

.site-header .service-dropdown-item:hover .service-item-icon i,
.site-header .service-dropdown-item:focus .service-item-icon i {
  color: #F4F1D0 !important;
  transform: scale(1.05);
}

.site-header .service-dropdown-item:hover .service-item-title,
.site-header .service-dropdown-item:focus .service-item-title {
  color: var(--primary-dark) !important;
  font-weight: 700;
  transform: translateX(2px);
}

.site-header .service-dropdown-item:hover .service-item-desc,
.site-header .service-dropdown-item:focus .service-item-desc {
  color: #334155 !important;
}

/* Active Service Item */
.site-header .service-dropdown-item.active {
  background: linear-gradient(135deg, #FAF8E7 0%, #F4F1D0 100%) !important;
  border-color: rgba(36, 54, 56, 0.2) !important;
  transform: translateX(4px);
}

.site-header .service-dropdown-item.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.site-header .service-dropdown-item.active .service-item-icon {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.site-header .service-dropdown-item.active .service-item-icon i {
  color: #F4F1D0 !important;
}

.site-header .service-dropdown-item.active .service-item-title {
  color: var(--primary-dark);
  font-weight: 700;
}

/* Dropdown Divider */
.site-header .services-dropdown-menu .dropdown-divider {
  border-color: rgba(226, 232, 240, 0.9);
  margin: 6px 4px 8px 4px;
}

/* Explore All Services CTA in Dropdown */
.site-header .dropdown-explore-wrapper {
  padding: 2px;
}

.site-header .dropdown-explore-link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FAF8E7 0%, rgba(244, 241, 208, 0.5) 100%);
  border: 1px solid #E2DDB6;
  color: var(--primary-color) !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(36, 54, 56, 0.05);
}

.site-header .dropdown-explore-link .explore-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(36, 54, 56, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.site-header .dropdown-explore-link .explore-icon-box i {
  color: var(--primary-color) !important;
  transition: color 0.25s ease;
}

.site-header .dropdown-explore-link .explore-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary-color) !important;
  transition: color 0.25s ease;
}

.site-header .dropdown-explore-link .explore-arrow-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.site-header .dropdown-explore-link .explore-arrow-box i {
  color: var(--primary-color) !important;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Explore All Services Hover Effect */
.site-header .dropdown-explore-link:hover,
.site-header .dropdown-explore-link:focus {
  background: var(--primary-color) !important;
  color: #F4F1D0 !important;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(36, 54, 56, 0.22);
}

.site-header .dropdown-explore-link:hover .explore-icon-box,
.site-header .dropdown-explore-link:focus .explore-icon-box {
  background: rgba(244, 241, 208, 0.25);
  transform: scale(1.1);
}

.site-header .dropdown-explore-link:hover .explore-icon-box i,
.site-header .dropdown-explore-link:focus .explore-icon-box i {
  color: #F4F1D0 !important;
}

.site-header .dropdown-explore-link:hover .explore-title,
.site-header .dropdown-explore-link:focus .explore-title {
  color: #F4F1D0 !important;
}

.site-header .dropdown-explore-link:hover .explore-arrow-box i,
.site-header .dropdown-explore-link:focus .explore-arrow-box i {
  transform: translateX(5px);
  color: #F4F1D0 !important;
}

.site-header .dropdown-explore-link.active {
  background: var(--primary-color) !important;
  border-color: var(--primary-color);
  border-left: 3px solid #F4F1D0;
}

.site-header .dropdown-explore-link.active .explore-title,
.site-header .dropdown-explore-link.active .explore-icon-box i,
.site-header .dropdown-explore-link.active .explore-arrow-box i {
  color: #F4F1D0 !important;
}

.site-header .dropdown-explore-link.active .explore-icon-box {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.site-header .dropdown-explore-link.active .explore-arrow-box {
  color: var(--accent-gold);
}

/* ==========================================================================
   SCROLL REVEAL & ENTRANCE ANIMATIONS
   ========================================================================== */

.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale,
.reveal-flip {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-scale {
  transform: scale(0.88);
}

.reveal-flip {
  transform: perspective(1000px) rotateX(20deg) translateY(35px);
}

/* Revealed Active State */
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed,
.reveal-scale.revealed,
.reveal-flip.revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotateX(0deg);
}

/* Stagger Delay Utilities */
[data-delay="50"] {
  transition-delay: 0.05s;
}

[data-delay="100"] {
  transition-delay: 0.1s;
}

[data-delay="150"] {
  transition-delay: 0.15s;
}

[data-delay="200"] {
  transition-delay: 0.2s;
}

[data-delay="250"] {
  transition-delay: 0.25s;
}

[data-delay="300"] {
  transition-delay: 0.3s;
}

[data-delay="350"] {
  transition-delay: 0.35s;
}

[data-delay="400"] {
  transition-delay: 0.4s;
}

[data-delay="450"] {
  transition-delay: 0.45s;
}

[data-delay="500"] {
  transition-delay: 0.5s;
}

[data-delay="600"] {
  transition-delay: 0.6s;
}

/* Counter Animated Number Styling */
.stat-number.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover .stat-number.count-up {
  transform: scale(1.08);
}

/* ==========================================================================
   HOMEPAGE MINIMAL TEAM CARD STYLES (Matching user reference design)
   ========================================================================== */
.team-card-minimal {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(36, 54, 56, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.team-card-minimal:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(36, 54, 56, 0.12);
  border-color: rgba(36, 54, 56, 0.2);
}

.team-card-minimal .team-img-box {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
  background-color: #EAEDF0;
}

.team-card-minimal .team-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card-minimal:hover .team-img-box img {
  transform: scale(1.04);
}

.team-card-minimal .team-content-box {
  padding: 20px 16px 24px;
  text-align: center;
  background-color: #FFFFFF;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team-card-minimal .team-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.team-card-minimal .team-role-badge {
  display: inline-block;
  background-color: var(--cream-color, #F4F1D0);
  color: var(--primary-color, #243638);
  border: 1px solid rgba(36, 54, 56, 0.12);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 9999px;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
}

.team-card-minimal:hover .team-role-badge {
  background-color: var(--primary-color, #243638);
  color: var(--cream-color, #F4F1D0);
  border-color: var(--primary-color, #243638);
}

/* Team Section Background (Matching Interactive Location Map #FAF9F6) */
.bg-pattern-team-luxury {
  background: #FAF9F6;
  position: relative;
  border-top: 1px solid #E2DCCF;
  border-bottom: 1px solid #E2DCCF;
}

/* Side Decorative Architectural SVG Shapes */
.team-side-decor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

.team-decor-left {
  left: -60px;
  animation: floatSlowLeft 8s ease-in-out infinite alternate;
}

.team-decor-right {
  right: -60px;
  animation: floatSlowRight 8s ease-in-out infinite alternate;
}

@keyframes floatSlowLeft {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }

  100% {
    transform: translateY(-44%) rotate(8deg);
  }
}

@keyframes floatSlowRight {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }

  100% {
    transform: translateY(-56%) rotate(-8deg);
  }
}

/* ==========================================================================
   Real Estate Services Dedicated Styles (Approach, Business & Investors)
   ========================================================================== */

/* 7-Step Approach Flow Banner */
.approach-flow-banner {
  background: #243638;
  color: #F4F1D0;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(36, 54, 56, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.approach-flow-banner span.flow-arrow {
  color: #D4AF37;
  font-weight: 800;
}

/* Approach Step Card */
.approach-step-card {
  background: #FFFFFF;
  border: 1px solid rgba(36, 54, 56, 0.08);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(36, 54, 56, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.approach-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 36px -6px rgba(36, 54, 56, 0.14);
}

.approach-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.approach-step-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #243638;
  background: #FAF9F5;
  border: 1px solid #EAE4DC;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.approach-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(36, 54, 56, 0.06);
  color: #243638;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.approach-step-card:hover .approach-step-icon {
  background: #243638;
  color: #D4AF37;
  transform: scale(1.1);
}

.approach-step-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #243638;
  margin-bottom: 8px;
  line-height: 1.35;
}

.approach-step-card p {
  font-size: 0.88rem;
  color: #64748B;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Solutions for Businesses Grid Cards */
.business-solution-card {
  background: #FFFFFF;
  border: 1px solid rgba(36, 54, 56, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(36, 54, 56, 0.03);
  transition: all 0.3s ease;
  height: 100%;
}

.business-solution-card:hover {
  border-color: #243638;
  box-shadow: 0 8px 20px rgba(36, 54, 56, 0.09);
  transform: translateX(4px);
}

.business-solution-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(36, 54, 56, 0.07);
  color: #243638;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.business-solution-card:hover .business-solution-icon {
  background: #243638;
  color: #F4F1D0;
}

.business-solution-title {
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 700;
  color: #243638;
  margin-bottom: 0;
}

/* Investor Batch-wise Step Cards */
.investor-batch-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.investor-batch-card {
  background: #FFFFFF;
  border: 1px solid rgba(36, 54, 56, 0.09);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(36, 54, 56, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.investor-batch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: #243638;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.investor-batch-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 12px 28px rgba(36, 54, 56, 0.09);
  transform: translateX(5px);
}

.investor-batch-card:hover::before {
  opacity: 1;
}

.investor-batch-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(36, 54, 56, 0.07);
  color: #243638;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.investor-batch-card:hover .investor-batch-icon {
  background: #243638;
  color: #D4AF37;
  transform: scale(1.08);
}

.investor-batch-content {
  flex-grow: 1;
}

.investor-batch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.investor-batch-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #243638;
  margin-bottom: 0;
  font-family: var(--font-heading);
}

.investor-batch-pill {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 9999px;
  background: rgba(36, 54, 56, 0.08);
  color: #243638;
  border: 1px solid rgba(36, 54, 56, 0.12);
}

.investor-batch-card:hover .investor-batch-pill {
  background: rgba(212, 175, 55, 0.15);
  color: #8C6D1F;
  border-color: rgba(212, 175, 55, 0.35);
}

.investor-batch-desc {
  font-size: 0.88rem;
  color: #64748B;
  margin-bottom: 0;
  line-height: 1.55;
}

/* Disclaimer Notice Card */
.disclaimer-notice-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(36, 54, 56, 0.1);
  border-left: 5px solid #D4AF37;
  padding: 32px 36px;
  box-shadow: 0 8px 24px rgba(36, 54, 56, 0.05);
  transition: all 0.35s ease;
}

.disclaimer-notice-card:hover {
  box-shadow: 0 14px 34px rgba(36, 54, 56, 0.09);
  transform: translateY(-2px);
}

.disclaimer-notice-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.disclaimer-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  color: #8C6D1F;
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}

.disclaimer-title-wrap {
  display: flex;
  flex-direction: column;
}

.disclaimer-notice-body {
  padding-left: 0;
}

/* Interior Category Cards */
.interior-category-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(36, 54, 56, 0.1);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(36, 54, 56, 0.04);
  position: relative;
  overflow: hidden;
}

.interior-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #243638, #D4AF37);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.interior-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 36px rgba(36, 54, 56, 0.12);
}

.interior-category-card:hover::before {
  opacity: 1;
}

.interior-cat-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(36, 54, 56, 0.08);
}

.interior-cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream-color);
  color: var(--primary-color);
  border: 1px solid rgba(36, 54, 56, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.interior-category-card:hover .interior-cat-icon {
  background: var(--primary-color);
  color: var(--cream-color);
  transform: scale(1.08);
}

.interior-cat-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.interior-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.interior-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #FAF9F5;
  border: 1px solid rgba(36, 54, 56, 0.06);
  font-size: 0.94rem;
  font-weight: 600;
  color: #243638;
  transition: all 0.25s ease;
}

.interior-service-item i {
  color: #D4AF37;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.interior-service-item:hover {
  background: #FFFFFF;
  border-color: #D4AF37;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(36, 54, 56, 0.06);
}

.interior-service-item:hover i {
  transform: scale(1.15);
}

/* ==========================================================================
   HOW IT WORKS / UNIFIED JOURNEY FLOW STYLES
   ========================================================================== */
.bg-pattern-workflow {
  background-color: #FAF9F6;
  border-top: 1px solid #E2DCCF;
  border-bottom: 1px solid #E2DCCF;
  position: relative;
}

/* Stepper Track Banner */
.workflow-stepper-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 16px 0 24px;
}

.workflow-stepper-track {
  background: #243638;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 9999px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(36, 54, 56, 0.16);
  max-width: 100%;
}

.stepper-node {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  transition: all 0.3s ease;
}

.stepper-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #D4AF37;
  color: #243638;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stepper-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #F4F1D0;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.stepper-connector {
  color: #D4AF37;
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}

/* Workflow Cards */
.workflow-card {
  background: #FFFFFF;
  border: 1.5px solid #EAE4DC;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 4px 20px rgba(36, 54, 56, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.workflow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.workflow-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 40px -8px rgba(36, 54, 56, 0.12);
}

.workflow-card:hover::before {
  opacity: 1;
}

.workflow-card-final {
  border-color: rgba(212, 175, 55, 0.45);
}

.workflow-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.workflow-num {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #243638;
  background: #FAF9F5;
  border: 1px solid #EAE4DC;
  padding: 4px 14px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.workflow-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(36, 54, 56, 0.06);
  color: #243638;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.35s ease;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.workflow-card:hover .workflow-icon-box {
  background: #243638;
  color: #D4AF37;
  transform: scale(1.08) rotate(3deg);
  border-color: #D4AF37;
}

.workflow-pillar-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #D4AF37;
  margin-bottom: 6px;
}

.workflow-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #243638;
  margin-bottom: 10px;
  line-height: 1.3;
}

.workflow-text {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 14px;
}

.workflow-check-list {
  border-top: 1px dashed rgba(36, 54, 56, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workflow-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}

/* ==========================================================================
   LUXURY FORM & BESPOKE DROPDOWN SYSTEM
   ========================================================================== */
.contact-form-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-top: 4px solid var(--accent-gold);
  box-shadow: 0 16px 45px -8px rgba(36, 54, 56, 0.08), 0 0 0 1px rgba(220, 210, 150, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.luxury-form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: #243638;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.luxury-form-label .req-star {
  color: #C5A059;
  font-size: 1rem;
  margin-left: 3px;
}

.luxury-form-label .helper-note {
  font-size: 0.75rem;
  font-weight: 500;
  color: #8C9799;
  text-transform: none;
  letter-spacing: normal;
}

/* Unified Luxury Input Group */
.luxury-input-group {
  position: relative;
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  background: #FAF9F6;
  border: 1.5px solid #E2DCCF;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.luxury-input-group:focus-within {
  border-color: #C5A059;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.16), 0 4px 12px rgba(36, 54, 56, 0.04);
}

.luxury-input-group .input-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 0 14px;
  background: transparent;
  color: #8C9799;
  border-right: 1px solid rgba(226, 220, 207, 0.7);
  font-size: 1.15rem;
  transition: all 0.25s ease;
}

.luxury-input-group:focus-within .input-icon-box {
  color: #C5A059;
  border-color: rgba(197, 160, 89, 0.35);
  background: #FFFDF8;
}

.luxury-input-group .form-control,
.luxury-input-group .form-select {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.95rem;
  font-weight: 500;
  color: #162528;
  padding: 13px 16px;
  min-height: 50px;
}

.luxury-input-group .form-control::placeholder {
  color: #A5AFB1;
  font-weight: 400;
  font-size: 0.9rem;
}

/* Global Form Control & Select Overrides */
.form-control,
.form-select {
  border-radius: 10px;
  border: 1.5px solid #E2DCCF;
  background-color: #FAF9F6;
  color: #162528;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-control:focus,
.form-select:focus {
  border-color: #C5A059;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.16);
  color: #162528;
}

/* Bespoke Dropdown Design */
.luxury-select,
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23C5A059' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.2' d='m3 6 5 5 5-5'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 14px 14px !important;
  padding-right: 46px !important;
  font-weight: 600;
  color: #243638;
}

.luxury-select option {
  background: #FFFFFF;
  color: #162528;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 14px;
}

.luxury-select optgroup {
  font-weight: 700;
  color: #243638;
  background: #F6F4ED;
  padding: 8px 12px;
}

/* Service Category Quick Filter Pills */
.service-pill-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.service-pill-btn {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  background: #F4F1E8;
  color: #4A585A;
  border: 1px solid #E2DCCF;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.service-pill-btn:hover {
  background: #EDE8DC;
  color: #162528;
  border-color: #C5A059;
}

.service-pill-btn.active {
  background: #243638;
  color: #F4F1D0;
  border-color: #243638;
  box-shadow: 0 3px 10px rgba(36, 54, 56, 0.18);
}

.service-pill-btn.active i {
  color: var(--accent-gold);
}

/* Luxury Textarea */
.luxury-textarea-group {
  border-radius: 12px;
  background: #FAF9F6;
  border: 1.5px solid #E2DCCF;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.luxury-textarea-group:focus-within {
  border-color: #C5A059;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.16), 0 4px 12px rgba(36, 54, 56, 0.04);
}

.luxury-textarea-group .form-control {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #162528;
  resize: vertical;
  min-height: 110px;
}

.luxury-textarea-group .form-control::placeholder {
  color: #A5AFB1;
  font-size: 0.9rem;
}

.textarea-footer-hints {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px 10px;
  background: #FAF9F6;
  border-top: 1px dashed rgba(226, 220, 207, 0.7);
  font-size: 0.75rem;
  color: #8C9799;
}

/* Submit Button & Glow */
.btn-submit-luxury {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
  color: #162528 !important;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.32);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.btn-submit-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.45);
  background: linear-gradient(135deg, #DFC048 0%, #CEAA63 100%);
}

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

/* Form Trust Badges */
.form-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 220, 207, 0.6);
  margin-top: 18px;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #6C7A7C;
  font-weight: 600;
}

.trust-badge-item i {
  color: #C5A059;
  font-size: 0.9rem;
}

/* ==========================================================================
   ADVISORY CONCIERGE EXPERIENCE PANEL (RIGHT COLUMN OF CONTACT FORM)
   ========================================================================== */
.advisory-concierge-panel {
  background: linear-gradient(155deg, #1C2E30 0%, #132022 100%);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-top: 4px solid var(--accent-gold);
  color: #FFFFFF;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(19, 32, 34, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.advisory-concierge-panel::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
  pointer-events: none;
}

/* Live Advisory Pulse Badge */
.live-desk-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 125, 50, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.35);
  color: #A5D6A7;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  animation: pulse-dot-green 1.8s infinite;
}

@keyframes pulse-dot-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

.speed-metric-tag {
  font-size: 0.78rem;
  color: #D4AF37;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.panel-headline {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #F4F1D0;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.panel-subtext {
  font-size: 0.88rem;
  color: #BDC7C9;
  line-height: 1.45;
  margin-bottom: 22px;
}

/* Micro Advisory Timeline Steps */
.concierge-timeline {
  position: relative;
  padding-left: 32px;
  margin-bottom: 22px;
}

.concierge-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 10px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, #D4AF37 0%, rgba(212, 175, 55, 0.2) 100%);
}

.timeline-step {
  position: relative;
  margin-bottom: 18px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step-num {
  position: absolute;
  left: -32px;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #162528;
  border: 2px solid #D4AF37;
  color: #F4F1D0;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.timeline-step-content h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #F4F1D0;
  margin-bottom: 3px;
}

.timeline-step-content p {
  font-size: 0.8rem;
  color: #A3B0B2;
  margin-bottom: 0;
  line-height: 1.4;
}

/* VIP Privileges Grid */
.vip-privileges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.privilege-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  transition: all 0.25s ease;
}

.privilege-card:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: #D4AF37;
  transform: translateY(-2px);
}

.privilege-card i {
  color: #D4AF37;
  font-size: 1.2rem;
  min-width: 24px;
}

.privilege-card .privilege-text h6 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #F4F1D0;
  margin-bottom: 1px;
}

.privilege-card .privilege-text p {
  font-size: 0.7rem;
  color: #A3B0B2;
  margin-bottom: 0;
  line-height: 1.2;
}

/* Direct Contact Fast-Lane Strip */
.direct-contact-strip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.direct-contact-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.direct-contact-strip-header span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #D4AF37;
}

.contact-quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.quick-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #E2E8DA;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.quick-link-item:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #F4F1D0;
  border-color: #D4AF37;
}

.quick-link-item i {
  color: #D4AF37;
  font-size: 0.95rem;
}

/* Advisory Trust Metrics Bar */
.advisory-metrics-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.metric-strip-item {
  text-align: center;
}

.metric-strip-item .metric-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #F4F1D0;
  line-height: 1;
  margin-bottom: 2px;
}

.metric-strip-item .metric-lbl {
  font-size: 0.68rem;
  color: #A3B0B2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Direct WhatsApp Concierge Button */
.btn-concierge-whatsapp {
  background: #25D366;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  width: 100%;
}

.btn-concierge-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}


.contact-info-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.12), transparent 70%);
  pointer-events: none;
}

.contact-info-panel .panel-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.contact-info-panel .panel-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #F4F1D0;
  margin-bottom: 10px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-info-item .item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.contact-info-item:hover .item-icon {
  background: #D4AF37;
  color: #162528;
  transform: scale(1.05);
}

.contact-info-item .item-content h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #D4AF37;
  margin-bottom: 4px;
}

.contact-info-item .item-content p,
.contact-info-item .item-content a {
  font-size: 0.92rem;
  color: #D6DCDE;
  text-decoration: none;
  line-height: 1.5;
  margin: 0;
  transition: color 0.2s ease;
}

.contact-info-item .item-content a:hover {
  color: #F4F1D0;
  text-decoration: underline;
}

/* Consultation Amenities Pill Grid in Info Panel */
.consultation-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(212, 175, 55, 0.25);
}

.amenity-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: #E2E8DA;
  display: flex;
  align-items: center;
  gap: 8px;
}

.amenity-pill i {
  color: #D4AF37;
  font-size: 0.95rem;
}

/* Dedicated Bottom Location & Google Map Section */
.location-map-section {
  position: relative;
  background: #FAF9F6;
  border-top: 1px solid #E2DCCF;
}

.map-wrapper-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1.5px solid #E2DCCF;
  box-shadow: 0 20px 50px -10px rgba(36, 54, 56, 0.1);
  overflow: hidden;
  position: relative;
}

.map-header-bar {
  background: #FFFFFF;
  padding: 22px 28px;
  border-bottom: 1px solid #E2DCCF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.map-iframe-container {
  position: relative;
  width: 100%;
  height: 440px;
  min-height: 380px;
  background: #E5E3DF;
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   ICONIC AVENUES - LUXURY PAGE PRELOADER & TRANSITION LOADER
   ========================================================================== */
#site-preloader {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: radial-gradient(circle at center, #243638 0%, #162528 65%, #0F1819 100%) !important;
  z-index: 99999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s ease, transform 0.45s ease;
  pointer-events: all;
}

#site-preloader.preloader-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: scale(1.02);
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
  position: relative;
  z-index: 2;
  max-width: 480px;
  width: 100%;
}

/* Luxury Emblem Logo & Orbital Spinner */
.preloader-logo-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-top-color: #D4AF37;
  border-right-color: #F4F1D0;
  animation: preloaderSpin 1.4s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.preloader-ring-inner {
  position: absolute;
  top: 8px;
  left: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-radius: 50%;
  border: 1.5px dashed rgba(244, 241, 208, 0.35);
  animation: preloaderSpinReverse 2.4s linear infinite;
}

.preloader-logo-img-box {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: #162528;
  border: 2.5px solid #D4AF37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.35), 0 8px 24px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  animation: preloaderPulse 2.2s ease-in-out infinite alternate;
}

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

.preloader-logo-fallback {
  color: #D4AF37;
  font-size: 2.2rem;
}

@keyframes preloaderSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloaderSpinReverse {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes preloaderPulse {
  0% {
    transform: scale(0.97);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25), 0 6px 18px rgba(0, 0, 0, 0.4);
  }

  100% {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.5), 0 10px 28px rgba(0, 0, 0, 0.6);
  }
}

/* Core Services Badges */
.preloader-services-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  margin-bottom: 24px;
}

.preloader-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(244, 241, 208, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  color: #F4F1D0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: preloaderBadgeGlow 2.5s ease-in-out infinite alternate;
}

.preloader-service-badge i {
  color: #D4AF37;
  font-size: 0.88rem;
}

.preloader-service-badge:nth-child(2) {
  animation-delay: 0.4s;
}

.preloader-service-badge:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes preloaderBadgeGlow {
  0% {
    border-color: rgba(212, 175, 55, 0.25);
    background: rgba(244, 241, 208, 0.05);
  }

  100% {
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.2);
  }
}

/* Progress line indicator */
.preloader-progress-bar {
  width: 160px;
  height: 2.5px;
  background: rgba(244, 241, 208, 0.12);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.preloader-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, #D4AF37, #F4F1D0, transparent);
  animation: preloaderProgress 1.4s ease-in-out infinite;
}

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

  100% {
    transform: translateX(100%);
  }
}

/* ==========================================================================
   ICONIC AVENUES - LUXURY MODAL ALERT POP-UP
   ========================================================================== */
.luxury-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 24, 25, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.luxury-alert-overlay.active {
  opacity: 1;
  visibility: visible;
}

.luxury-alert-card {
  background: #ffffff;
  border-radius: 24px;
  max-width: 440px;
  width: 100%;
  padding: 36px 30px 30px;
  text-align: center;
  border: 1.5px solid #E2DDB6;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 10px 25px rgba(22, 37, 40, 0.15);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.luxury-alert-overlay.active .luxury-alert-card {
  transform: scale(1) translateY(0);
}

.luxury-alert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FAF8E7 0%, #D4AF37 50%, #FAF8E7 100%);
}

.luxury-alert-icon-wrap {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transition: transform 0.3s ease;
}

.luxury-alert-icon-wrap.success {
  background: #FAF8E7;
  border: 2px solid #D4AF37;
  color: #243638;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
  animation: alertIconPulse 2s ease-in-out infinite alternate;
}

.luxury-alert-icon-wrap.error {
  background: #FDF2F2;
  border: 2px solid #E02424;
  color: #E02424;
  box-shadow: 0 8px 24px rgba(224, 36, 36, 0.25);
}

@keyframes alertIconPulse {
  0% {
    transform: scale(0.97);
  }

  100% {
    transform: scale(1.05);
  }
}

.luxury-alert-title {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #162528;
  margin: 0 0 10px;
  letter-spacing: 0.04em;
}

.luxury-alert-text {
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.6;
  margin: 0 0 26px;
}

.luxury-alert-btn {
  width: 100%;
  padding: 13px 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 12px;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.25s ease;
}

.luxury-alert-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

/* ==========================================================================
   IN-LINE FORM VALIDATION MESSAGES
   ========================================================================== */
.field-error-msg {
  display: none;
  font-size: 0.82rem;
  color: #DC2626;
  font-weight: 600;
  margin-top: 6px;
  padding-left: 4px;
  animation: fieldErrorFadeIn 0.25s ease;
}

.field-error-msg.show {
  display: block;
}

@keyframes fieldErrorFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.luxury-input-group:has(input.is-invalid),
.luxury-textarea-group:has(textarea.is-invalid),
.luxury-input-group.is-invalid,
.luxury-textarea-group.is-invalid,
.svc-trigger.is-invalid {
  border-color: #DC2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}