/* ==========================================================================
   ULTRA-LUXURY DUBAI REAL ESTATE - APPLE GLASSMORPHISM DESIGN SYSTEM
   ========================================================================== */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette */
  --bg-main: #FAFBFC;
  --bg-card: rgba(255, 255, 255, 0.72);
  --bg-card-hover: rgba(255, 255, 255, 0.88);
  --bg-glass-nav: rgba(255, 255, 255, 0.78);
  --bg-glass-hero: rgba(255, 255, 255, 0.18);
  
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-white: #FFFFFF;
  
  --accent-gold: #C5A059;
  --accent-gold-hover: #B38728;
  --accent-gold-light: rgba(197, 160, 89, 0.12);
  --accent-emerald: #10B981;
  
  --border-glass: rgba(255, 255, 255, 0.85);
  --border-subtle: rgba(226, 232, 240, 0.8);
  --border-gold: rgba(197, 160, 89, 0.3);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 32px -8px rgba(0, 0, 0, 0.06);
  --shadow-glass: 0 20px 40px -15px rgba(15, 23, 42, 0.07), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  --shadow-glass-hover: 0 30px 60px -12px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(255, 255, 255, 1) inset;
  --shadow-glow: 0 10px 30px rgba(197, 160, 89, 0.25);
  
  --blur-glass: blur(24px) saturate(190%);
  --blur-nav: blur(20px) saturate(180%);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

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

button, input, select {
  font-family: inherit;
  border: none;
  outline: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .container {
    max-width: 1180px;
    padding: 0 54px;
  }
}

/* --- GLASS UI UTILITIES --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glass-hover);
  transform: translateY(-6px);
}

.glass-pill {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Gold Gradient Text */
.gold-gradient-text {
  background: linear-gradient(135deg, #DFBA6A 0%, #C5A059 50%, #947230 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- NAVIGATION BAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 12px 0;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  padding: 8px 0;
  background: var(--bg-glass-nav);
  backdrop-filter: var(--blur-nav);
  -webkit-backdrop-filter: var(--blur-nav);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  transition: color var(--transition-fast);
}

.navbar.scrolled .brand-name {
  color: var(--text-primary);
}

.brand-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-white);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--text-secondary);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.nav-phone-btn svg {
  color: inherit;
  transition: transform 0.3s ease;
}

.navbar.scrolled .nav-phone-btn {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.15);
  color: var(--text-primary);
}

.nav-phone-btn:hover,
.navbar.scrolled .nav-phone-btn:hover {
  background: linear-gradient(135deg, #C5A059 0%, #B38728 100%) !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.4);
}

.nav-phone-btn:hover span,
.nav-phone-btn:hover svg,
.navbar.scrolled .nav-phone-btn:hover span,
.navbar.scrolled .nav-phone-btn:hover svg {
  color: #FFFFFF !important;
}

.btn-contact {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(135deg, #C5A059 0%, #B38728 100%);
}

.btn-whatsapp {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

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

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 30px;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg, 
    rgba(15, 23, 42, 0.35) 0%, 
    rgba(0, 0, 0, 0.05) 50%, 
    rgba(15, 23, 42, 0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-glass-card {
  background: rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px) saturate(190%);
  -webkit-backdrop-filter: blur(8px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 2px solid rgba(197, 160, 89, 0.75);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 16px 28px 12px 28px;
  max-width: 780px;
  width: 100%;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge svg {
  color: var(--accent-gold);
}

.hero-title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.12;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-subtitle {
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  max-width: 680px;
  margin: 0 auto 12px auto;
  line-height: 1.45;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.btn-primary {
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #C5A059 0%, #B38728 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.35);
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(197, 160, 89, 0.5);
}

.btn-secondary-glass {
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.32);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-stats-wrapper {
  width: 100%;
  max-width: 1180px;
  margin-top: 32px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  border-radius: var(--radius-md);
}

.stat-card {
  padding: 10px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold-hover);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px;
  }
}

@media (max-width: 640px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px;
  }
  .stat-card {
    padding: 6px 8px;
  }
  .stat-number {
    font-size: 1.4rem;
  }
  .stat-label {
    font-size: 0.68rem;
  }
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent-gold-light);
  border: 1px solid rgba(197, 160, 89, 0.25);
  color: var(--accent-gold-hover);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.section-description {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.projects-section {
  padding: 24px 0 30px 0;
}

.projects-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  max-width: 100%;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  border-color: var(--accent-gold);
}

.filter-btn.active {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.sort-select {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.project-card {
  display: flex;
  flex-direction: column;
  height: 260px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.15);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #0F172A;
  cursor: pointer;
}

.project-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -160%;
  width: 120%;
  height: 200%;
  background: linear-gradient(
    115deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.02) 35%, 
    rgba(255, 255, 255, 0.18) 50%, 
    rgba(255, 255, 255, 0.02) 65%, 
    transparent 100%
  );
  z-index: 5;
  pointer-events: none;
  transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transform: rotate(15deg);
}

.project-card:hover::after {
  left: 160%;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px -15px rgba(197, 160, 89, 0.35);
}

.project-image-box {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

.image-overlay-shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, transparent 40%, rgba(15, 23, 42, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-image {
  transform: scale(1.09);
}

.status-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 3;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--accent-gold);
  font-size: 0.54rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(197, 160, 89, 0.3);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.status-badge svg {
  color: var(--accent-gold);
  width: 5px;
  height: 5px;
}

.developer-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: auto;
  z-index: 3;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);
  font-size: 0.54rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 3px;
}

.developer-badge::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 4px var(--accent-gold);
}

