/* ==========================================================================
   MSQUARE CITY - PROFESSIONAL REAL ESTATE STYLESHEET
   Accurately Replicating wavecity.in Design System & Enhanced Animations
   ========================================================================== */

:root {
  /* Royal Navy Blue Brand Colors */
  --brand-green: #0f3460;
  --brand-green-hover: #0a2547;
  --brand-green-dark: #07192f;
  --brand-green-light: #e0f2fe;
  --brand-navy: #0f3460;
  --brand-blue: #0284c7;
  --brand-cyan: #38bdf8;
  --brand-gold: #c89d47;
  --brand-gold-light: #f5eedf;

  --dark-bg: #0B1325;
  --dark-bg-secondary: #0c1f36;
  --dark-card: #102844;
  --light-bg: #f8fafc;
  --light-bg-alt: #f1f5f9;

  --text-dark: #0f172a;
  --text-body: #475569;
  --text-muted: #64748b;
  --text-white: #ffffff;

  --font-serif: 'Outfit', sans-serif;
  --font-heading: 'Outfit', 'Cinzel', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.16);
  --shadow-green: 0 8px 25px rgba(15, 52, 96, 0.3);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;

}

.container-fluid {
  width: 100%;
  padding: 0 2rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.bg-light-curve {
  background-color: #f7f9fa;
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 20px 20px;
}

.bg-dark {
  background-color: #0B1325 !important;
  color: var(--text-white);
}

.bg-dark-grid {
  background-color: #0d141e;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  color: var(--text-white);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
.brand-primary {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

.section-main-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  max-width: 900px;
  margin: 0 auto 1rem;
}

/* Section Headers & Alignment */
.section-header {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title-dark {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin: 0 auto;
}

.section-title-white {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  margin: 0 auto;
}

.green-accent-line {
  width: 60px;
  height: 3.5px;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}

.gold-accent-line {
  width: 60px;
  height: 3.5px;
  background: var(--brand-gold);
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #0284c7;
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(2, 132, 199, 0.25);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin: 0 auto 0.75rem;
  text-align: center;
}

.pill-label-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--brand-gold);
  background: rgba(200, 157, 71, 0.12);
  border: 1px solid rgba(200, 157, 71, 0.3);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin: 0 auto 0.75rem;
  text-align: center;
}

.green-text {
  color: var(--brand-blue);
}

.green-gradient-text {
  background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 40%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.section-sub-desc-light {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-large {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

.btn-green-solid {
  background: linear-gradient(135deg, #0f3460 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-green-solid:hover {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

.btn-glass-light {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-glass-light:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--text-dark);
}

/* ==========================================================================
   Floating Vertical Sidebar (Exact Wave City Style)
   ========================================================================== */
/* ==========================================================================
   Side Floating Action Bar — Premium
   ========================================================================== */
.side-floating-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 0;
}

.side-tab {
  background: rgba(10, 18, 35, 0.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  color: #e2e8f0 !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-right: none;
  /* Show only the icon pill by default */
  transform: translateX(calc(100% - 54px));
  transition:
    transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Shimmer highlight */
.side-tab::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  pointer-events: none;
}

.side-tab i {
  font-size: 1.15rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.side-tab:hover {
  transform: translateX(0) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: -4px 0 20px rgba(0,0,0,0.35);
}

.side-tab:hover i {
  transform: scale(1.18);
}

/* ── Visit — Sky Blue ── */
.side-tab-visit {
  border-left: 3px solid #38bdf8;
}
.side-tab-visit:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #1d4ed8 100%);
  border-left-color: #7dd3fc;
  box-shadow: -4px 0 24px rgba(14,165,233,0.35);
}

/* ── Brochure — Violet ── */
.side-tab-brochure {
  border-left: 3px solid #a78bfa;
}
.side-tab-brochure:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #c026d3 100%);
  border-left-color: #c4b5fd;
  box-shadow: -4px 0 24px rgba(139,92,246,0.35);
}

/* ── WhatsApp — Emerald (always colored) ── */
.side-tab-whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  border-left: 3px solid #4ade80;
  color: #fff !important;
  box-shadow: -3px 0 16px rgba(34,197,94,0.25);
}
.side-tab-whatsapp:hover {
  background: linear-gradient(135deg, #16a34a 0%, #14532d 100%);
  box-shadow: -4px 0 24px rgba(34,197,94,0.40);
}

/* ── Call — Gold ── */
.side-tab-call {
  border-left: 3px solid #c89d47;
}
.side-tab-call:hover {
  background: linear-gradient(135deg, #c89d47 0%, #92400e 100%);
  border-left-color: #fcd34d;
  box-shadow: -4px 0 24px rgba(200,157,71,0.40);
}

/* ── Enquire — Royal Blue ── */
.side-tab-enquire {
  border-left: 3px solid #6366f1;
}
.side-tab-enquire:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
  border-left-color: #a5b4fc;
  box-shadow: -4px 0 24px rgba(79,70,229,0.35);
}

Header & Navigation==========================================================================*/ .site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 52, 96, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(7, 20, 36, 0.08);
}

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

.brand-block {
  display: flex;
  align-items: center;
}

.brand-logo {
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  color: inherit !important;
}

.brand-logo:hover,
.brand-logo:focus,
.brand-logo:active {
  text-decoration: none !important;
  color: inherit !important;
}

.logo-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-leaf {
  color: var(--brand-green);
  font-size: 1.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .logo-leaf {
  transform: rotate(12deg) scale(1.08);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-primary {
  font-family: 'Outfit', 'Cinzel', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.brand-city {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.header-center-info {
  display: flex;
  align-items: center;
}

.rera-banner-badge {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.08), rgba(200, 157, 71, 0.08));
  color: var(--brand-navy);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(2, 132, 199, 0.2);
  letter-spacing: 0.2px;
}

.rera-banner-badge i {
  color: var(--brand-blue);
  font-size: 0.85rem;
}

.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links>li {
  display: flex;
  align-items: stretch;
  height: 100%;
  position: relative;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 76px;
  padding: 0 1.15rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1e293b;
  text-decoration: none !important;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.nav-item i {
  font-size: 0.72rem;
  transition: transform 0.25s ease;
  color: #64748b;
}

.nav-links>li:hover>.nav-item,
.has-dropdown:hover>.nav-item,
.nav-item:hover {
  background: transparent;
  color: var(--brand-blue);
  text-decoration: none !important;
}

.has-dropdown:hover>.nav-item i {
  transform: rotate(180deg);
  color: var(--brand-blue);
}

.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 225px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 0;
  margin-top: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 1300;
  pointer-events: none;
}

/* Show dropdown on hover (desktop) */
.has-dropdown:hover > .dropdown-menu,
/* Show dropdown when toggled open via JS click */
.has-dropdown.dropdown-open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li {
  border-bottom: 1px solid #edf2f7;
  list-style: none;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1e293b;
  text-decoration: none !important;
  transition: all 0.2s ease;
  background: #ffffff;
}

.dropdown-menu a:hover {
  background: #f8fafc;
  color: var(--brand-blue);
  padding-left: 24px;
  text-decoration: none !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff !important;
  background-color: #0B1325;
  text-decoration: none !important;
  letter-spacing: 0.3px;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  transition: all 0.2s ease;
}

/* WhatsApp header dropdown */
.header-wa-dropdown {
  position: relative;
}

.header-wa-dropdown .dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  left: auto;
  min-width: 220px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.header-wa-dropdown .dropdown-menu.wa-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-phone-link i {
  font-size: 1.15rem;
  color: #ffffff !important;
  transition: transform 0.2s ease;
}

.header-phone-link:hover {
  background-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.header-phone-link:hover i {
  transform: scale(1.1);
}

.header-user-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #0f172a;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.header-user-btn:hover {
  color: var(--brand-blue);
  transform: scale(1.12);
}

.mobile-toggle {
  display: none;
  background: #f1f5f9;
  border: 1px solid rgba(15, 52, 96, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 1.2rem;
  color: var(--brand-navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: var(--brand-navy);
  color: #ffffff;
}

/* ==========================================================================
   Hero Section with Full Screen Background YouTube Video
   ========================================================================== */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.15);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(10 30 55 / 39%) 0%, rgb(10 30 55 / 49%) 70%, rgb(10 30 55 / 47%) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 960px;
  color: #ffffff;
  padding: 3rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(15, 52, 96, 0.45);
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: #e0f2fe;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.45rem 1.3rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #38bdf8;
  border-radius: 50%;
  animation: pulse-ring-blue 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring-blue {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #e2e8f0;
  max-width: 720px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-sound-toggle {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: all var(--transition-fast);
}

.btn-sound-toggle:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
}

/* ==========================================================================
   SECTION 1: Wave City Brand Story & Counter Strip
   ========================================================================== */
.brand-intro-section {
  background: #ffffff;
  padding-bottom: 4rem;
}

.intro-text-wrap {
  text-align: center;
  margin: 0 auto 3.5rem;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro-paragraph {
  font-size: 1.12rem;
  color: #334155;
  max-width: 860px;
  margin: 0 auto 1.25rem;
  line-height: 1.8;
  text-align: center;
}

.intro-subparagraph {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 840px;
  margin: 0 auto;
  line-height: 1.75;
  text-align: center;
}

.counter-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.5rem;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.counter-col {
  text-align: center;
  flex: 1;
}

.counter-value-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.3rem;
}

.counter-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.plus-sign {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-green);
}

.counter-caption {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.counter-divider {
  width: 1px;
  height: 60px;
  background: #e2e8f0;
}

/* ==========================================================================
   SECTION 2: Features & Facilities Carousel Layout
   ========================================================================== */
.features-split-layout {
  display: flex;
  align-items: center;
  /* gap: 5rem; */
  /* margin-top: 2rem; */
  margin-left: 20px;
  margin-right: 20px;
}

.features-left-desc {
  flex: 0 0 25%;
}

.features-right-carousel {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.features-carousel-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.features-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.features-grid::-webkit-scrollbar {
  display: none;
}

.nav-arrow {
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-arrow:hover {
  background: var(--brand-green);
  color: white;
  border-color: var(--brand-green);
}

.feature-item-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.feature-item-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.feature-item-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-green);
  box-shadow: var(--shadow-lg);
}

.feature-icon-circle {
  width: 64px;
  height: 64px;
  background: var(--brand-green-light);
  color: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem;
  transition: transform var(--transition-fast);
}

.feature-item-card:hover .feature-icon-circle {
  transform: scale(1.1);
}

.feature-item-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.feature-item-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 3: Property Search & Cards (Wave City Find Dream Home)
   ========================================================================== */
.search-filter-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  background: rgba(24, 35, 48, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-bottom: 3.5rem;
}

.filter-dropdown-group select {
  width: 100%;
  background: #0d141e;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
}

.filter-dropdown-group select:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.25);
}

.btn-green-search {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-weight: 700;
  border: none;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transition: all var(--transition-fast);
}

.btn-green-search:hover {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(56, 189, 248, 0.4);
}

.property-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.yt-videos-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding-bottom: 20px;
  margin-top: 40px;
}

.yt-video-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.yt-video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 157, 71, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(200, 157, 71, 0.1);
}

.yt-video-card .video-body {
  padding: 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yt-video-card h4 {
  font-family: var(--font-serif, serif);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

.yt-video-card p {
  font-size: 13px;
  color: var(--luxury-gold, #c89d47);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.prop-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.prop-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 189, 248, 0.18);
}

.prop-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.prop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.prop-card:hover .prop-img-wrap img {
  transform: scale(1.06);
}

.prop-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  color: #ffffff;
  text-transform: uppercase;
}

.prop-tag.ready {
  background: var(--brand-green);
}

.prop-tag.fitout {
  background: #0284c7;
}

.prop-tag.launch {
  background: var(--brand-gold);
}

.prop-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 17, 24, 0.9);
  color: #a7f3d0;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(37, 168, 67, 0.3);
}

.prop-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prop-type {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.prop-content h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.prop-address {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.2rem;
}

.prop-features-list {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.prop-features-list li {
  font-size: 0.88rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.prop-features-list li i {
  color: var(--brand-gold);
  width: 16px;
}

.prop-card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* ==========================================================================
   SECTION 4: Gateway to MSquare City (Wave City Circular Hubs)
   ========================================================================== */
.gateway-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: stretch;
}

.gateway-circles-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.circle-feature-item {
  text-align: center;
}

.circle-avatar-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 3px var(--brand-green);
  transition: transform var(--transition-fast);
}

.circle-feature-item:hover .circle-avatar-wrap {
  transform: scale(1.08);
}

.circle-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-desc h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.circle-desc p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.map-embed-wrapper {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

.map-tag-banner {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.tag-icon {
  font-size: 1.5rem;
  color: var(--brand-green);
  margin-right: 0.8rem;
}

.map-tag-banner strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.map-tag-banner p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 5: Video Gallery Box (Wave City Dark Video Split)
   ========================================================================== */
.video-showcase-box {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--dark-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-text-panel {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yt-videos-scroll-container {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.yt-videos-scroll-container::-webkit-scrollbar {
  display: none;
}

.yt-video-card {
  width: 100%;
  max-width: 800px;
  /* Restrict width so it's not gigantic on large screens */
  margin: 0 auto;
  /* Center the vertical cards */
}


.video-badge-tag {
  color: var(--brand-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}

.video-text-panel h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.video-text-panel p {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 1.8rem;
  line-height: 1.65;
}

.video-stats-pill {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  color: #94a3b8;
  font-size: 0.88rem;
}

.video-stats-pill i {
  color: var(--brand-green);
}

.video-frame-panel {
  min-height: 380px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.video-embed-holder {
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.video-embed-holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   SECTION 6: Testimonials Section
   ========================================================================== */
.testimonial-card-single {
  display: grid;
  grid-template-columns: 360px 1fr;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  max-width: 980px;
  margin: 0 auto;
}

.testimonial-avatar-side {
  position: relative;
}

.testimonial-avatar-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
  cursor: pointer;
}

.testimonial-content-side {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  font-size: 2.2rem;
  color: var(--brand-green-light);
  margin-bottom: 0.5rem;
}

.client-name {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.client-unit {
  color: var(--brand-green);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  display: block;
}

.client-words {
  font-size: 1.05rem;
  color: #334155;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.rating-stars {
  color: #f59e0b;
  font-size: 1rem;
}

/* ==========================================================================
   SECTION 7: Honours & Awards Section
   ========================================================================== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.award-card {
  background: var(--dark-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.award-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-gold);
}

.award-card.featured-gold {
  border: 1px solid var(--brand-gold);
  background: linear-gradient(180deg, #182330 0%, #111a24 100%);
  box-shadow: 0 0 25px rgba(200, 157, 71, 0.15);
}

.award-icon {
  font-size: 2.8rem;
  color: var(--brand-gold);
  margin-bottom: 1.2rem;
}

.award-badge-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}

.award-card h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.award-card p {
  font-size: 0.88rem;
  color: #94a3b8;
}

/* ==========================================================================
   SECTION 8: Blog Section
   ========================================================================== */
.blog-cards-grid {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-green) #e2e8f0;
}

.blog-cards-grid::-webkit-scrollbar {
  height: 8px;
}

.blog-cards-grid::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}

.blog-cards-grid::-webkit-scrollbar-thumb {
  background-color: var(--brand-green);
  border-radius: 10px;
}

.blog-card {
  flex: 0 0 min(380px, 85vw);
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.blog-img-holder {
  height: 200px;
  overflow: hidden;
}

.blog-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.blog-card:hover .blog-img-holder img {
  transform: scale(1.08);
}

.blog-body {
  padding: 1.6rem;
}

.blog-meta-row {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.meta-divider {
  color: #cbd5e1;
}

.blog-body h3 {
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: #0f172a;
}

.blog-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.btn-read-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--brand-green);
  color: var(--brand-green);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-read-outline:hover {
  background: var(--brand-green);
  color: #fff;
}

/* ==========================================================================
   SECTION 9: Bank Partners
   ========================================================================== */
.banking-partners-section {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 3.5rem 0;
}

.bank-intro {
  margin: 0 auto 2.5rem;
  text-align: center;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bank-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.bank-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.65;
}

.bank-logos-strip {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bank-pill {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.bank-pill i {
  color: var(--brand-green);
}

/* ==========================================================================
   SECTION 10: FAQs (Wave City 2-Column Accordion)
   ========================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  font-size: 0.85rem;
  color: var(--brand-green);
  transition: transform var(--transition-fast);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.4rem;
  background: #f8fafc;
}

.faq-answer p {
  padding-bottom: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-body);
}

.faq-accordion-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-accordion-item.active .faq-answer {
  max-height: 200px;
  padding-top: 0.5rem;
}

/* ==========================================================================
   SECTION 11: Newsletter Strip
   ========================================================================== */
.newsletter-section {
  background: #0b1118;
  padding: 3.5rem 0;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.newsletter-title-block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.newsletter-title-block i {
  font-size: 2.4rem;
  color: var(--brand-green);
}

.newsletter-title-block h3 {
  color: #ffffff;
  font-size: 1.5rem;
}

.newsletter-title-block p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  min-width: 380px;
}

.newsletter-form input {
  flex: 1;
  background: #182330;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  outline: none;
}

/* ==========================================================================
   SECTION 12: Footer (Luxury Executive Dark Theme)
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, #071424 0%, #030810 100%);
  color: #94a3b8;
  padding-top: 5rem;
  border-top: 3px solid var(--brand-gold, #c89d47);
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
}

.brand-info-col .brand-primary {
  color: #ffffff;
  font-family: 'Outfit', 'Cinzel', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-info-col .brand-city {
  color: var(--brand-gold, #c89d47);
  letter-spacing: 2.5px;
  font-size: 0.85rem;
}

.brand-info-col .logo-leaf {
  color: var(--brand-cyan, #38bdf8);
}

.footer-summary {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1.25rem 0 1.5rem 0;
  color: #94a3b8;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
}

.footer-social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-social-icons a:hover {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-navy) 100%);
  color: #ffffff;
  border-color: var(--brand-blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
}

.footer-col h4 {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.6rem;
  letter-spacing: 0.2px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--brand-gold, #c89d47);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: #94a3b8;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.footer-col ul a:hover {
  color: #38bdf8;
  transform: translateX(6px);
}

.foot-contact {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  line-height: 1.6;
}

.foot-contact i {
  color: var(--brand-gold, #c89d47);
  margin-top: 0.25rem;
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
}

.footer-hours-box {
  margin-top: 1.25rem;
  background: rgba(200, 157, 71, 0.08);
  color: #dfb23c;
  border: 1px solid rgba(200, 157, 71, 0.25);
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-disclaimer-bar {
  background: #02060b;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.7;
}

.footer-disclaimer-bar strong {
  color: #94a3b8;
}

.footer-copyright-bar {
  background: #010305;
  padding: 1.3rem 0;
  font-size: 0.82rem;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-copy-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.footer-legal-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--brand-cyan, #38bdf8);
}

/* ==========================================================================
   Universal Modal
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 13, 19, 0.85);
  backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
  padding: 1.5rem;
}

.modal-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 999999 !important;
}

/* Contact Selector Modal — Desktop Dialog Centered */
#contactSelectorModal {
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  z-index: 9999999 !important;
}

#contactSelectorModal.active,
.modal-backdrop.active#contactSelectorModal {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 9999999 !important;
}

#contactSelectorSheet {
  width: 100%;
  max-width: 480px;
  margin: auto;
  background: #0c1f36;
  border: 1px solid rgba(200,157,71,0.25);
  border-radius: 24px !important;
  padding: 0 0 16px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
  transform: scale(0.94) translateY(12px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease !important;
  will-change: transform, opacity;
  overflow: hidden;
  position: relative;
}

#contactSelectorModal.active #contactSelectorSheet,
.modal-backdrop.active #contactSelectorSheet {
  transform: scale(1) translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.contact-sheet-handle {
  display: none;
}

@media (max-width: 768px) {
  #contactSelectorModal {
    align-items: flex-end !important;
    padding: 0 !important;
  }
  #contactSelectorSheet {
    max-width: 100%;
    border-radius: 22px 22px 0 0 !important;
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding: 0 0 calc(24px + env(safe-area-inset-bottom));
    box-shadow: 0 -12px 60px rgba(0,0,0,0.65);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  #contactSelectorModal.active #contactSelectorSheet,
  .modal-backdrop.active #contactSelectorSheet {
    transform: translateY(0) !important;
  }
  .contact-sheet-handle {
    display: flex;
    justify-content: center;
    padding: 12px 0 0;
  }
}

.modal-box {
  background: linear-gradient(180deg, #0d1e34 0%, #081424 100%);
  border: 1px solid rgba(200, 157, 71, 0.35);
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  padding: 2.2rem 2.5rem;
  position: relative;
  box-shadow: 0 25px 70px -10px rgba(0, 0, 0, 0.85), 0 0 35px rgba(200, 157, 71, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: scale(0.92) translateY(10px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.modal-backdrop.active .modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.2rem;
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: scale(1.08);
}

.modal-box .modal-header {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 0 0 0.8rem 0 !important;
  border-bottom: 1px solid rgba(200, 157, 71, 0.2) !important;
  margin-bottom: 1.2rem !important;
  width: 100% !important;
}

.modal-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #c89d47;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.modal-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.4px;
  margin-bottom: 0.35rem;
  width: 100%;
}

.modal-header p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 0;
  line-height: 1.45;
  width: 100%;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.45rem;
}

.form-group label i {
  font-size: 0.85rem;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
  outline: none;
  transition: all 0.22s ease;
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: #64748b;
}

.form-group select option {
  background: #0d1e34;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #c89d47;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(200, 157, 71, 0.25);
  color: #ffffff;
}

.vip-submit-btn {
  background: linear-gradient(135deg, #c89d47 0%, #9a7228 100%) !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.5px !important;
  border-radius: 14px !important;
  padding: 0.9rem 1.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(200, 157, 71, 0.35) !important;
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1) !important;
  margin-top: 0.4rem;
}

.vip-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 157, 71, 0.5) !important;
  filter: brightness(1.08);
}

.vip-submit-btn i {
  transition: transform 0.2s ease;
}

.vip-submit-btn:hover i {
  transform: translateX(4px);
}

.privacy-note {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  text-align: center;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.privacy-note i {
  color: #c89d47;
}

/* Toast */
.toast-notification {
  position: fixed;
  top: 25px;
  right: 25px;
  background: #0f172a;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3000;
  box-shadow: var(--shadow-lg);
  transform: translateY(-50px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
  border-left: 4px solid var(--brand-green);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--brand-green);
  font-size: 1.3rem;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .awards-grid,
  .property-cards-grid,
  .yt-videos-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-strip {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .counter-divider {
    display: none;
  }

  .gateway-container,
  .video-showcase-box,
  .testimonial-card-single,
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .counter-strip {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
    padding: 1.5rem;
  }

  .counter-col {
    flex: none;
    width: 100%;
  }

  .counter-num {
    font-size: 2rem;
  }

  .plus-sign {
    font-size: 1.4rem;
  }

  .counter-caption {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .header-center-info,
  .header-phone-link {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    padding: 80px 1.5rem 2rem;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 1100;
    /* Behind header which is 1200 */
  }

  .main-nav.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    height: auto;
  }

  .nav-links>li {
    flex-direction: column;
    height: auto;
    width: 100%;
  }

  .nav-item {
    height: 48px;
    padding: 0 1rem;
    width: 100%;
    justify-content: space-between;
    border-radius: 6px;
  }

  .has-dropdown > .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    border-radius: 6px;
    padding: 0.3rem 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    margin-top: 2px;
    pointer-events: auto;
  }

  .has-dropdown > .dropdown-menu a {
    padding: 10px 1.5rem;
    font-size: 0.8rem;
    background: transparent;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .search-filter-bar {
    grid-template-columns: 1fr;
  }

  .awards-grid,
  .faq-grid,
  .yt-videos-grid-container {
    grid-template-columns: 1fr;
  }

  .property-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form {
    min-width: auto;
    flex-direction: column;
  }

  .side-floating-bar {
    display: none;
  }
}

/* ==========================================================================
   GATEWAY CORPORATE & SITE OFFICES GRID (Wave City Style)
   ========================================================================== */
.gateway-offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.office-card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md, 12px);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.office-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 168, 67, 0.1);
  border: 1px solid rgba(37, 168, 67, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brand-green, #25a843);
  flex-shrink: 0;
}

.office-card-info {
  flex: 1;
}

.office-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.office-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark, #0f172a);
  margin: 0;
}

.office-type-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: #f1f5f9;
  color: #475569;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.office-card-address {
  font-size: 0.85rem;
  color: var(--text-muted, #64748b);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.office-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #334155;
}

.office-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.office-card-meta i {
  color: var(--brand-green, #25a843);
}


.testimonial-card-single.reverse {
  grid-template-columns: 1fr 360px;
}

.testimonial-card-single.reverse .testimonial-avatar-side {
  order: 2;
}

.testimonial-card-single.reverse .testimonial-content-side {
  order: 1;
}

@media (max-width: 991px) {
  .testimonial-card-single.reverse {
    grid-template-columns: 1fr;
  }

  .testimonial-card-single.reverse .testimonial-avatar-side {
    order: 1;
  }

  .testimonial-card-single.reverse .testimonial-content-side {
    order: 2;
  }
}

/* ==========================================================================
   Blog Details Page Enhancements
   ========================================================================== */
.blog-detail-wrapper {
  /* max-width: 920px; */
  margin: 0 auto;
  padding: 2.5rem 20px 5rem;
}

.blog-featured-image-box {
  margin-bottom: 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.8);
  background: #ffffff;
}

.blog-featured-image-box img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.blog-article-card {
  background: #ffffff;
  padding: 3.5rem 4rem;
  border-radius: 24px;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(226, 232, 240, 0.8);
}

.blog-article-body h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: #0f172a;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.blog-article-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: #1e293b;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-article-body p {
  margin-bottom: 1.5rem;
  color: #475569;
}

.blog-article-body ul {
  list-style-type: disc;
  margin-left: 20px;
}

.blog-article-body li {
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .blog-detail-wrapper {
    padding: 1.5rem 20px 3.5rem;
  }

  .blog-article-card {
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }

  .blog-header-clean h1 {
    font-size: 1.85rem !important;
  }
}

/* =========================================
   INSTAGRAM REELS GALLERY
========================================= */
.reels-section {
  padding: 60px 0;
  overflow: hidden;
}

.reels-container {
  width: 100%;
  margin-top: 30px;
}

.reels-scroll-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #e2e8f0;
}

.reels-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}

.reels-scroll-wrapper::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}

.reels-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}

.reel-card {
  flex: 0 0 300px;
  height: 533px;
  /* 9:16 aspect ratio roughly */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.reel-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.reel-img-wrapper {
  width: 100%;
  height: 100%;
}

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

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

.reel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  pointer-events: none;
}

.reel-icon {
  font-size: 28px;
  color: #fff;
  opacity: 0.8;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
  .reel-card {
    flex: 0 0 260px;
    height: 462px;
  }
}

/* Photo Gallery Masonry Layout */
.masonry-grid {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-top: 40px;
  align-items: flex-start;
  /* Ensure columns don't stretch */
}

.masonry-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  /* Make all columns take equal width */
  min-width: 0;
  /* Prevent flex overflow */
}

