/* ==========================================================================
   1. RESET & VARIABLE CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Brand Theme Colors */
  --primary: #0057ff;        /* Royal Blue */
  --primary-dark: #0037a6;   /* Deep Blue */
  --primary-light: #eaf2ff;  /* Light Sky Blue Base */
  --dark-slate: #0a0f1d;     /* Deep Midnight Navy for footer/rich contrasts */
  --bg-light: #f8faff;       /* Pure clean background */
  --white: #ffffff;
  --text-dark: #0f172a;      /* High contrast slate for readability */
  --text-muted: #64748b;     /* Muted metadata slate */
  --accent: #00d2ff;         /* Glowing elements and active transitions */
  
  /* Transparent/Glass Base Styles */
  --border-light: rgba(0, 87, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 10px 40px -10px rgba(0, 87, 255, 0.06);
  --shadow-premium: 0 25px 50px -12px rgba(0, 87, 255, 0.12);
  --shadow-soft: 0 10px 30px rgba(0, 87, 255, 0.03);
  
  /* Corner Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Standard Transition Rules */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Typography Scale Mapping */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: auto; /* Handled gracefully by Lenis */
}

html, body {
  overflow-x: hidden;
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom Scrollbar for non-Lenis fallbacks */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 87, 255, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Structural Layout Class */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Lenis Performance Styling overrides */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* ==========================================================================
   2. STICKY GLASSMORPHISM HEADER
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  padding: 20px 0;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--glass-shadow);
  padding: 14px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  gap: 32px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-dark);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-width: 40px;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-accent {
  color: var(--primary);
}

/* Desktop Menu Links */
.desktop-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}

.nav-link {
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-dark);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header CTA Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.btn-login {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
}

.btn-login:hover {
  color: var(--primary);
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px -6px rgba(0, 87, 255, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(0, 87, 255, 0.4);
}

/* Hamburger Menu Icon */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.hamburger-btn .bar {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 4px;
  transition: var(--transition);
}

/* ==========================================================================
   3. MOBILE OVERLAY & DRAWERS
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 15, 29, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  transition: var(--transition);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.close-drawer-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-link:hover, .mobile-link.active {
  color: var(--primary);
}

.drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-login-mob {
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  font-weight: 600;
}

.btn-cta-mob {
  text-align: center;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.drawer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.drawer-socials .social-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* ==========================================================================
   4. HERO SECTION WITH DECORATIVE GRADIENTS
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 100px;
  background-color: var(--bg-light);
  overflow: hidden;
}

/* Floating Radial Glow Backgrounds */
.blob-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  opacity: 0.35;
  animation: blob-float 12s infinite ease-in-out;
}

.blob-1 {
  width: 350px;
  height: 350px;
  background: var(--accent);
  top: 10%;
  left: -5%;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--primary-light);
  bottom: 10%;
  right: -5%;
  animation-delay: 2s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: #a5b4fc;
  top: 40%;
  left: 45%;
  animation-delay: 4s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.15); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 87, 255, 0.08);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero-tagline i {
  color: var(--primary);
}

.hero-title {
  font-size: 56px;
  line-height: 1.15;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-dark), #1e293b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-family: var(--font-secondary);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

/* Button UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 10px 25px -5px rgba(0, 87, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -4px rgba(0, 87, 255, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--primary-light);
  border-color: rgba(0, 87, 255, 0.2);
  transform: translateY(-2px);
}

/* Float Glassmorphic Search Form */
.hero-search-wrapper {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  padding: 16px;
  width: 100%;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 12px;
  border-right: 1px solid var(--border-light);
}

.search-field:nth-child(3) {
  border-right: none;
}

.search-field label {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-field input, .search-field select {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  width: 100%;
}

.search-field input::placeholder {
  color: var(--text-muted);
}

.search-submit-btn {
  background: var(--primary);
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.search-submit-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}

.search-submit-btn .mobile-icon {
  display: none;
}

/* Hero Visual Composition Stack */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-premium);
}

/* Floating Elements Styles */
.float-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-slow 6s infinite ease-in-out;
}

.float-card-1 {
  top: 15%;
  left: -15%;
  width: 220px;
}

.float-card-1 img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.float-card-1 h4 {
  font-size: 13px;
  font-weight: 700;
}

