/* ==========================================================================
   WISENIA REALTORS - LUXURY NAVY BLUE DESIGN SYSTEM (NAVY & GOLD)
   Colors: Classic Navy Blue (#0A1E3F), Midnight Navy (#050E1F), Radiant Gold (#FFB800)
   ========================================================================== */

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

:root {
  /* Rich Deep Navy Blue Brand Palette */
  --primary-blue: #0A1E3F;
  --primary-blue-hover: #061329;
  --primary-dark: #050E1F;
  --primary-light: #1E3A8A;
  --primary-cyan: #2563EB;
  --primary-subtle: #EBF2FA;
  
  --secondary-gold: #FFB800;
  --secondary-gold-hover: #E0A200;
  --secondary-amber: #FF8C00;
  --secondary-gold-subtle: #FFFBEB;
  
  /* Luxury Navy & Gold Gradients */
  --blue-gradient: linear-gradient(135deg, #0A1E3F 0%, #1E3A8A 100%);
  --gold-gradient: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
  --hero-gradient: linear-gradient(135deg, rgba(5, 14, 31, 0.92) 0%, rgba(10, 30, 63, 0.85) 60%, rgba(255, 184, 0, 0.35) 100%);
  --text-gradient: linear-gradient(90deg, #93C5FD 0%, #FFB800 100%);
  
  --dark-navy: #050E1F;
  --dark-surface: #0B192C;
  --dark-border: #1E293B;
  
  --body-bg: #F4F7FB;
  --surface-card: #FFFFFF;
  --text-dark: #07101F;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --border-light: #E2E8F0;
  --border-vibrant: #0A1E3F;
  
  /* Glowing Shadows */
  --shadow-sm: 0 4px 10px rgba(10, 30, 63, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 30, 63, 0.1);
  --shadow-lg: 0 16px 36px rgba(10, 30, 63, 0.16);
  --shadow-xl: 0 24px 50px rgba(10, 30, 63, 0.22);
  --glow-gold: 0 0 25px rgba(255, 184, 0, 0.45);
  --glow-blue: 0 0 25px rgba(10, 30, 63, 0.4);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--body-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative !important;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
}

.serif-heading {
  font-family: 'Playfair Display', Georgia, serif;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 960px;
}

/* Vibrant Top Bar */
.top-bar {
  background: linear-gradient(90deg, #050E1F 0%, #0A1E3F 100%);
  color: #FFFFFF;
  font-size: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #FFFFFF;
  font-weight: 600;
}

.top-bar-info a:hover {
  color: var(--secondary-gold);
  text-shadow: 0 0 10px rgba(255, 184, 0, 0.6);
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-social a {
  color: #E0E7FF;
  font-size: 1rem;
}

.top-bar-social a:hover {
  color: var(--secondary-gold);
  transform: translateY(-2px);
}

/* Header & Glass Navbar */
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--primary-subtle);
  box-shadow: 0 4px 20px rgba(0, 82, 255, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.logo-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--blue-gradient);
  border-radius: 3px;
  transition: var(--transition);
}

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

.nav-link.active {
  color: var(--primary-blue);
  font-weight: 800;
}

/* Dropdown Navigation Menu */
.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.dropdown-icon {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 82, 255, 0.15);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  list-style: none;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.dropdown:hover .dropdown-icon,
.nav-item.dropdown.open .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--primary-subtle);
  color: var(--primary-blue);
}

/* Mobile Drawer Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 14, 30, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary-blue);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* VIBRANT BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-gradient);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 82, 255, 0.55);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #080E1E;
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.45);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(255, 184, 0, 0.6);
}

.btn-outline {
  background: #FFFFFF;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--primary-blue);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

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

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

/* Hero Section Base */
.hero-slider-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  background: var(--dark-navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Inner Page Hero (Context Specific) */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 5.5rem 0 5rem;
  min-height: 46vh;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 14, 30, 0.88) 0%, rgba(0, 82, 255, 0.75) 65%, rgba(255, 184, 0, 0.4) 100%);
}