.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #f1f5f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.masonry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-overlay i {
  color: white;
  font-size: 32px;
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.masonry-item:hover .masonry-overlay i {
  transform: scale(1);
}

@media (max-width: 768px) {
  .masonry-grid {
    gap: 4px;
  }

  .masonry-column {
    gap: 4px;
  }

  .masonry-overlay i {
    font-size: 16px;
  }

  .mobile-only-btn {
    display: block !important;
  }
}

.mobile-only-btn {
  display: none;
}

@media (max-width: 768px) {
  .features-split-layout {
    flex-direction: column;
    margin-top: 3rem;
  }

  .features-left-desc {
    flex: none;
    text-align: center;
  }

  .features-left-desc p {
    text-align: center !important;
    max-width: 100% !important;
  }

  .features-right-carousel {
    position: relative;
    width: 100%;
    padding: 0 50px;
    /* Space for the arrows */
    margin-top: 1.5rem;
    box-sizing: border-box;
  }

  .features-right-carousel .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .features-right-carousel .left-arrow {
    left: 0;
  }

  .features-right-carousel .right-arrow {
    right: 0;
  }

  .feature-item-card {
    flex: 0 0 100%;
    margin: 0;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
  }
}

/* =========================================
   BLOG SPLIT LAYOUT & SIDEBAR
========================================= */
.blog-split-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 992px) {
  .blog-split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 100px;
  /* Offset for sticky header */
}

