/* ==========================================================================
   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: #071424;
  --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%;
  max-width: 1240px;
  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: var(--dark-bg);
  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-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.12);
}

.side-tab {
  background: #0f3460;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-top-left-radius: var(--radius-sm);
  border-bottom-left-radius: var(--radius-sm);
  transform: translateX(calc(100% - 42px));
  transition: transform var(--transition-fast), background var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.side-tab i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.side-tab:hover {
  transform: translateX(0);
  background: #0284c7;
}

.side-tab-whatsapp {
  background: #25d366;
}
.side-tab-whatsapp:hover {
  background: #1eb956;
}

.side-tab-call {
  background: #0284c7;
}
.side-tab-call:hover {
  background: #0369a1;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

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

.logo-leaf {
  color: var(--brand-green);
  font-size: 1.8rem;
}

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

.brand-primary {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.brand-city {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-green);
}

.rera-banner-badge {
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(37, 168, 67, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-item {
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  padding: 0.5rem 0;
  position: relative;
}

.nav-item:hover {
  color: var(--brand-green);
}

.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}

.dropdown-menu a i {
  color: var(--brand-green);
  width: 16px;
}

.dropdown-menu a:hover {
  background: var(--brand-green-light);
  color: var(--brand-green);
  padding-left: 1.5rem;
}

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

.header-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  background: #f1f5f9;
}

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ==========================================================================
   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;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 17, 24, 0.65) 0%,
    rgba(11, 17, 24, 0.8) 70%,
    rgba(11, 17, 24, 0.95) 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 Grid
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 2.5rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.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;
}

.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: center;
}

.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: 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;
}

.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;
}

/* ==========================================================================
   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: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  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-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.blog-body h3 {
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

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

.blog-read-more {
  color: var(--brand-green);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   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
   ========================================================================== */
.site-footer {
  background: #070d13;
  color: #94a3b8;
  padding-top: 4.5rem;
}

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

.brand-info-col .brand-primary {
  color: #ffffff;
}

.footer-summary {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 1.2rem 0;
}

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

.footer-social-icons a {
  width: 36px;
  height: 36px;
  background: #131c26;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}

.footer-social-icons a:hover {
  background: var(--brand-green);
  color: #ffffff;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-col ul a:hover {
  color: var(--brand-green);
  padding-left: 4px;
}

.foot-contact {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.foot-contact i {
  color: var(--brand-green);
  margin-top: 0.25rem;
}

.footer-hours-box {
  margin-top: 1rem;
  background: rgba(37, 168, 67, 0.1);
  color: #a7f3d0;
  border: 1px solid rgba(37, 168, 67, 0.25);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-disclaimer-bar {
  background: #04080c;
  padding: 1.4rem 0;
  font-size: 0.75rem;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright-bar {
  background: #020406;
  padding: 1.2rem 0;
  font-size: 0.8rem;
  color: #64748b;
}

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

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--brand-green);
}

/* ==========================================================================
   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: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 1.5rem;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92);
  transition: transform var(--transition-normal);
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #94a3b8;
  cursor: pointer;
}

.modal-logo-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-green);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select {
  width: 100%;
  border: 1px solid #cbd5e1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 2px rgba(37, 168, 67, 0.2);
}

.privacy-note {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 0.85rem;
}

/* 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; }
  .features-grid,
  .property-cards-grid,
  .awards-grid,
  .blog-cards-grid {
    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) {
  .header-center-info,
  .header-phone-pill { display: none; }
  .mobile-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .main-nav.active { display: block; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-title { font-size: 2.2rem; }
  .search-filter-bar { grid-template-columns: 1fr; }
  .features-grid,
  .property-cards-grid,
  .awards-grid,
  .blog-cards-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-inner { flex-direction: column; align-items: stretch; }
  .newsletter-form { min-width: auto; flex-direction: column; }
  .side-floating-bar { display: none; }
}