.project-glass-info {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  flex: 1;
  z-index: 4;
  background: rgba(15, 23, 42, 0.90);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border: none;
  border-top: 1.5px solid rgba(197, 160, 89, 0.6);
  border-radius: 0;
  padding: 6px 10px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-glass-info {
  background: rgba(15, 23, 42, 0.96);
  border-color: rgba(197, 160, 89, 0.8);
}

.project-location {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 1px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-starting {
  font-size: 0.65rem;
  color: #94A3B8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 2px;
}

.price-amount {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.btn-card-details {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #C5A059 0%, #B38728 100%);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 3px 10px rgba(197, 160, 89, 0.3);
}

.btn-card-details:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.5);
}

.btn-card-wa {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-card-wa:hover {
  background: #25D366;
  color: #FFFFFF;
  transform: scale(1.1);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  display: none;
}

.no-results-icon {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.developers-section {
  padding: 24px 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(241, 245, 249, 0.6) 100%);
}

.developers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.developer-card {
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.dev-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F1F5F9, #FFFFFF);
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.dev-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.dev-projects-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold-hover);
  margin-bottom: 10px;
}

.dev-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.why-invest-section {
  padding: 24px 0;
}

.invest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.invest-card {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.invest-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1E293B, #0F172A);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.invest-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.invest-card-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.calculator-section {
  padding: 24px 0;
  position: relative;
}

.calculator-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(248, 250, 252, 0.95));
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-glass);
  box-shadow: 0 30px 70px -15px rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.calc-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.calc-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-gold-hover);
}

.range-slider {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: #E2E8F0;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

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

.calc-results-card {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.calc-title-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.currency-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(15, 23, 42, 0.08);
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
}

.calc-curr-btn {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calc-curr-btn.active {
  background: linear-gradient(135deg, #C5A059 0%, #B38728 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.35);
}

.calc-results-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.res-metric {
  display: flex;
  flex-direction: column;
}

.res-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94A3B8;
  margin-bottom: 2px;
}

.res-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
}

.res-val-highlight {
  color: var(--accent-gold);
}

.visa-badge-calc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34D399;
  font-size: 0.82rem;
  font-weight: 700;
}

.testimonials-section {
  padding: 24px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-rating {
  display: flex;
  gap: 3px;
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.quote-text {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 12px;
}

.investor-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.investor-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--text-primary);
  flex-shrink: 0;
}

.investor-info {
  display: flex;
  flex-direction: column;
}

.investor-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.investor-country {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.faq-section {
  padding: 24px 0 30px 0;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--bg-card-hover);
  color: var(--accent-gold-hover);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 24px 28px;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer {
  background: linear-gradient(180deg, #0F172A 0%, #080C16 100%);
  color: #94A3B8;
  padding: 80px 0 30px 0;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand .brand-name {
  color: #FFFFFF;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #94A3B8;
}

.footer-contact-left {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: #94A3B8;
  margin-top: 4px;
}

.footer-contact-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.footer-contact-item a {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: var(--accent-gold);
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: #94A3B8;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-gold);
}

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

.footer-vip-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.footer-form-group {
  width: 100%;
}

.footer-form-input {
  width: 100%;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  font-size: 0.84rem;
  outline: none;
  transition: all 0.3s ease;
}

.footer-form-input::placeholder {
  color: #94A3B8;
}

.footer-form-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-gold);
}

.btn-footer-submit {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #C5A059 0%, #B38728 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-footer-submit:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #996515 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.45);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748B;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

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

.modal-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  border-radius: 18px;
  width: 90%;
  max-width: 420px;
  padding: 24px 26px 22px 26px;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-bounce);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.12);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  padding-right: 20px;
}