.sidebar-widget {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
}

.widget-title {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f8fafc;
}

.widget-title i {
  color: #0ea5e9;
}

/* Sidebar Videos */
.widget-video-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.widget-video-item {
  width: 100%;
}

.widget-video-item iframe {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  background: #000;
}

.video-caption {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-top: 8px;
  line-height: 1.4;
}

/* Sidebar Blogs */
.widget-blog-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.widget-blog-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.widget-blog-item:hover {
  background: #f8fafc;
}

.wb-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.wb-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wb-content .wb-date {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
       LUXURY APPROVED BANKING PARTNERS SHOWCASE (ROYAL SAPPHIRE BLUE THEME)
       ========================================================================== */
.bank-ticker-section {
  background: radial-gradient(circle at 50% 0%, #0f2744 0%, #08172c 50%, #040c18 100%);
  padding: 75px 0 80px;
  overflow: hidden;
  position: relative;
  border-top: 2px solid #38bdf8;
  border-bottom: 2px solid #38bdf8;
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 -20px 40px rgba(0, 0, 0, 0.6);
}

.bank-ticker-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.05;
  pointer-events: none;
}

.bank-trust-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.bank-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(15, 39, 68, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 24px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #e0f2fe;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.bank-trust-pill i {
  color: #38bdf8;
  font-size: 13px;
}

.bank-ticker-container {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  margin: 35px 0 10px;
  background: rgba(4, 12, 24, 0.55);
  border-top: 1px solid rgba(56, 189, 248, 0.25);
  border-bottom: 1px solid rgba(56, 189, 248, 0.25);
  padding: 12px 0;
}

.bank-ticker-badge {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 50%, #0369a1 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 12.5px;
  padding: 10px 24px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  box-shadow: 4px 0 18px rgba(2, 132, 199, 0.4);
  flex-shrink: 0;
  border-radius: 0 30px 30px 0;
}

.bank-ticker-badge i {
  font-size: 14px;
  color: #ffffff;
  animation: pulse-blue 1.5s infinite;
}

@keyframes pulse-blue {

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

  50% {
    opacity: 0.6;
    transform: scale(1.18);
  }
}

.bank-ticker-track-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 50px, black calc(100% - 50px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 50px, black calc(100% - 50px), transparent);
}