.page-hero .hero-content {
  position: relative;
  z-index: 10;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  animation: kenBurnsZoom 7s infinite alternate cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes kenBurnsZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slider-content {
  position: relative;
  z-index: 10;
  color: #FFFFFF;
  padding: 5.5rem 0 7.5rem;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 184, 0, 0.2);
  border: 1px solid var(--secondary-gold);
  color: #FFB800;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.3);
}

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

.hero-title span {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #F1F5F9;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 82, 255, 0.4);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--gold-gradient);
  border-color: #FFB800;
  color: #080E1E;
  transform: translateY(-50%) scale(1.15);
  box-shadow: var(--glow-gold);
}

.slider-arrow.prev { left: 1.5rem; }
    .slider-arrow.next { right: 1.5rem; }

.slider-dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 36px;
  border-radius: 12px;
  background: var(--gold-gradient);
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.6);
}

/* FLOATING VIBRANT SEARCH BOX */
.hero-search-wrapper {
  margin-top: -4rem;
  position: relative;
  z-index: 30;
}

.search-box {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 82, 255, 0.22), 0 0 30px rgba(255, 184, 0, 0.15);
  padding: 2rem;
  border: 2px solid rgba(0, 82, 255, 0.15);
}

.search-tabs {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0.75rem;
  overflow-x: auto;
  white-space: nowrap;
}

.search-tab {
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  font-weight: 800;
  font-size: 0.925rem;
  color: var(--text-muted);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.search-tab.active {
  background: var(--blue-gradient);
  color: #FFFFFF;
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)) 170px;
  gap: 1.15rem;
  align-items: end;
}

.search-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.search-label {
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.search-select, .search-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #F8FAFC;
  transition: var(--transition);
  font-weight: 600;
}

.search-select:focus, .search-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.18);
}

/* Vibrant Stats Ribbon */
.stats-ribbon {
  background: linear-gradient(135deg, #080E1E 0%, #0037B3 100%);
  color: #FFFFFF;
  padding: 4rem 0;
  margin-top: 4.5rem;
  box-shadow: 0 10px 30px rgba(0, 82, 255, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: #FFB800;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
}

.stat-item p {
  color: #E0E7FF;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-bg-light {
  background: #FFFFFF;
}

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

.section-subtitle {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Filter Controls */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: #FFFFFF;
  border: 2px solid var(--border-light);
  color: var(--text-main);
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.925rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--blue-gradient);
  color: #FFFFFF;
  border-color: var(--primary-blue);
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.35);
}

/* Property Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 2.25rem;
}

.property-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue);
}

.property-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.property-card:hover .property-thumb img {
  transform: scale(1.08);
}

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--dark-navy);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.property-badge.featured {
  background: var(--gold-gradient);
  color: #080E1E;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.4);
}

.property-price-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 82, 255, 0.95);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.property-content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-location {
  font-size: 0.875rem;
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.property-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.property-specs {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
}

.property-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--surface-card);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.feature-icon {
  width: 62px;
  height: 62px;
  background: var(--blue-gradient);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(0, 82, 255, 0.3);
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Calculator Section */
.calc-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--primary-subtle);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.calc-field label {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.calc-range {
  width: 100%;
  accent-color: var(--primary-blue);
  height: 8px;
  cursor: pointer;
}

.calc-output {
  background: linear-gradient(135deg, #080E1E 0%, #0037B3 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--glow-blue);
}

.calc-amount {
  font-size: 2.85rem;
  color: #FFB800;
  font-weight: 800;
  margin: 0.5rem 0 1.25rem;
  text-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--surface-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-size: 0.975rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue-gradient);
  color: #FFFFFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 1rem;
}

.author-info p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* Partner Ribbon */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.partner-logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-blue);
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.partner-logo:hover {
  border-color: var(--secondary-gold);
  transform: translateY(-2px);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #0A1E3F 0%, #050E1F 100%);
  color: #FFFFFF;
  padding: 4.5rem 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 3.5rem auto;
  box-shadow: var(--shadow-xl);
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #E0E7FF;
  max-width: 640px;
  margin: 0 auto 2.25rem;
  font-size: 1.1rem;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Footer */
.footer {
  background: var(--dark-navy);
  color: #94A3B8;
  padding: 4.5rem 0 2rem;
  border-top: 2px solid var(--primary-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #CBD5E1;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--secondary-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.925rem;
}

.footer-links a:hover {
  color: var(--secondary-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

/* Modal Window */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 14, 30, 0.8);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--surface-card);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: var(--transition);
  position: relative;
  border: 2px solid var(--primary-blue);
}

.modal-backdrop.active .modal-container {
  transform: translateY(0);
}

.modal-header {
  background: var(--blue-gradient);
  color: #FFFFFF;
  padding: 1.35rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: #FFFFFF;
  font-size: 1.3rem;
}

.modal-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  cursor: pointer;
}