.modal-subtitle {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.35;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-muted);
}

.form-input, .form-textarea {
  padding: 9px 13px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  font-size: 0.86rem;
  color: var(--text-primary);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.modal-card .btn-primary {
  padding: 11px 24px;
  font-size: 0.88rem;
  margin-top: 4px;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 4px;
}

.navbar.scrolled .mobile-toggle {
  color: var(--text-primary);
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(197, 160, 89, 0.4);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.mobile-drawer-link {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-drawer-link:hover {
  color: var(--accent-gold);
}

.mobile-drawer-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1280px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .developers-grid, .invest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .floating-search-bar {
    grid-template-columns: 1fr 1fr;
  }
  .btn-search-trigger {
    grid-column: 1 / -1;
    justify-content: center;
  }
  .calculator-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
    letter-spacing: -0.3px !important;
  }
  .section-tag {
    font-size: 0.68rem !important;
    padding: 3px 10px !important;
    margin-bottom: 6px !important;
  }
  .section-description {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
    margin-bottom: 16px !important;
  }
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-phone-btn span {
    font-size: 0.78rem;
  }
  .hero-section {
    padding-top: 90px;
    padding-bottom: 24px;
    min-height: auto;
  }
  .hero-glass-card {
    padding: 16px 14px 12px 14px;
    border-radius: 16px;
  }
  .hero-title {
    font-size: clamp(1.4rem, 5vw, 2.1rem);
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 0.84rem;
    line-height: 1.45;
  }
  .floating-search-wrapper {
    display: none !important;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .project-card {
    height: 230px;
    border-radius: 10px;
  }
  .project-image-box {
    height: 130px;
  }
  .project-glass-info {
    padding: 5px 8px;
  }
  .project-name {
    font-size: 0.78rem;
    line-height: 1.15;
    margin-bottom: 2px;
  }
  .project-location {
    font-size: 0.62rem;
    margin-bottom: 4px;
  }
  .price-starting {
    font-size: 0.50rem;
  }
  .price-amount {
    font-size: 0.85rem;
  }
  .btn-card-details {
    display: none !important;
  }
  .status-badge {
    top: 6px !important;
    left: 6px !important;
    font-size: 0.52rem !important;
    padding: 1px 5px !important;
  }
  .developer-badge {
    top: 24px !important;
    left: 6px !important;
    right: auto !important;
    font-size: 0.52rem !important;
    padding: 1px 5px !important;
  }
  .developers-grid {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 14px !important;
    padding-top: 4px !important;
    padding-bottom: 12px !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
  }

  .developers-grid::-webkit-scrollbar {
    height: 4px;
  }

  .developers-grid::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: var(--radius-pill);
  }

  .developer-card {
    flex: 0 0 82% !important;
    min-width: 250px !important;
    scroll-snap-align: start !important;
    padding: 14px 16px !important;
  }

  .developer-card .dev-avatar {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }

  .developer-card .dev-name {
    font-size: 1.0rem !important;
    margin-bottom: 2px !important;
  }

  .developer-card .dev-projects-count {
    font-size: 0.72rem !important;
    margin-bottom: 6px !important;
  }

  .developer-card .dev-desc {
    font-size: 0.80rem !important;
    line-height: 1.35 !important;
  }

  .invest-grid {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 14px !important;
    padding-top: 4px !important;
    padding-bottom: 12px !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
  }

  .invest-grid::-webkit-scrollbar {
    height: 4px;
  }

  .invest-grid::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: var(--radius-pill);
  }

  .invest-card {
    flex: 0 0 82% !important;
    min-width: 250px !important;
    scroll-snap-align: start !important;
    padding: 12px 14px !important;
  }

  .invest-card .invest-icon-wrapper {
    width: 32px !important;
    height: 32px !important;
    font-size: 1.0rem !important;
    margin-bottom: 6px !important;
  }

  .invest-card .invest-card-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px !important;
  }

  .invest-card .invest-card-text {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
  }

  .testimonials-grid {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 14px !important;
    padding-top: 4px !important;
    padding-bottom: 12px !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
  }

  .testimonials-grid::-webkit-scrollbar {
    height: 4px;
  }

  .testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: var(--radius-pill);
  }

  .testimonial-card {
    flex: 0 0 82% !important;
    min-width: 250px !important;
    scroll-snap-align: start !important;
    padding: 12px 14px !important;
  }

  .testimonial-card .stars-rating {
    font-size: 0.85rem !important;
    margin-bottom: 6px !important;
  }

  .testimonial-card .quote-text {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
  }

  .testimonial-card .investor-profile {
    gap: 8px !important;
  }

  .testimonial-card .investor-avatar {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.78rem !important;
  }

  .testimonial-card .investor-name {
    font-size: 0.85rem !important;
  }

  .testimonial-card .investor-country {
    font-size: 0.70rem !important;
  }
  .stats-banner {
    padding: 8px 0;
    margin-top: 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px 12px;
  }
  .stat-card {
    padding: 10px 6px;
    border-radius: 12px;
  }
  .stat-number {
    font-size: 1.35rem;
    margin-bottom: 2px;
  }
  .stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.2px;
  }
  .calculator-wrapper {
    padding: 20px 16px !important;
    gap: 20px !important;
    border-radius: 16px !important;
    grid-template-columns: 1fr !important;
  }

  .calc-controls {
    gap: 16px !important;
  }

  .calc-header-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  .calc-title {
    font-size: 0.82rem !important;
  }

  .calc-value {
    font-size: 1.05rem !important;
    word-break: break-word !important;
  }

  .currency-toggle-wrapper {
    margin-top: 8px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
  }

  .calc-curr-btn {
    padding: 4px 10px !important;
    font-size: 0.75rem !important;
  }

  .visa-badge-calc {
    font-size: 0.74rem !important;
    padding: 6px 10px !important;
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .calc-results-card {
    padding: 20px 16px !important;
    gap: 16px !important;
    border-radius: 16px !important;
  }

  .res-label {
    font-size: 0.72rem !important;
    letter-spacing: 0.5px !important;
  }

  .res-val {
    font-size: 1.45rem !important;
    word-break: break-word !important;
    line-height: 1.25 !important;
  }
  .calc-results-card .btn-primary {
    padding: 10px 16px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
  }
  .faq-question {
    padding: 12px 14px !important;
    font-size: 0.88rem !important;
    line-height: 1.35 !important;
  }
  .faq-icon {
    font-size: 0.95rem !important;
  }
  .faq-item.active .faq-answer {
    padding: 12px 14px !important;
  }
  .faq-answer p {
    font-size: 0.80rem !important;
    line-height: 1.45 !important;
  }
  .modal-card {
    width: 92% !important;
    max-width: 380px !important;
    padding: 22px 18px 18px 18px !important;
    border-radius: 16px !important;
  }
  .modal-close {
    top: 12px !important;
    right: 12px !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 0.95rem !important;
  }
  .modal-title {
    font-size: 1.18rem !important;
    margin-bottom: 4px !important;
    padding-right: 24px !important;
  }
  .modal-subtitle {
    font-size: 0.78rem !important;
    margin-bottom: 14px !important;
    line-height: 1.35 !important;
  }
  .modal-form {
    gap: 10px !important;
  }
  .form-input {
    padding: 10px 14px !important;
    font-size: 0.85rem !important;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-contact-item a {
    font-size: 1.12rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-secondary-glass {
    width: 100%;
    justify-content: center;
  }
}

.floating-sticky-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px;
  padding-right: 18px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-btn-wa {
  border-color: rgba(37, 211, 102, 0.4);
}

.sticky-btn-wa:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: #25D366;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.35);
}

.sticky-btn-enquiry {
  border-top: 2px solid rgba(197, 160, 89, 0.7);
  border-color: rgba(197, 160, 89, 0.4);
}

.sticky-btn-enquiry:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: var(--accent-gold);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 45px rgba(197, 160, 89, 0.35);
}