.bank-ticker-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  white-space: nowrap;
  padding: 15px 0;
  animation: bankTickerScroll 90s linear infinite;
  will-change: transform;
}

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

@keyframes bankTickerScroll {
  0% {
    transform: translateX(0);
  }

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

.bank-ticker-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 39, 68, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 30px;
  padding: 7px 18px 7px 10px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.bank-ticker-card:hover {
  background: rgba(2, 132, 199, 0.35);
  border-color: #38bdf8;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(56, 189, 248, 0.35);
}

.bank-ticker-logo-box {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.bank-ticker-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bank-ticker-logo-box i {
  color: #0369a1;
  font-size: 14px;
}

.bank-ticker-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bank-ticker-name {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.bank-ticker-rate {
  color: #38bdf8;
  font-weight: 800;
  font-size: 12px;
  background: rgba(2, 132, 199, 0.2);
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

/* PREMIUM ROYAL BLUE BANK SHOWCASE GRID */
.bank-grid-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 35px;
}

.bank-feature-box {
  position: relative;
  background: linear-gradient(145deg, rgba(15, 39, 68, 0.9) 0%, rgba(6, 18, 36, 0.98) 100%);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  backdrop-filter: blur(8px);
  overflow: hidden;
}

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

.bank-feature-box:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(56, 189, 248, 0.3);
}

.bank-feature-box:hover::before {
  opacity: 1;
}

.bank-feature-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bank-feature-logo {
  width: 58px;
  height: 58px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.bank-feature-box:hover .bank-feature-logo {
  transform: scale(1.06);
}

.bank-feature-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bank-feature-logo i {
  color: #0369a1;
  font-size: 26px;
}

.bank-feature-heading-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bank-feature-title {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.bank-feature-status {
  font-size: 11px;
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bank-feature-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: rgba(3, 10, 20, 0.7);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.15);
}

.bank-meta-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bank-meta-cell span {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 600;
}

.bank-meta-cell strong {
  font-size: 14px;
  color: #38bdf8;
  font-weight: 800;
}

.bank-meta-cell p {
  font-size: 12px;
  color: #e2e8f0;
  font-weight: 700;
}

/* Custom Blog Read More Button */
.blog-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-green);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid var(--brand-green);
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 10px;
    background: transparent;
  }

  .blog-read-more-btn i {
    transition: transform 0.3s ease;
  }

  .blog-read-more-btn:hover {
    background: var(--brand-green);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
  }

  .blog-read-more-btn:hover i {
    transform: translateX(4px);
  }

  /* Enhanced Professional Pre-Approve Home Loan Button */
  .btn-apply-loan {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    color: #f8fafc !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    border: 1px solid #334155 !important;
    cursor: pointer !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.4) !important;
    width: 100% !important;
  }

  .btn-apply-loan:hover {
    background: linear-gradient(135deg, #38bdf8, #0369a1) !important;
    border-color: #38bdf8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4) !important;
  }

  .btn-apply-loan i.fa-arrow-right {
    transition: transform 0.3s ease !important;
  }

  .btn-apply-loan:hover i.fa-arrow-right {
    transform: translateX(4px) !important;
  }

  .btn-apply-loan i.fa-bolt {
    color: #fde047 !important;
  }

  /* ==========================================================================
   CUSTOM EMI CALCULATOR
   ========================================================================== */
  .emi-form-wrapper {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
  }

  .emi-label {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    display: block;
  }

  .emi-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .emi-input-group:focus-within {
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
  }

  .emi-addon {
    padding: 10px 16px;
    background: #f1f5f9;
    color: #64748b;
    font-weight: 600;
    border-right: 1px solid #cbd5e1;
  }

  .emi-input {
    border: none !important;
    box-shadow: none !important;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    width: 100%;
  }

  .emi-input:focus {
    outline: none;
  }

  .emi-toggle-btn-group {
    display: flex;
  }

  .emi-toggle-btn {
    border: none;
    background: #f1f5f9;
    padding: 10px 16px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 1px solid #cbd5e1;
  }

  .emi-toggle-btn.active {
    background: #0284c7;
    color: #ffffff;
  }

  .emi-summary-wrapper {
    background: #ffffff;
    padding: 10px;
  }

  .emi-summary-item {
    margin-bottom: 24px;
  }

  .emi-summary-item h4 {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .emi-summary-item h4 small {
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
  }

  .emi-summary-item p {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    margin: 0;
  }

  .emi-summary-item p.highlight-blue {
    color: #0284c7;
    font-size: 32px;
  }

  .emi-summary-item p.highlight-orange {
    color: #f59e0b;
  }

  @media (max-width: 768px) {
    .emi-summary-wrapper {
      margin-top: 30px;
      border-top: 1px solid #e2e8f0;
      padding-top: 30px;
    }
  }

  /* ==========================================================================
   UPGRADED EMI CALCULATOR STYLES
   ========================================================================== */
  .emi-input-group-inline {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 8px;
    padding: 5px 12px;
  }

  .emi-input-group-inline .emi-input {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    width: auto;
    max-width: 120px;
    outline: none;
    box-shadow: none;
  }

  .emi-input-group-inline .emi-addon {
    font-size: 16px;
    color: #64748b;
    font-weight: 600;
    margin-right: 6px;
    margin-left: 6px;
    border: none;
    padding: 0;
    background: transparent;
  }

  .emi-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 5px;
    outline: none;
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .emi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0284c7;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.4);
    border: 3px solid #ffffff;
    transition: transform 0.1s;
  }

  .emi-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0284c7;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.4);
    border: 3px solid #ffffff;
    transition: transform 0.1s;
  }

  .emi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
  }

  .emi-slider-labels {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
  }

  .emi-toggle-btn-group .emi-toggle-btn {
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 4px;
    margin-left: 2px;
  }

  .emi-toggle-btn-group .emi-toggle-btn.active {
    background: #0284c7;
    color: white;
  }