.modal-body {
  padding: 1.85rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Dual Floating Action Buttons (Call & WhatsApp) - Right Bottom Sticky */
.floating-contact-actions {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 990;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.floating-btn.whatsapp {
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.floating-btn.call {
  background: var(--primary-blue);
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.55);
}

.floating-btn:hover {
  transform: scale(1.12);
}

.floating-btn .tooltip-text {
  position: absolute;
  right: 68px;
  background: var(--dark-navy);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(10px);
}

.floating-btn:hover .tooltip-text {
  opacity: 1;
  transform: translateX(0);
}

/* Custom About Us Banner (User Screenshot Exact Match) */
.about-hero-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: #1f2421;
  color: #FFFFFF;
  overflow: hidden;
}

.about-hero-left {
  background: #1f2421;
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-hero-title {
  font-family: 'Playfair Display', serif, Georgia;
  font-size: 3.8rem;
  color: #d4a359;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.about-hero-subtitle {
  font-family: 'Playfair Display', serif, Georgia;
  font-size: 2.2rem;
  color: #d4a359;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.about-hero-btn {
  display: inline-block;
  background: #b58c49;
  color: #1f2421;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.85rem 2.8rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-hero-btn:hover {
  background: #d4a359;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 163, 89, 0.4);
}

.about-hero-right {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.about-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Founder Profile Card */
.founder-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3.5rem;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  align-items: center;
}

.founder-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}

.founder-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: var(--radius-sm);
}

.founder-tag {
  background: var(--secondary-gold-subtle);
  color: var(--secondary-amber);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.founder-name {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.founder-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.founder-quote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.founder-sign {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-gold);
}

/* Centered Touch Form */
.centered-touch-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(0, 82, 255, 0.12);
}

/* Builders Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.partner-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark-navy);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* Services Tabs Switcher (Unnati Style) */
.services-tabs-container {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.services-tab-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 1rem;
  flex-wrap: wrap;
}

.services-tab-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-muted);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.services-tab-btn.active {
  background: var(--blue-gradient);
  color: #FFFFFF;
  box-shadow: var(--glow-blue);
}

.services-tab-content {
  display: none;
}

.services-tab-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  z-index: 3500;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 360px;
}