.float-card-1 p {
  font-size: 11px;
  color: var(--text-muted);
}

.float-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

.float-card-2 {
  bottom: 12%;
  left: -10%;
  width: 190px;
  animation-delay: 2s;
}

.icon-bubble {
  width: 40px;
  height: 40px;
  background: rgba(0, 87, 255, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.float-card-2 h4 {
  font-size: 13px;
}

.float-card-2 p {
  font-size: 11px;
  color: var(--text-muted);
}

.float-card-3 {
  bottom: 30%;
  right: -8%;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 14px;
  animation-delay: 4s;
}

.float-rating {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.float-rating i {
  color: #fbbf24;
}

.badge-shortlet {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 50px;
  margin-top: 4px;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ==========================================================================
   5. PARTNERS MARQUEE
   ========================================================================== */
.partners-section {
  padding: 60px 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.partners-title {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.partners-marquee-container {
  overflow: hidden;
  width: 100%;
}

.partners-marquee {
  display: flex;
  width: max-content;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: marquee-scroll 24s linear infinite;
  padding-right: 80px;
}

.partner-item {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.partner-item i {
  font-size: 24px;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   6. SECTION HEADERS & GENERAL CARD ARCHITECTURE
   ========================================================================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-center-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px auto;
}

.sub-title-badge {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}

/* Swiper navigation */
.swiper-controls {
  display: flex;
  gap: 12px;
}

.swiper-button-prev-custom, .swiper-button-next-custom {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.swiper-button-prev-custom:hover, .swiper-button-next-custom:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}


/* Property Cards */
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.property-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.property-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.property-card:hover .property-media img {
  transform: scale(1.08);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  z-index: 5;
}

.badge.sale { background: var(--primary); }
.badge.rent { background: #3b82f6; }
.badge.shortlet { background: #10b981; }

.fav-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 18px;
  z-index: 5;
  transition: var(--transition);
}

.fav-btn:hover {
  color: #ef4444;
  transform: scale(1.1);
}

.property-body {
  padding: 24px;
}

.property-price {
  font-size: 24px;
  font-family: var(--font-heading);
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font-secondary);
}

.property-title {
  font-size: 18px;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.property-location {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.property-specs {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  margin-bottom: 18px;
}

.property-specs span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agent-mini {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-mini img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.agent-mini span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.view-details-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1.5px solid var(--primary);
  padding-bottom: 2px;
}

.view-details-btn:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* ==========================================================================
   FEATURED PROFESSIONALS STYLING
   ========================================================================== */
.professionals-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}

/* Category Filter Tabs Styling */
.professionals-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.filter-tab:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(0, 87, 255, 0.2);
}

.filter-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 87, 255, 0.2);
}

/* Responsive Grid Configuration */
.professionals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  transition: opacity 0.3s ease;
}

/* Professional Cards Setup */
.professional-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.professional-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

/* Filter Animation Class */
.professional-card.hide {
  display: none !important;
}

.professional-card.fade-in {
  animation: proCardFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes proCardFade {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Card Header badging */
.pro-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.pro-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lawyer-tag {
  background: rgba(0, 87, 255, 0.08);
  color: var(--primary);
}

.agent-tag {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.surveyor-tag {
  background: rgba(139, 92, 246, 0.08);
  color: #8b5cf6;
}

.pro-favorite {
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
}

.pro-favorite:hover, .pro-favorite.active {
  color: var(--primary);
  transform: scale(1.15);
}

/* Profile Avatar / Rating Grid */
.pro-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.pro-avatar-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
}

.pro-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.verified-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d2ff;
  font-size: 16px;
  box-shadow: var(--shadow-soft);
}

.pro-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pro-rating i {
  color: #fbbf24;
  font-size: 16px;
}

.pro-rating span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.pro-rating .review-count {
  font-weight: 400;
  color: var(--text-muted);
}

/* Professional details section */
.pro-details {
  margin-bottom: 24px;
}

.pro-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pro-firm {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.pro-location {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pro-location i {
  color: var(--primary);
}

/* Micro stats grid within card */
.pro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 0;
  border-top: 1px dashed var(--border-light);
  border-bottom: 1px dashed var(--border-light);
  margin-bottom: 24px;
  text-align: center;
}

.pro-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Actions styling */
.pro-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.btn-pro-contact {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.btn-pro-contact:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-pro-hire {
  flex-grow: 1;
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-pro-hire:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 87, 255, 0.15);
}

/* ==========================================================================
   7. WHY CHOOSE SECTION (GLASS CARDS)
   ========================================================================== */
.why-choose-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 87, 255, 0.25);
  box-shadow: var(--shadow-premium);
}

.card-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.why-card:hover .card-icon-box {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.merchant-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.merchant-showcase-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.merchant-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(0, 87, 255, 0.18);
}

.merchant-media {
  height: 180px;
}

.merchant-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.merchant-body {
  padding: 18px;
}

.merchant-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 87, 255, 0.08);
  color: var(--primary);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.merchant-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.merchant-body p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

/* ==========================================================================
   8. STATS SECTION (COUNTER GLASS)
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 80px 0;
  position: relative;
  z-index: 5;
  color: var(--white);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   9. SERVICES / HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works-section {
  padding: 100px 0;
  background-color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  text-align: center;
}

.step-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  border-color: rgba(0, 87, 255, 0.2);
  box-shadow: var(--shadow-premium);
}

.step-num-badge {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: rgba(0, 87, 255, 0.12);
}

.step-icon {
  width: 72px;
  height: 72px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 28px auto;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.step-card:hover .step-icon {
  background: var(--primary);
  color: var(--white);
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   10. TESTIMONIALS SLIDER SECTION
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.testimonials-swiper {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.rating-stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 24px;
}

.review-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 32px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.reviewer-meta img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-meta div {
  text-align: left;
}

.reviewer-meta h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.reviewer-meta span {
  font-size: 13px;
  color: var(--text-muted);
}

.swiper-pagination-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.swiper-pagination-custom .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.3;
  transition: var(--transition);
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 28px;
  border-radius: 50px;
  opacity: 1;
}

/* ==========================================================================
   11. DOWNLOAD APP / CALL-TO-ACTION (CTA)
   ========================================================================== */
.cta-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.cta-inner {
  background: linear-gradient(135deg, var(--dark-slate), #0b152d);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  padding: 80px 60px;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  opacity: 0.2;
}

.cta-glow.glow-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: -10%;
  right: -5%;
}

.cta-glow.glow-2 {
  width: 350px;
  height: 350px;
  background: var(--accent);
  bottom: -15%;
  left: 10%;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.cta-content h2 {
  font-size: 40px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(0, 87, 255, 0.4);
}

.btn-secondary-white {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary-white:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.store-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  background: var(--white);
  color: var(--dark-slate);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.store-btn i {
  font-size: 24px;
}

.store-btn span {
  display: flex;
  flex-direction: column;
}

.store-btn small {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.store-btn strong {
  font-size: 14px;
}

.store-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* Phone Mockup Styling - Removed (HTML deleted) */
.cta-illustration {
  display: none;
}

.phone-frame,
.phone-screen,
.app-header,
.app-body,
.mini-app-card,
.mini-app-stats {
  display: none;
}

/* ==========================================================================
   12. NEWSLETTER SUBSCRIPTION
   ========================================================================== */
.newsletter-section {
  padding: 60px 0 100px 0;
  background-color: var(--bg-light);
}

.newsletter-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.news-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.news-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

.news-form-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form {
  display: flex;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 6px;
  background: var(--bg-light);
}

.newsletter-form input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 12px 18px;
  font-family: var(--font-secondary);
  font-size: 14px;
  outline: none;
}

.subscribe-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.subscribe-btn:hover {
  background: var(--primary-dark);
}

.spinner {
  animation: spin 1s infinite linear;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.newsletter-feedback {
  font-size: 13px;
  font-weight: 600;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   13. BACK-TO-TOP BUTTON
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0, 87, 255, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
}

/* ==========================================================================
   14. MODERN PREMIUM FOOTER
   ========================================================================== */
.footer {
  background-color: var(--dark-slate);
  color: #94a3b8;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 0.70fr);
  gap: 32px;
  margin-bottom: 60px;
}

.footer-about .brand-logo {
  color: var(--white);
  margin-bottom: 24px;
}

.footer-desc {
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.footer-social-links a:hover {
  background: var(--primary);
  box-shadow: 0 0 12px rgba(0, 87, 255, 0.5);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-list i {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ==========================================================================
   15. MEDIA BREAKPOINTS & RESPONSIVENESS
   ========================================================================== */
@media (max-width: 1024px) {
  .header-container {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding: 0 20px;
  }

  .brand-logo {
    font-size: 22px;
  }

  .desktop-nav .nav-list {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-visual {
    justify-content: center;
  }
  
  .why-choose-grid, .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .merchant-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cta-buttons, .store-links {
    justify-content: center;
  }
  
  .newsletter-card {
    grid-template-columns: 1fr;
    padding: 36px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 14px 0;
  }

  .header-container {
    padding: 0 18px;
  }

  .brand-logo {
    font-size: 20px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .desktop-nav, .header-actions {
    display: none;
  }
  
  .hamburger-btn {
    display: flex;
  }

  .mobile-drawer {
    width: min(100%, 320px);
    max-width: 100vw;
    padding: 26px 20px;
  }

  .drawer-header {
    margin-bottom: 24px;
  }

  .mobile-link {
    font-size: 16px;
  }

  .drawer-footer {
    gap: 12px;
  }

  .btn-login-mob,
  .btn-cta-mob {
    width: 100%;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .search-form {
    grid-template-columns: 1fr;
  }
  
  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
  }
  
  .search-submit-btn {
    padding: 14px;
  }
  
  .search-submit-btn .desktop-text {
    display: none;
  }
  
  .search-submit-btn .mobile-icon {
    display: inline-block;
    font-size: 20px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-choose-grid, .steps-grid {
    grid-template-columns: 1fr;
  }

  .merchant-showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .float-card-1 {
    left: -5%;
  }
  
  .cta-inner {
    padding: 40px 24px;
    overflow-x: hidden;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-buttons, .store-links {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .store-btn {
    width: 100%;
    justify-content: center;
  }
  
  .newsletter-section {
    padding: 40px 0 60px 0;
  }
  
  .newsletter-card {
    padding: 24px;
    gap: 24px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .float-card-3 {
    right: -2%;
  }
}

/* ==========================================================================
   MOVE ASSIST LOGISTICS SECTION
   ========================================================================== */
.move-assist-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--bg-card);
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.move-bg-decor {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.06) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  pointer-events: none;
  z-index: 1;
}

.move-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
  position: relative;
  z-index: 10;
}

.move-intro-card,
.move-spotlight {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.move-intro-card {
  padding: 30px;
}

.small-badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.move-intro-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.move-sub {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.move-quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quick-stat {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(0, 87, 255, 0.04);
  border: 1px solid rgba(0, 87, 255, 0.08);
}

.quick-stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.quick-stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-muted);
}

.move-spotlight {
  padding: 16px;
}

.spotlight-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  display: block;
}

.spotlight-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.spotlight-point {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.spotlight-point i {
  color: var(--primary);
}

.move-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}

.mover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}

.mover-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.mover-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 87, 255, 0.2);
  box-shadow: var(--shadow-premium);
}

.mover-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.mover-avatar-wrap {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.mover-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mover-meta h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.mover-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}

.mover-location i {
  color: var(--primary);
}

.mover-card-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 14px 0;
  border-top: 1px dashed var(--border-light);
  border-bottom: 1px dashed var(--border-light);
  margin-bottom: 16px;
}

.mover-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.mover-stat .stat-value {
  font-size: 15px;
}

.mover-detail {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.move-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.move-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 87, 255, 0.05);
  border-color: rgba(0, 87, 255, 0.15);
}

.move-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.move-card-ghost .card-icon {
  background-color: rgba(13, 148, 136, 0.08);
  color: #0d9488;
}

.move-card-premium .card-icon {
  background-color: rgba(217, 119, 6, 0.08);
  color: #d97706;
}

.move-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.move-card .card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.card-features li {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-features li::before {
  font-family: 'remixicon';
  font-size: 14px;
}

.move-card-ghost .card-features li::before {
  content: '\eeb6';
  color: #0d9488;
}

.move-card-premium .card-features li::before {
  content: '\eeb6';
  color: #d97706;
}

.btn-outline-teal {
  background-color: transparent;
  border: 1.5px solid #0d9488;
  color: #0d9488;
  padding: 10px;
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 12px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-teal:hover {
  background-color: #0d9488;
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
  border: none;
  padding: 11px;
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
  transition: var(--transition);
  text-decoration: none;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(217, 119, 6, 0.25);
}

.move-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background-color: rgba(0, 87, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.move-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.move-stats .stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
}

.move-stats .stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.move-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.move-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 87, 255, 0.05);
  border-color: rgba(0, 87, 255, 0.15);
}

.move-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.move-card-ghost .card-icon {
  background-color: rgba(13, 148, 136, 0.08);
  color: #0d9488;
}

.move-card-premium .card-icon {
  background-color: rgba(217, 119, 6, 0.08);
  color: #d97706;
}

.move-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.move-card .card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Features Bullet points */
.card-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.card-features li {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-features li::before {
  font-family: 'remixicon';
  font-size: 14px;
}

.move-card-ghost .card-features li::before {
  content: '\eeb6'; /* ri-checkbox-circle-fill */
  color: #0d9488;
}

.move-card-premium .card-features li::before {
  content: '\eeb6';
  color: #d97706;
}

/* Buttons Sync */
.btn-outline-teal {
  background-color: transparent;
  border: 1.5px solid #0d9488;
  color: #0d9488;
  padding: 10px;
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 12px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-teal:hover {
  background-color: #0d9488;
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
  border: none;
  padding: 11px;
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
  transition: var(--transition);
  text-decoration: none;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(217, 119, 6, 0.25);
}

/* 4. Stats Row inside section */
.move-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background-color: rgba(0, 87, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  text-align: center;
}

.move-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.move-stats .stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
}

.move-stats .stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* 5. Moving CTA Banner */
.move-cta-banner {
  background: linear-gradient(135deg, var(--dark-slate), #0b152d);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.move-cta-banner::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: rgba(0, 87, 255, 0.1);
  filter: blur(50px);
  border-radius: 50%;
  bottom: -20%;
  right: -5%;
}

.move-cta-banner h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.move-cta-banner p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 24px;
  max-width: 580px;
}

.move-cta-banner .cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.move-cta-banner .btn-schedule {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.move-cta-banner .btn-schedule:hover {
  box-shadow: 0 8px 16px rgba(0, 87, 255, 0.35);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (MOVE ASSIST ONLY)
   ========================================================================== */

@media (max-width: 1024px) {
  .move-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .move-service-grid,
  .mover-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-image-wrap img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .move-intro-card h2 {
    font-size: 32px;
  }

  .move-quick-stats,
  .spotlight-points,
  .move-service-grid,
  .mover-grid,
  .move-stats {
    grid-template-columns: 1fr;
  }

  .move-service-grid,
  .mover-grid {
    gap: 18px;
  }

  .move-stats {
    gap: 16px;
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .move-assist-section {
    padding: 60px 0;
  }

  .move-intro-card,
  .move-spotlight {
    border-radius: var(--radius-md);
  }

  .move-intro-card {
    padding: 20px;
  }

  .move-intro-card h2 {
    font-size: 26px;
  }

  .move-sub {
    font-size: 14px;
  }

  .move-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .mover-header {
    align-items: flex-start;
  }

  .mover-card-stats {
    grid-template-columns: 1fr;
    display: flex;
    justify-content: space-around;
  }


  .move-cta-banner h3 {
    font-size: 18px;
  }

  .move-cta-banner p {
    font-size: 12.5px;
  }

  .move-cta-banner .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .move-cta-banner .btn {
    width: 100%;
    justify-content: center;
  }

}

/* Backdrop-filter fallback for older browsers */
@supports not (backdrop-filter: blur(20px)) {
    .main-header.scrolled {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    .hero-search-wrapper {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    .glass-card,
    .float-card {
        background: rgba(255, 255, 255, 0.98) !important;
    }
}

/* Floating card animations */
@keyframes float-up {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-card {
    animation: float-up 3s ease-in-out infinite;
}

.float-card-2 {
    animation-delay: 1s;
}

.float-card-3 {
    animation-delay: 2s;
}