/* ==========================================================================
   Exit Intent Modal Styles
   ========================================================================== */
.exit-intent-flat-box {
  background: linear-gradient(145deg, #ffffff, #f8fafc) !important;
  max-width: 420px;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative shape in background */
.exit-intent-flat-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 174, 54, 0.1) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.exit-icon-wrap {
  width: 75px;
  height: 75px;
  margin: 0 auto 15px;
  border: 2px solid transparent;
  background: linear-gradient(#fcfbf7, #fcfbf7) padding-box,
              linear-gradient(135deg, #d4ae36, #f3e5b6) border-box;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 16px rgba(212, 174, 54, 0.15);
}

.exit-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.exit-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  font-family: inherit;
  line-height: 1.2;
}

.exit-desc {
  font-size: 16px;
  color: #475569;
  margin-bottom: 28px;
}

.exit-desc strong {
  color: #0f172a;
  font-weight: 700;
}

.btn-gold-exit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: linear-gradient(135deg, #d4ae36 0%, #b89326 100%);
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 15px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 4px 12px rgba(212, 174, 54, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-gold-exit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 174, 54, 0.4);
  background: linear-gradient(135deg, #deb947 0%, #c29f31 100%);
}

.btn-green-exit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 25px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-green-exit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #2ae06c 0%, #20b859 100%);
}

.btn-gold-exit i, .btn-green-exit i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-gold-exit:hover i, .btn-green-exit:hover i {
  transform: scale(1.15);
}

.exit-footer-text {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   Mobile — side bar hide (bar styles now live in mobile.php)
   ========================================================================== */
@media (max-width: 768px) {
  .side-floating-bar {
    display: none !important;
  }
}



/* ==========================================================================
   Professional Contact Selector Modal & Number List — Luxury Redesign
   ========================================================================== */
#contactSelectorModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999999 !important;
    background: rgba(3, 7, 18, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
}

#contactSelectorModal.active,
.modal-backdrop.active#contactSelectorModal {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Desktop Centered Dialog Box */
#contactSelectorSheet {
    width: 100%;
    max-width: 490px;
    margin: auto;
    background: linear-gradient(180deg, #0d1e34 0%, #081424 100%);
    border: 1px solid rgba(200, 157, 71, 0.32);
    border-radius: 24px !important;
    padding: 0 0 12px;
    box-shadow: 0 25px 70px -10px rgba(0, 0, 0, 0.85), 0 0 40px rgba(200, 157, 71, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: scale(0.93) translateY(16px);
    opacity: 0;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease !important;
    will-change: transform, opacity;
    overflow: hidden;
    position: relative;
}

#contactSelectorModal.active #contactSelectorSheet,
.modal-backdrop.active #contactSelectorSheet {
    transform: scale(1) translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.contact-sheet-handle {
    display: none;
}

/* Mobile: Bottom Sheet Mode */
@media (max-width: 768px) {
    #contactSelectorModal {
        align-items: flex-end !important;
        justify-content: center !important;
        padding: 0 !important;
    }
    #contactSelectorSheet {
        max-width: 100%;
        border-radius: 24px 24px 0 0 !important;
        border-bottom: none;
        border-left: none;
        border-right: none;
        padding: 0 0 calc(20px + env(safe-area-inset-bottom));
        box-shadow: 0 -15px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(200, 157, 71, 0.08);
        transform: translateY(100%) !important;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    #contactSelectorModal.active #contactSelectorSheet,
    .modal-backdrop.active #contactSelectorSheet {
        transform: translateY(0) !important;
    }
    .contact-sheet-handle {
        display: flex;
        justify-content: center;
        padding: 12px 0 6px;
    }
    .contact-sheet-handle > div {
        width: 44px;
        height: 5px;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.22);
    }
}

/* Sub-bar with Live Count & Speed Assurance */
.contact-selector-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 14px;
    gap: 12px;
}