.toast {
  background: var(--dark-navy);
  color: #FFFFFF;
  padding: 1rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  font-size: 0.9rem;
  border-left: 4px solid var(--secondary-gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Modal Window & Responsive Overlay */
.modal-backdrop {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(8, 14, 30, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.modal-container {
  background: var(--surface-card) !important;
  width: 100% !important;
  max-width: 520px !important;
  max-height: 90vh !important;
  max-height: 90dvh !important;
  margin: auto !important;
  overflow-y: auto !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-xl) !important;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative !important;
  border: 2px solid var(--primary-blue) !important;
  z-index: 10000 !important;
}

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

.modal-header {
  background: var(--blue-gradient);
  color: #FFFFFF;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-header h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
}

.modal-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Dual Floating Action Buttons (Call & WhatsApp) - Right Bottom Sticky */
.floating-contact-actions {
  position: fixed !important;
  bottom: 1.5rem !important;
  right: 1.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
  z-index: 9990 !important;
  pointer-events: auto !important;
}

.floating-btn {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFFFFF !important;
  font-size: 1.5rem !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  position: relative !important;
  text-decoration: none !important;
}

.floating-btn.whatsapp {
  background: #25D366 !important;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6) !important;
}

.floating-btn.call {
  background: var(--primary-blue) !important;
  box-shadow: 0 6px 22px rgba(0, 82, 255, 0.6) !important;
}

.floating-btn:hover {
  transform: scale(1.12) !important;
}

.floating-btn .tooltip-text {
  position: absolute;
  right: 68px;
  background: var(--dark-navy);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(10px);
}

.floating-btn:hover .tooltip-text {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.85rem; }
  .calc-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .floating-btn .tooltip-text {
    display: none !important;
  }

  .top-bar {
    display: none !important;
  }

  .header-main {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 3000 !important;
  }

  body {
    padding-top: 72px !important;
  }

  .search-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .nav-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(8, 14, 30, 0.75) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    z-index: 2900 !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .nav-overlay.active {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-subtle);
    border-radius: var(--radius-sm);
    color: var(--primary-blue);
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    z-index: 3200 !important;
    border: none;
  }

  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 300px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    overflow-y: auto !important;
    background: #FFFFFF !important;
    flex-direction: column !important;
    padding: 5rem 1.75rem 2rem !important;
    align-items: stretch !important;
    gap: 1rem !important;
    box-shadow: -8px 0 30px rgba(8, 14, 30, 0.3) !important;
    z-index: 3100 !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    list-style: none !important;
    pointer-events: auto !important;
  }

  .nav-menu.active {
    right: 0 !important;
  }

  .nav-menu .nav-link,
  .nav-menu .dropdown-item,
  .nav-menu .btn {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 3200 !important;
    display: flex !important;
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    cursor: pointer !important;
  }

  .nav-item.dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(0, 82, 255, 0.05) !important;
    border-left: 3px solid var(--primary-blue) !important;
    margin-top: 0.5rem !important;
    padding: 0.5rem 0 !important;
    display: none !important;
    width: 100% !important;
  }

  .nav-item.dropdown.open .dropdown-menu {
    display: block !important;
  }

  .about-hero-banner {
    grid-template-columns: 1fr;
  }
  .about-hero-left {
    padding: 3rem 1.5rem;
  }
  .about-hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
  }
  .about-hero-subtitle {
    font-size: 1.65rem;
    margin-bottom: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero-slider-section { min-height: 520px; }
  .hero-slider-content { padding: 3.5rem 0 5rem; }
  .hero-title { font-size: 2.15rem; }
  .hero-subtitle { font-size: 1rem; }
  
  .slider-arrow { width: 42px; height: 42px; font-size: 1.1rem; }
  .slider-arrow.prev { left: 0.5rem; }
  .slider-arrow.next { right: 0.5rem; }
  .slider-dots { bottom: 4.5rem; }
  
  .hero-search-wrapper { margin-top: -2.5rem; }
  .search-box { padding: 1.25rem; }
  
  .section { padding: 3.5rem 0; }
  .section-title { font-size: 1.85rem; }
  .properties-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-item h3 { font-size: 2.25rem; }
  .cta-banner {
    padding: 3rem 1.5rem;
    margin: 2.5rem auto;
  }
  .cta-banner h2 { font-size: 1.75rem; }
  .cta-banner p { font-size: 1rem; margin-bottom: 1.75rem; }
  .cta-banner-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }
  .cta-banner-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .founder-card {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.25rem;
    gap: 1.75rem;
  }
  .founder-img-wrapper {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .founder-img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    display: block;
  }
  .services-tab-content.active {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .modal-backdrop {
    padding: 0.5rem !important;
  }
  .modal-container {
    width: 95% !important;
    max-width: 100% !important;
    max-height: 88vh !important;
    max-height: 88dvh !important;
    border-radius: 16px !important;
    margin: auto !important;
  }
  .modal-header {
    padding: 1rem 1.25rem !important;
  }
  .modal-body {
    padding: 1.25rem 1rem !important;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.85rem; }
  .btn-lg { width: 100%; padding: 0.9rem 1.25rem; }
  .calc-card { padding: 1.35rem; }
  .calc-amount { font-size: 2.25rem; }
  .floating-contact-actions { bottom: 1rem !important; right: 0.85rem !important; }
  .floating-btn { width: 48px !important; height: 48px !important; font-size: 1.3rem !important; }
  .centered-touch-form { padding: 1.5rem 1.25rem; }
}