.sticky-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.wa-icon-bg {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.gold-icon-bg {
  background: linear-gradient(135deg, #C5A059 0%, #B38728 100%);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.4);
}

.sticky-btn:hover .sticky-icon-box {
  transform: scale(1.1);
}

.sticky-text {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #FFFFFF;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .floating-sticky-actions {
    bottom: 20px;
    right: 16px;
    gap: 10px;
  }

  .sticky-btn {
    padding: 4px;
    padding-right: 14px;
  }

  .sticky-icon-box {
    width: 36px;
    height: 36px;
  }

  .sticky-text {
    font-size: 0.8rem;
  }
}

/* --- THANK YOU TOAST NOTIFICATION --- */
.toast-notification {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  z-index: 99999;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 2px solid rgba(197, 160, 89, 0.8);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 520px;
  width: 90%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #34D399;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-body {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.toast-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.toast-desc {
  font-size: 0.78rem;
  color: #94A3B8;
  line-height: 1.3;
}

.toast-close {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  transition: color 0.2s ease;
}

.toast-close:hover {
  color: #FFFFFF;
}

.matcher-section {
  padding: 24px 0 16px 0;
}

.matcher-card {
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(197, 160, 89, 0.08);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.glow-tag {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(197, 160, 89, 0.05));
  color: var(--accent-gold-hover);
  border: 1px solid var(--border-gold);
}

.wizard-progress-wrapper {
  margin: 16px 0 22px 0;
}

.wizard-progress-bar {
  height: 5px;
  background: rgba(226, 232, 240, 0.8);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.wizard-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), #E6C280);
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-steps-indicators {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.step-indicator {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.step-indicator.active {
  color: var(--text-primary);
  font-weight: 700;
}

.step-indicator .step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E2E8F0;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.step-indicator.active .step-num {
  background: var(--accent-gold);
  color: #FFFFFF;
}

.wizard-question-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
  color: var(--text-primary);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .matcher-card {
    padding: 16px 14px;
  }

  .wizard-progress-wrapper {
    margin: 12px 0 16px 0;
  }

  .step-indicator {
    font-size: 0.72rem;
    gap: 4px;
  }

  .step-indicator .step-num {
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }

  .wizard-question-title {
    font-size: 1.0rem;
    margin-bottom: 10px;
  }

  .options-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .option-btn {
    padding: 10px 12px;
    gap: 10px;
  }

  .option-icon {
    font-size: 1.2rem;
  }

  .option-info h4 {
    font-size: 0.88rem;
  }

  .option-info p {
    font-size: 0.73rem;
    line-height: 1.2;
  }

  .btn-lg-gold {
    width: 100%;
    font-size: 0.82rem;
    padding: 12px 16px;
    justify-content: center;
  }

  .matched-card {
    padding: 8px;
    gap: 8px;
  }

  .matched-img {
    width: 75px;
    height: 70px;
  }
}

.option-btn {
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.option-btn:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -5px rgba(197, 160, 89, 0.15);
  background: #FFFFFF;
}

.option-btn.selected {
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(197, 160, 89, 0.08));
  box-shadow: 0 0 0 2px var(--accent-gold), 0 12px 30px rgba(197, 160, 89, 0.2);
}

.option-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.option-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.option-info p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.wizard-nav-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}