.contact-selector-meta p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.2px;
    margin: 0;
}

.contact-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 11px;
    border-radius: 20px;
    background: rgba(16, 185, 129, 0.14);
    border: 1px solid rgba(16, 185, 129, 0.35);
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #34d399;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
}

/* Number List Container */
.contact-number-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 11px;
    padding: 0 20px 14px;
    max-height: 440px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(200, 157, 71, 0.3) transparent;
}

.contact-number-list::-webkit-scrollbar {
    width: 5px;
}
.contact-number-list::-webkit-scrollbar-thumb {
    background: rgba(200, 157, 71, 0.3);
    border-radius: 10px;
}

/* Luxury Interactive Advisor Card */
.contact-num-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px;
    padding: 13px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: #f1f5f9 !important;
    text-decoration: none !important;
    transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-num-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(200, 157, 71, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.24s ease;
    pointer-events: none;
}

.contact-num-btn:hover,
.contact-num-btn:focus-visible {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(200, 157, 71, 0.08) 100%);
    border-color: rgba(200, 157, 71, 0.48);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -6px rgba(0, 0, 0, 0.5), 0 0 18px rgba(200, 157, 71, 0.12);
    color: #ffffff !important;
}

.contact-num-btn:hover::before {
    opacity: 1;
}

.contact-num-btn:active {
    transform: scale(0.985) translateY(0);
}