.btn-wizard-back {
  background: transparent;
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-wizard-back:hover {
  background: #F1F5F9;
  color: var(--text-primary);
}

.result-header {
  text-align: center;
  margin-bottom: 18px;
}

.match-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 8px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.result-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.result-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.matched-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .matched-projects-grid {
    grid-template-columns: 1fr;
  }
}

.matched-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  gap: 12px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

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

.matched-img {
  width: 90px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.matched-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.matched-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.matched-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.matched-price {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.matched-roi {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-emerald);
}

.wizard-result-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btn-lg-gold {
  padding: 12px 28px;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
}

.btn-link-reset {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
}

.hotspots-section {
  padding: 24px 0;
}

.hotspot-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hotspot-tab-btn {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.hotspot-tab-btn:hover {
  background: #FFFFFF;
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

.hotspot-tab-btn.active {
  background: var(--text-primary);
  color: #FFFFFF;
  border-color: var(--text-primary);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

.hotspot-display-card {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

.hotspot-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 868px) {
  .hotspot-grid-layout {
    grid-template-columns: 1fr;
  }
}

.hotspot-info-side h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.hotspot-info-side p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.hotspot-stats-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.h-pill {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-gold);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
}

.h-pill-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.h-pill-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hotspot-preview-img {
  width: 100%;
  height: 210px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .hotspot-tabs-nav {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    margin-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .hotspot-tab-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
    font-size: 0.76rem;
    padding: 6px 12px;
    white-space: nowrap;
  }

  .hotspot-display-card {
    padding: 16px 14px;
  }

  .hotspot-grid-layout {
    gap: 16px;
  }

  .hotspot-info-side h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  .hotspot-info-side p {
    font-size: 0.82rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .hotspot-stats-pills {
    gap: 6px;
    margin-bottom: 14px;
  }

  .h-pill {
    padding: 4px 8px;
    flex: 1;
    min-width: 80px;
    text-align: center;
  }

  .h-pill-val {
    font-size: 0.82rem;
  }

  .h-pill-lbl {
    font-size: 0.65rem;
  }

  .hotspot-preview-img {
    height: 160px;
  }

  .hotspot-info-side .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    padding: 10px 16px;
  }
}

.global-tax-section {
  padding: 24px 0;
}

.tax-comparison-wrapper {
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

.gold-border-tag {
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  background: var(--accent-gold-light);
}

.global-currency-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.curr-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.curr-btns-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.global-curr-btn {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.global-curr-btn.active {
  background: var(--accent-gold);
  color: #FFFFFF;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

@media (max-width: 640px) {
  .global-currency-toggle {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
  }

  .curr-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
  }

  .curr-btns-row {
    width: 100%;
    justify-content: center;
    gap: 4px;
  }

  .global-curr-btn {
    padding: 5px 10px;
    font-size: 0.75rem;
    flex: 1;
    text-align: center;
    max-width: 85px;
  }
}

.city-comparison-grid {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding: 6px 4px 16px 4px;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .city-comparison-grid {
    justify-content: flex-start;
  }
}

.city-comparison-grid::-webkit-scrollbar {
  height: 5px;
}

.city-comparison-grid::-webkit-scrollbar-track {
  background: rgba(226, 232, 240, 0.6);
  border-radius: 99px;
}

.city-comparison-grid::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 99px;
}

.city-card {
  flex: 0 0 170px;
  min-width: 170px;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease;
}

.city-card.dubai-highlight {
  border: 2px solid var(--accent-gold);
  background: linear-gradient(180deg, #FFFFFF, rgba(197, 160, 89, 0.06));
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.15);
  transform: scale(1.02);
}

.city-flag {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.city-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.city-metric {
  margin-bottom: 4px;
}

.city-metric-val {
  font-size: 0.95rem;
  font-weight: 800;
}

.city-metric-val.green {
  color: var(--accent-emerald);
}

.city-metric-val.red {
  color: #EF4444;
}

.city-metric-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 700;
}

.tax-benefit-banner {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.tax-benefit-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 4px;
}

.tax-benefit-text p {
  font-size: 0.88rem;
  color: #94A3B8;
}

.tax-benefit-text strong {
  color: var(--accent-gold);
}

@media (max-width: 640px) {
  .tax-benefit-banner {
    padding: 16px;
    gap: 12px;
    text-align: center;
    justify-content: center;
  }

  .tax-benefit-text h4 {
    font-size: 0.95rem;
  }

  .tax-benefit-text p {
    font-size: 0.8rem;
  }

  .tax-benefit-banner .btn-primary {
    font-size: 0.78rem !important;
    padding: 8px 18px !important;
    width: auto !important;
    margin: 0 auto;
  }
}

.vip-slide-card {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 340px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 160, 89, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 20px;
  color: #FFFFFF;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vip-slide-card.show {
  transform: translateY(0);
  opacity: 1;
}

.vip-close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 0.9rem;
  cursor: pointer;
}

.vip-card-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.vip-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.vip-card-desc {
  font-size: 0.8rem;
  color: #CBD5E1;
  margin-bottom: 16px;
  line-height: 1.4;
}

.vip-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn-text-muted {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 0.78rem;
  cursor: pointer;
}

.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 360px;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

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

.sp-avatar {
  font-size: 1.4rem;
}

.sp-content {
  display: flex;
  flex-direction: column;
}

.sp-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.sp-desc {
  font-size: 0.73rem;
  color: var(--text-secondary);
}

.sp-time {
  font-size: 0.65rem;
  color: var(--accent-emerald);
  font-weight: 700;
}