/* Left Icon Box */
.contact-num-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.24s ease;
    position: relative;
    z-index: 1;
}

.contact-num-icon-box.wa-box {
    background: rgba(37, 211, 102, 0.16);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #25d366;
    box-shadow: 0 0 14px rgba(37, 211, 102, 0.15);
}

.contact-num-icon-box.call-box {
    background: rgba(200, 157, 71, 0.18);
    border: 1px solid rgba(200, 157, 71, 0.40);
    color: #e6ca85;
    box-shadow: 0 0 14px rgba(200, 157, 71, 0.15);
}

.contact-num-icon-box.sms-box {
    background: rgba(59, 130, 246, 0.18);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #60a5fa;
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.15);
}

.contact-num-btn:hover .contact-num-icon-box {
    transform: scale(1.08);
}
.contact-num-btn:hover .contact-num-icon-box.wa-box {
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.45);
}
.contact-num-btn:hover .contact-num-icon-box.call-box {
    box-shadow: 0 0 18px rgba(200, 157, 71, 0.45);
}
.contact-num-btn:hover .contact-num-icon-box.sms-box {
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.45);
}

/* Center Details (Phone Number + Desk Designation) */
.contact-num-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.contact-num-primary {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 16.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #ffffff;
    line-height: 1.25;
}

.contact-num-desk {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

/* Pulsing Status Dot (Online / Active Beacon) */
.contact-status-dot {
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.5);
    animation: contactPulse 2s infinite ease-in-out;
}

@keyframes contactPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8);
    }
    70% {
        box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Right Action Pill / CTA Button */
.contact-num-action {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-action-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: 0.4px;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-action-badge i {
    font-size: 11px;
    transition: transform 0.22s ease;
}

/* Contextual Highlight per Mode */
.contact-action-badge.wa-action {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.22) 0%, rgba(37, 211, 102, 0.12) 100%);
    border-color: rgba(37, 211, 102, 0.35);
    color: #4ade80;
}

.contact-action-badge.call-action {
    background: linear-gradient(135deg, rgba(200, 157, 71, 0.24) 0%, rgba(200, 157, 71, 0.12) 100%);
    border-color: rgba(200, 157, 71, 0.40);
    color: #f1dfa5;
}

.contact-action-badge.sms-action {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.24) 0%, rgba(59, 130, 246, 0.12) 100%);
    border-color: rgba(59, 130, 246, 0.35);
    color: #93c5fd;
}

.contact-num-btn:hover .contact-action-badge.wa-action {
    background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
    border-color: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}

.contact-num-btn:hover .contact-action-badge.call-action {
    background: linear-gradient(135deg, #c89d47 0%, #a07830 100%);
    border-color: #c89d47;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(200, 157, 71, 0.45);
}

.contact-num-btn:hover .contact-action-badge.sms-action {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.45);
}

.contact-num-btn:hover .contact-action-badge i {
    transform: translateX(3px);
}

/* Trust Footer */
.contact-trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 20px 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.3px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 6px;
}

.contact-trust-footer i {
    color: #c89d47;
    font-size: 12px;
}


