/* ─── NORTHSTAY PG OWNER PORTAL STYLES (owner-portal.css) ─── */

:root {
  --primary-color: #ff4b4b;
  --primary-hover: #ff3333;
  --primary-glow: rgba(255, 75, 75, 0.35);
  --bg-dark: #07090e;
  --card-dark: rgba(15, 19, 28, 0.85);
  --card-border-dark: rgba(255, 255, 255, 0.12);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --input-bg: rgba(22, 27, 38, 0.9);
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

body.owner-portal-body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}



body.owner-portal-body::before {
  display: none;
}

/* ─── ANIMATED HAMBURGER BUTTON ─── */
.hamburger-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.ham-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transform-origin: center;
}

/* Hamburger → X morph */
.hamburger-btn.is-active .ham-line-1 {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.is-active .ham-line-2 {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.is-active .ham-line-3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── BACKDROP OVERLAY ─── */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.menu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ─── SLIDE-IN MEGA MENU PANEL ─── */
.mega-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100vh;
  background: rgba(10, 14, 24, 0.97);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-105%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.6);
}

.mega-menu-panel.is-open {
  transform: translateX(0);
}

/* Panel Header */
.mega-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-panel-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  color: #ff4b4b;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.mega-brand-dot {
  width: 8px;
  height: 8px;
  background: #ff4b4b;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 75, 75, 0.6);
  animation: dotPulse 2s infinite ease-out;
}

@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 75, 75, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(255, 75, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 75, 75, 0); }
}

.mega-close-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.mega-close-btn:hover {
  background: rgba(255, 75, 75, 0.15);
  border-color: rgba(255, 75, 75, 0.3);
  color: #ff4b4b;
  transform: rotate(90deg);
}

/* Panel Items */
.mega-panel-items {
  flex: 1;
  padding: 16px 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateX(-20px);
}

.mega-menu-panel.is-open .mega-item-anim {
  animation: menuItemSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mega-menu-panel.is-open .mega-item-anim:nth-child(1) { animation-delay: 0.08s; }
.mega-menu-panel.is-open .mega-item-anim:nth-child(2) { animation-delay: 0.14s; }
.mega-menu-panel.is-open .mega-item-anim:nth-child(3) { animation-delay: 0.20s; }
.mega-menu-panel.is-open .mega-item-anim:nth-child(5) { animation-delay: 0.28s; }

@keyframes menuItemSlideIn {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

.mega-menu-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

.mega-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.mega-menu-item:hover .mega-item-icon {
  transform: scale(1.1);
}

.mega-item-text .title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.mega-item-text .desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.arrow-icon {
  margin-left: auto;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.mega-menu-item:hover .arrow-icon {
  color: #ff4b4b;
  transform: translateX(3px);
}

/* Panel Divider */
.mega-panel-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 8px 12px;
}

/* Panel Footer */
.mega-panel-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.3px;
}

/* Ambient Glowing Background Blobs */
.portal-bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.portal-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.portal-blob-1 {
  width: 450px;
  height: 450px;
  background: #1e293b;
  top: -100px;
  left: -100px;
  animation: blob-float 12s infinite alternate ease-in-out;
}

.portal-blob-2 {
  width: 400px;
  height: 400px;
  background: #3b82f6;
  bottom: -80px;
  right: -80px;
  animation: blob-float 10s infinite alternate-reverse ease-in-out;
}

@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 50px) scale(1.1); }
}

/* Glassmorphism Containers */
.glass-panel {
  background: rgba(13, 17, 26, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}

/* Full Screen Viewport Container — Subtle, Atmospheric Low-Opacity 4K Background */
.owner-auth-container {
  margin-top: 0;
  padding-top: 0;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  background-color: #080a10 !important;
  overflow: hidden;
}

/* Background image with high opacity (vivid and clearly visible) */
.owner-auth-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/owner_portal_bg.jpg') center center / cover no-repeat fixed;
  opacity: 0.85;
  filter: saturate(1);
  z-index: 1;
  pointer-events: none;
}

/* Light Atmospheric Vignette Overlay */
.owner-auth-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at center, rgba(8, 10, 16, 0.08) 0%, rgba(5, 7, 12, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.38) 100%);
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  z-index: 2;
  pointer-events: none;
}

/* Full Screen Showcase — Edge to Edge */
.hero-glass-showcase {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: transparent;
  backdrop-filter: none;
}

.showcase-img-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-glass-showcase:hover .showcase-img {
  transform: scale(1.04);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 14, 0.84) 0%, rgba(3, 6, 14, 0.48) 45%, rgba(3, 6, 14, 0.72) 100%),
    linear-gradient(180deg, rgba(3, 6, 14, 0.2) 0%, transparent 30%, transparent 70%, rgba(3, 6, 14, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.showcase-content-box {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 80px 48px 60px 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  height: 100%;
  box-sizing: border-box;
}

/* Accent Line */
.showcase-accent-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #ff4b4b, #ff7b7b);
  border-radius: 3px;
  margin-bottom: 20px;
}

/* Eyebrow Label */
.showcase-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ff4b4b;
  margin-bottom: 16px;
  display: inline-block;
}

/* Editorial Title */
.showcase-title {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 18px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.title-highlight {
  color: #ff4b4b;
  text-shadow: 0 4px 20px rgba(255, 75, 75, 0.45);
}

/* Subtitle */
.showcase-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 28px 0;
  max-width: 420px;
}

/* Trust Indicators Row */
.showcase-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.trust-metric {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  font-size: 18px;
  color: #ff4b4b;
}

.trust-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Bottom Badges */
.showcase-bottom-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 36px;
}

.showcase-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-badge-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #ffffff;
}

/* ─── RIGHT SIDE: AUTH OVERLAY ─── */
.showcase-auth-overlay {
  position: relative;
  z-index: 3;
  width: 44%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-right-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 440px;
  z-index: 100;
  margin: 0 auto;
}

@keyframes heroLeftFade {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}

.hero-network-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 75, 75, 0.12);
  border: 1px solid rgba(255, 75, 75, 0.3);
  color: #ff4b4b;
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
  letter-spacing: 0.8px;
}

.hero-split-title {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

.text-gradient-red {
  background: linear-gradient(135deg, #ff4b4b, #ff7b7b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-split-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.hero-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 75, 75, 0.3);
  transform: translateX(6px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.benefit-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
}

.benefit-desc {
  color: var(--text-muted);
  font-size: 12.5px;
  margin-top: 2px;
}

.hero-counters-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 24px;
  border-radius: 16px;
  margin-top: 10px;
  width: fit-content;
}

.counter-item {
  display: flex;
  flex-direction: column;
}

.counter-num {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.counter-label {
  font-size: 11.5px;
  color: var(--text-muted);
}

.counter-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
}



@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(24px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.auth-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 75, 75, 0.25), rgba(255, 75, 75, 0.08));
  border: 1.5px solid rgba(255, 75, 75, 0.45);
  color: var(--primary-color);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  animation: badgeGlowPulse 3s infinite ease-in-out;
}

@keyframes badgeGlowPulse {
  0% { box-shadow: 0 0 15px rgba(255, 75, 75, 0.25); transform: scale(1); }
  50% { box-shadow: 0 0 28px rgba(255, 75, 75, 0.55); transform: scale(1.05); }
  100% { box-shadow: 0 0 15px rgba(255, 75, 75, 0.25); transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════════
   CINEMATIC LUXURY GLASS LOGIN CARD (EXACT TO USER SCREENSHOT)
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   AUTHENTICATION VIEW & LOGIN CARD (ALWAYS 100% VISIBLE & HIGH CONTRAST)
   ═══════════════════════════════════════════════════════════ */

/* Main Login Card */
body.owner-portal-body #view-auth .auth-card,
body.owner-portal-body.theme-light #view-auth .auth-card,
.auth-card {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  box-sizing: border-box;
  background: rgba(22, 26, 36, 0.92) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 28px !important;
  padding: 40px 36px 36px 36px !important;
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.75), 
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  position: relative;
  z-index: 10;
}

/* Welcome Heading - Always Pure Bright White */
body.owner-portal-body #view-auth .auth-welcome-title,
body.owner-portal-body.theme-light #view-auth .auth-welcome-title,
#view-auth h2.auth-welcome-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: -0.4px !important;
  text-align: left !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

/* Subtitle - Always Clean Silver */
body.owner-portal-body #view-auth .auth-welcome-sub,
body.owner-portal-body.theme-light #view-auth .auth-welcome-sub,
#view-auth p.auth-welcome-sub {
  font-size: 14px !important;
  color: #cbd5e1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
  margin: 0 !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  text-align: left !important;
}

/* Google Button (Full Width Pill) */
body.owner-portal-body #view-auth .auth-social-wrap {
  width: 100% !important;
  margin-bottom: 20px !important;
}

body.owner-portal-body #view-auth .btn-google-full,
body.owner-portal-body.theme-light #view-auth .btn-google-full,
#view-auth #btn-google-login {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  height: 48px !important;
  padding: 0 20px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.2px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 9999px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
}

body.owner-portal-body #view-auth .btn-google-full:hover,
#view-auth #btn-google-login:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.38) !important;
  transform: translateY(-1px) !important;
}

/* Centered Clean Divider (── or ──) */
body.owner-portal-body #view-auth .auth-divider,
body.owner-portal-body.theme-light #view-auth .auth-divider,
.auth-divider {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 18px 0 22px 0 !important;
  width: 100% !important;
}

.auth-divider-line {
  flex: 1 !important;
  height: 1px !important;
  background: rgba(255, 255, 255, 0.16) !important;
}

.auth-divider-text {
  padding: 0 16px !important;
  color: #94a3b8 !important;
  -webkit-text-fill-color: #94a3b8 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: lowercase !important;
  background: transparent !important;
}

/* Form Groups & Labels */
body.owner-portal-body #view-auth .form-group,
body.owner-portal-body.theme-light #view-auth .form-group {
  margin-bottom: 18px !important;
  text-align: left !important;
}

body.owner-portal-body #view-auth .form-group label,
body.owner-portal-body.theme-light #view-auth .form-group label {
  display: block !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #f1f5f9 !important;
  -webkit-text-fill-color: #f1f5f9 !important;
  margin-bottom: 8px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.input-pill-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

/* Input Fields (Dark background, bright white text, crisp placeholder) */
body.owner-portal-body #view-auth input[type="text"],
body.owner-portal-body #view-auth input[type="email"],
body.owner-portal-body #view-auth input[type="password"],
body.owner-portal-body #view-auth .form-control,
body.owner-portal-body.theme-light #view-auth input[type="text"],
body.owner-portal-body.theme-light #view-auth input[type="email"],
body.owner-portal-body.theme-light #view-auth input[type="password"],
body.owner-portal-body.theme-light #view-auth .form-control {
  width: 100% !important;
  height: 50px !important;
  padding: 12px 18px !important;
  padding-right: 46px !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: rgba(14, 18, 28, 0.88) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 12px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.2s ease !important;
}

body.owner-portal-body #view-auth input::placeholder,
body.owner-portal-body.theme-light #view-auth input::placeholder {
  color: #94a3b8 !important;
  -webkit-text-fill-color: #94a3b8 !important;
  font-size: 14px !important;
  opacity: 1 !important;
}

body.owner-portal-body #view-auth input:focus,
body.owner-portal-body.theme-light #view-auth input:focus {
  border-color: #ff4b4b !important;
  background: rgba(18, 24, 38, 0.98) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(255, 75, 75, 0.3) !important;
}

/* Eye Icon */
body.owner-portal-body #view-auth .toggle-password-icon,
body.owner-portal-body.theme-light #view-auth .toggle-password-icon {
  position: absolute !important;
  right: 16px !important;
  left: auto !important;
  color: #94a3b8 !important;
  -webkit-text-fill-color: #94a3b8 !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
  z-index: 5 !important;
}

body.owner-portal-body #view-auth .toggle-password-icon:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Forgot Password Link (Red Theme) */
body.owner-portal-body #view-auth .auth-forgot-row {
  margin: 8px 0 24px 0 !important;
  text-align: left !important;
  display: flex !important;
  justify-content: flex-start !important;
}

body.owner-portal-body #view-auth .auth-forgot-link,
body.owner-portal-body.theme-light #view-auth .auth-forgot-link {
  color: #ff4b4b !important;
  -webkit-text-fill-color: #ff4b4b !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

body.owner-portal-body #view-auth .auth-forgot-link:hover {
  color: #ff7a7a !important;
  -webkit-text-fill-color: #ff7a7a !important;
  text-decoration: underline !important;
}

/* Solid Red Brand Login & Reset CTA Button (Clean Solid Edge) */
body.owner-portal-body #view-auth #btn-submit-auth,
body.owner-portal-body.theme-light #view-auth #btn-submit-auth,
body.owner-portal-body #view-auth #btn-send-reset,
body.owner-portal-body.theme-light #view-auth #btn-send-reset,
body.owner-portal-body #view-auth .btn-primary-action {
  width: 100% !important;
  height: 50px !important;
  border-radius: 14px !important;
  background: #ff4b4b !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

body.owner-portal-body #view-auth #btn-submit-auth:hover,
body.owner-portal-body #view-auth #btn-send-reset:hover,
body.owner-portal-body #view-auth .btn-primary-action:hover {
  background: #e03e3e !important;
  border: none !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(-1px) !important;
}

/* Floating "Main Website" Navigation Button */
.btn-auth-main-website,
body.owner-portal-body.theme-light .btn-auth-main-website {
  position: absolute;
  top: 28px;
  left: 32px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(22, 26, 36, 0.85);
  border: 1.2px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-auth-main-website:hover {
  background: rgba(30, 36, 50, 0.95);
  border-color: #ff4b4b;
  color: #ff4b4b !important;
  -webkit-text-fill-color: #ff4b4b !important;
  transform: translateX(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 75, 75, 0.25);
}

/* Terms & Conditions Checkbox */
body.owner-portal-body #view-auth .auth-terms-group {
  margin: 14px 0 20px 0;
  text-align: left;
}

body.owner-portal-body #view-auth .auth-terms-label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  cursor: pointer !important;
  user-select: none !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #cbd5e1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
  margin: 0 !important;
}

body.owner-portal-body #view-auth .auth-terms-label input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 5px !important;
  background: rgba(14, 18, 28, 0.85) !important;
  cursor: pointer !important;
  position: relative !important;
  display: inline-grid !important;
  place-content: center !important;
  transition: all 0.2s ease !important;
}

body.owner-portal-body #view-auth .auth-terms-label input[type="checkbox"]:checked {
  background: #ff4b4b !important;
  border-color: #ff4b4b !important;
}

body.owner-portal-body #view-auth .auth-terms-label input[type="checkbox"]:checked::before {
  content: "✔";
  font-size: 11px;
  color: #ffffff;
  font-weight: 900;
}

body.owner-portal-body #view-auth .auth-terms-text {
  font-size: 13px !important;
  color: #cbd5e1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
  line-height: 1.4 !important;
}

body.owner-portal-body #view-auth .auth-terms-text a {
  color: #ff4b4b !important;
  -webkit-text-fill-color: #ff4b4b !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

body.owner-portal-body #view-auth .auth-terms-text a:hover {
  text-decoration: underline !important;
  color: #ff7a7a !important;
  -webkit-text-fill-color: #ff7a7a !important;
}

/* Footer Switch Link (Red Theme) */
body.owner-portal-body #view-auth .auth-switch-footer,
body.owner-portal-body.theme-light #view-auth .auth-switch-footer {
  text-align: center !important;
  margin-top: 24px !important;
  font-size: 14px !important;
  color: #cbd5e1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
}

body.owner-portal-body #view-auth .auth-switch-link,
body.owner-portal-body.theme-light #view-auth .auth-switch-link {
  color: #ff4b4b !important;
  -webkit-text-fill-color: #ff4b4b !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  margin-left: 5px !important;
  cursor: pointer !important;
}

body.owner-portal-body #view-auth .auth-switch-link:hover {
  text-decoration: underline !important;
  color: #ff7a7a !important;
  -webkit-text-fill-color: #ff7a7a !important;
}

@media (max-width: 600px) {
  .btn-auth-main-website {
    top: 14px;
    left: 14px;
    padding: 7px 12px;
    font-size: 12px;
  }
}

/* Responsive adjustments for mobile screens */
@media (max-width: 600px) {
  .owner-auth-container {
    padding: 16px 12px !important;
  }
  .auth-browser-frame {
    min-height: auto !important;
    border-radius: 20px !important;
  }
  .auth-browser-bar {
    padding: 10px 14px !important;
  }
  .auth-browser-url {
    padding: 3px 12px !important;
    font-size: 10px !important;
  }
  .auth-browser-body {
    padding: 20px 12px !important;
  }
  .auth-card {
    padding: 28px 20px 24px 20px !important;
    border-radius: 22px !important;
  }
  .auth-welcome-title {
    font-size: 24px !important;
  }
  .auth-social-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .btn-social-pill {
    padding: 8px 8px !important;
    font-size: 11px !important;
  }
}

/* ─── PRO-LEVEL FORM INPUT DESIGN SYSTEM ─── */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.form-group:focus-within label {
  color: #ff4b4b;
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrapper i:not(.toggle-password-icon) {
  position: absolute;
  left: 15px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.input-icon-wrapper .form-control {
  padding-left: 44px;
}

.input-icon-wrapper:focus-within i:not(.toggle-password-icon) {
  color: #ff4b4b;
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(255, 75, 75, 0.5));
}

.toggle-password-icon {
  position: absolute;
  right: 15px;
  left: auto !important;
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 14px;
  cursor: pointer;
  pointer-events: auto !important;
  transition: all 0.25s ease;
  z-index: 4;
}

.toggle-password-icon:hover {
  color: #ffffff !important;
  transform: scale(1.18);
}

/* ─── PRO-LEVEL HIGH-SPECIFICITY INPUT & BUTTON SYSTEM ─── */
/* ─── PRO-LEVEL HIGH-SPECIFICITY INPUT & BUTTON SYSTEM (IDENTICAL TO VERIFICATION FORM) ─── */
body.owner-portal-body input[type="text"],
body.owner-portal-body input[type="tel"],
body.owner-portal-body input[type="email"],
body.owner-portal-body input[type="password"],
body.owner-portal-body input[type="number"],
body.owner-portal-body select,
body.owner-portal-body .form-control {
  width: 100% !important;
  height: 48px !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  background: linear-gradient(145deg, rgba(10, 14, 24, 0.92) 0%, rgba(16, 22, 38, 0.88) 100%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 12px !important;
  font-family: 'Inter', sans-serif !important;
  box-sizing: border-box !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.6), 
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.owner-portal-body textarea,
body.owner-portal-body textarea.form-control {
  width: 100% !important;
  min-height: 105px !important;
  height: auto !important;
  padding: 14px 18px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  background: linear-gradient(145deg, rgba(10, 14, 24, 0.92) 0%, rgba(16, 22, 38, 0.88) 100%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 12px !important;
  font-family: 'Inter', sans-serif !important;
  box-sizing: border-box !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.6), 
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.owner-portal-body input[type="text"]::placeholder,
body.owner-portal-body input[type="tel"]::placeholder,
body.owner-portal-body input[type="email"]::placeholder,
body.owner-portal-body input[type="password"]::placeholder,
body.owner-portal-body input[type="number"]::placeholder,
body.owner-portal-body textarea::placeholder,
body.owner-portal-body .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
  font-weight: 500 !important;
}

body.owner-portal-body input[type="text"]:hover,
body.owner-portal-body input[type="tel"]:hover,
body.owner-portal-body input[type="email"]:hover,
body.owner-portal-body input[type="password"]:hover,
body.owner-portal-body input[type="number"]:hover,
body.owner-portal-body select:hover,
body.owner-portal-body textarea:hover,
body.owner-portal-body .form-control:hover {
  background: linear-gradient(145deg, rgba(14, 20, 34, 0.95) 0%, rgba(20, 28, 48, 0.9) 100%) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
}

body.owner-portal-body input[type="text"]:focus,
body.owner-portal-body input[type="tel"]:focus,
body.owner-portal-body input[type="email"]:focus,
body.owner-portal-body input[type="password"]:focus,
body.owner-portal-body input[type="number"]:focus,
body.owner-portal-body select:focus,
body.owner-portal-body textarea:focus,
body.owner-portal-body .form-control:focus {
  outline: none !important;
  background: rgba(10, 14, 26, 0.98) !important;
  border-color: #ff4b4b !important;
  box-shadow: 
    0 0 0 3px rgba(255, 75, 75, 0.22), 
    0 0 24px rgba(255, 75, 75, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-1px) !important;
}

/* ─── FILE INPUT & AUTOFILL STYLING ─── */

/* Hide native file input button completely */
body.owner-portal-body input[type="file"].file-input-hidden {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 10 !important;
  background: transparent !important;
  border: none !important;
}

/* WebKit & Chrome Autofill Override (Deep Dark Obsidian) */
body.owner-portal-body input:-webkit-autofill,
body.owner-portal-body input:-webkit-autofill:hover,
body.owner-portal-body input:-webkit-autofill:focus,
body.owner-portal-body input:-webkit-autofill:active,
body.owner-portal-body #view-auth input:-webkit-autofill,
body.owner-portal-body #view-auth input:-webkit-autofill:hover,
body.owner-portal-body #view-auth input:-webkit-autofill:focus,
body.owner-portal-body textarea:-webkit-autofill,
body.owner-portal-body textarea:-webkit-autofill:hover,
body.owner-portal-body textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #0b0f1a inset !important;
  box-shadow: 0 0 0px 1000px #0b0f1a inset !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  caret-color: #ff4b4b !important;
  border: 1px solid rgba(255, 75, 75, 0.4) !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* ─── PRIMARY ACTION BUTTONS OVERRIDE (EXCLUDING AUTH VIEW) ─── */
body.owner-portal-body #view-dashboard .btn-primary-action,
body.owner-portal-body button[type="submit"]#btn-submit-verification {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  height: 50px !important;
  padding: 0 24px !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #ff4b4b !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
  position: relative !important;
}

/* Hover & Active States */
body.owner-portal-body #view-dashboard .btn-primary-action:hover,
body.owner-portal-body button[type="submit"]#btn-submit-verification:hover {
  background: #ff3333 !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45) !important;
}

body.owner-portal-body .btn-primary-action:hover span,
body.owner-portal-body button[type="submit"]#btn-submit-verification:hover span,
body.owner-portal-body button[type="submit"]#btn-submit-auth:hover span {
  transform: none;
}

body.owner-portal-body .btn-primary-action:hover i,
body.owner-portal-body button[type="submit"]#btn-submit-verification:hover i,
body.owner-portal-body button[type="submit"]#btn-submit-auth:hover i {
  transform: translateX(4px);
  transition: transform 0.2s ease;
}

body.owner-portal-body .btn-primary-action:active,
body.owner-portal-body button[type="submit"]#btn-submit-verification:active,
body.owner-portal-body button[type="submit"]#btn-submit-auth:active {
  background: #e11d48 !important;
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

/* ─── FORGOT PASSWORD ─── */
.auth-forgot-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
  margin-top: -6px;
}

.auth-forgot-link {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.auth-forgot-link:hover {
  color: #ff4b4b;
}

/* ─── PRIMARY CTA BUTTON ─── */
.btn-primary-action {
  width: 100%;
  padding: 14px;
  background: #ff4b4b !important;
  color: #ffffff;
  font-weight: 700;
  border: none !important;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(255, 75, 75, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  position: relative;
  overflow: hidden;
}

.btn-primary-action::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 75, 75, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.btn-primary-action:hover::before {
  opacity: 1;
}

.btn-primary-action:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(255, 75, 75, 0.4) !important;
}

/* ─── SECURE NOTE ─── */
.auth-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.3px;
}

.auth-secure-note i {
  font-size: 10px;
  color: rgba(16, 185, 129, 0.7);
}

/* Feature Highlights Bar under Card */
.auth-features-bar {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  width: 100%;
  justify-content: flex-end;
  flex-wrap: wrap;
  animation: featurePillSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes featurePillSlide {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.feature-pill:hover {
  color: #ffffff;
  border-color: rgba(255, 75, 75, 0.4);
  background: rgba(255, 75, 75, 0.1);
  transform: translateY(-1px);
}

.feature-pill i {
  color: var(--primary-color);
  font-size: 13px;
}
  font-size: 14px;
}

/* ─── INTEGRATED VERIFICATION PANEL STYLES ─── */
.auth-card.verification-panel {
  max-width: 440px;
  width: 100%;
  padding: 28px 24px;
}

.verify-docs-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.doc-upload-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  transition: all 0.25s ease;
}

.doc-upload-row:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 75, 75, 0.35);
}

.doc-title-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #ffffff;
}

.doc-title-info i {
  color: #ff4b4b;
  font-size: 14px;
}

.doc-upload-row .file-drop-zone {
  width: auto;
}

.doc-upload-row .file-drop-label {
  padding: 6px 12px;
  font-size: 11.5px;
  border-radius: 8px;
}
/* ─── ULTRA-PREMIUM SINGLE-PAGE VERIFICATION VIEW (ZERO SCROLLING) ─── */
#view-verify-upload,
#view-verify-pending,
#view-verify-rejected {
  height: 100vh !important;
  max-height: 100vh !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px !important;
  box-sizing: border-box;
  overflow: hidden !important;
  background: 
    radial-gradient(circle at 50% -10%, rgba(255, 75, 75, 0.12) 0%, rgba(14, 18, 30, 0) 65%),
    radial-gradient(circle at 85% 85%, rgba(59, 130, 246, 0.08) 0%, rgba(10, 14, 24, 1) 50%),
    #080b12 !important;
}

.verification-card-container {
  max-width: 1040px;
  width: 100%;
  max-height: 94vh;
  margin: 0 auto;
  padding: 26px 36px !important;
  border-radius: 24px !important;
  background: rgba(16, 21, 36, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  backdrop-filter: blur(40px) !important;
  -webkit-backdrop-filter: blur(40px) !important;
  box-shadow: 
    0 40px 100px -20px rgba(0, 0, 0, 0.9), 
    0 0 50px rgba(255, 75, 75, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.verification-card-container:hover {
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 
    0 48px 120px -20px rgba(0, 0, 0, 0.95), 
    0 0 70px rgba(255, 75, 75, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 850px) {
  #view-verify-upload {
    height: auto !important;
    max-height: none !important;
    overflow-y: auto !important;
  }
  .verification-card-container {
    max-height: none;
    padding: 22px 18px !important;
  }
}

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

.verify-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(255, 75, 75, 0.28), rgba(59, 130, 246, 0.18));
  border: 1.5px solid rgba(255, 75, 75, 0.5);
  color: #ff4b4b;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px auto;
  box-shadow: 0 0 20px rgba(255, 75, 75, 0.35);
  animation: verifyBadgePulse 3.5s infinite ease-in-out;
}

@keyframes verifyBadgePulse {
  0% { box-shadow: 0 0 16px rgba(255, 75, 75, 0.3); transform: scale(1); }
  50% { box-shadow: 0 0 26px rgba(255, 75, 75, 0.6); transform: scale(1.04); }
  100% { box-shadow: 0 0 16px rgba(255, 75, 75, 0.3); transform: scale(1); }
}

.verify-step-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  color: #34d399;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 6px;
  letter-spacing: 0.9px;
}

.step-dot {
  width: 6px;
  height: 6px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.9);
}

.verify-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px 0;
  letter-spacing: -0.4px;
}

.verify-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.4;
}

.verify-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 16px;
}

@media (max-width: 800px) {
  .verify-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── ULTRA-PREMIUM EXECUTIVE INPUT FIELDS FOR VERIFICATION CARD ─── */
#view-verify-upload .form-group {
  margin-bottom: 0 !important;
  transition: all 0.3s ease;
}

#view-verify-upload .form-group label {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
  transition: color 0.3s ease !important;
}

#view-verify-upload .form-group:focus-within label {
  color: #ff4b4b !important;
  text-shadow: 0 0 10px rgba(255, 75, 75, 0.4);
}

#view-verify-upload .input-icon-wrapper {
  position: relative;
  width: 100%;
}

#view-verify-upload .input-icon-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
}

#view-verify-upload .form-group:focus-within .input-icon-wrapper i {
  color: #ff4b4b !important;
  transform: translateY(-50%) scale(1.15);
  filter: drop-shadow(0 0 8px rgba(255, 75, 75, 0.6));
}

#view-verify-upload .form-control {
  width: 100% !important;
  height: 48px !important;
  padding: 12px 16px 12px 44px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  background: linear-gradient(145deg, rgba(10, 14, 24, 0.92) 0%, rgba(16, 22, 38, 0.88) 100%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 12px !important;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.6), 
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  box-sizing: border-box !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#view-verify-upload .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
  font-weight: 500 !important;
}

#view-verify-upload .form-control:hover {
  background: linear-gradient(145deg, rgba(14, 20, 34, 0.95) 0%, rgba(20, 28, 48, 0.9) 100%) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
}

#view-verify-upload .form-control:focus {
  background: rgba(10, 14, 26, 0.98) !important;
  border-color: #ff4b4b !important;
  box-shadow: 
    0 0 0 3px rgba(255, 75, 75, 0.22), 
    0 0 24px rgba(255, 75, 75, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  outline: none !important;
}

.verify-docs-section {
  margin-top: 16px;
  margin-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.verify-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ─── OPTIONAL DOCUMENT TOGGLE BAR (MOBILE-APP MATCH) ─── */
.verify-doc-toggle-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px 16px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.verify-doc-toggle-bar:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.toggle-info .toggle-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.toggle-info .toggle-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.custom-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.custom-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 26px;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.custom-switch input:checked + .switch-slider {
  background-color: #ff4b4b;
  border-color: #ff4b4b;
  box-shadow: 0 0 15px rgba(255, 75, 75, 0.45);
}

.custom-switch input:checked + .switch-slider:before {
  transform: translateX(22px);
}

.verify-docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 460px;
  margin: 0 auto;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.verify-docs-grid.has-aadhaar {
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
  margin: 0;
}

@media (max-width: 680px) {
  .verify-docs-grid.has-aadhaar {
    grid-template-columns: 1fr;
  }
}

.doc-upload-box {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 10px 24px -8px rgba(0, 0, 0, 0.5), 
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.doc-upload-box:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 75, 75, 0.45);
  transform: translateY(-3px);
  box-shadow: 
    0 16px 32px -8px rgba(0, 0, 0, 0.7),
    0 0 24px rgba(255, 75, 75, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.doc-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.doc-icon {
  font-size: 16px;
  color: #ff4b4b;
  filter: drop-shadow(0 0 8px rgba(255, 75, 75, 0.6));
}

.doc-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.doc-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 6px 0;
  line-height: 1.4;
  min-height: 28px;
}

.file-drop-zone {
  position: relative;
  width: 100%;
}

.file-input-hidden {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-drop-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.file-drop-label.has-file {
  background: rgba(16, 185, 129, 0.18) !important;
  border: 1px solid rgba(16, 185, 129, 0.55) !important;
  color: #34d399 !important;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.35) !important;
}

.file-drop-zone:hover .file-drop-label:not(.has-file) {
  background: rgba(255, 75, 75, 0.16);
  border-color: #ff4b4b;
  color: #ffffff;
  transform: translateY(-1px);
}

.verify-security-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 11px;
  padding: 10px 16px;
  font-size: 11.5px;
  font-weight: 600;
  color: #34d399;
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#btn-submit-verification {
  width: 100% !important;
  height: 50px !important;
  border-radius: 14px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.3px !important;
  margin: 0 !important;
  box-shadow: 
    0 10px 25px -5px rgba(255, 75, 75, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#btn-submit-verification:hover {
  transform: translateY(-2px) !important;
  box-shadow: 
    0 16px 36px -5px rgba(255, 75, 75, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

/* Status Circles & Eyebrows */
.status-pulse-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 16px auto;
}

.status-pulse-circle.warning {
  background: rgba(245, 158, 11, 0.15);
  border: 2px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.status-pulse-circle.danger {
  background: rgba(239, 68, 68, 0.15);
  border: 2px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.status-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  display: inline-block;
}

.status-eyebrow.warning {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-eyebrow.danger {
  color: #f87171;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.status-info-box.warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #fcd34d;
}

/* Main Owner Dashboard Layout */
.dashboard-layout {
  display: flex;
  margin-top: 0 !important;
  min-height: 100vh !important;
  background: var(--bg-dark);
}

.dashboard-sidebar {
  width: 270px;
  background: rgba(15, 20, 32, 0.94);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Bottom Left Corner Animated Logout Button */
.sidebar-logout-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.08);
}

.animated-logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1.5px solid rgba(239, 68, 68, 0.28);
  color: #ef4444;
  padding: 12px 16px;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.1);
}

.logout-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.animated-logout-btn:hover {
  background: rgba(239, 68, 68, 0.22);
  border-color: rgba(239, 68, 68, 0.6);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.35);
}

.animated-logout-btn:hover .logout-icon-wrapper {
  transform: translateX(4px);
  background: #ef4444;
  color: #ffffff;
}

.animated-logout-btn:active {
  transform: translateY(0);
}

.sidebar-nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  width: 100%;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-nav-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  transform: translateX(3px);
}

.sidebar-nav-btn.active {
  background: rgba(255, 75, 75, 0.14);
  color: #ffffff;
  border-left: 3.5px solid var(--primary-color);
  border-color: rgba(255, 75, 75, 0.3);
  box-shadow: 0 4px 14px rgba(255, 75, 75, 0.2);
}

.sidebar-nav-btn.active i {
  color: var(--primary-color);
}

.dashboard-content {
  flex: 1;
  padding: 36px 40px;
  overflow-y: auto;
  box-sizing: border-box;
}

/* Tab View Entrance Animations */
.tab-panel-view {
  animation: tabFadeIn 0.4s ease forwards;
}

@keyframes tabFadeIn {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Dashboard Overview Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.stat-card {
  padding: 24px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(255, 75, 75, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 75, 75, 0.2);
}

.stat-card .stat-value {
  font-size: 32px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin-top: 10px;
  color: #ffffff;
}

/* Add PG Desktop Form Grid Layout */
.add-pg-glass-card {
  padding: 36px 40px;
  max-width: 1020px;
  margin: 0 auto;
}

.add-pg-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 992px) {
  .add-pg-glass-card {
    padding: 24px 20px;
  }
  .add-pg-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Amenity Chips */
.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.08) !important;
  padding: 12px 18px !important;
  border-radius: 12px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.amenity-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

.amenity-chip:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.amenity-chip:has(input:checked) {
  background: rgba(255, 75, 75, 0.14) !important;
  border-color: rgba(255, 75, 75, 0.45) !important;
  color: #ff4b4b !important;
  box-shadow: 0 4px 16px rgba(255, 75, 75, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.amenity-chip input:checked + span {
  color: #ff4b4b !important;
  font-weight: 700 !important;
}

/* PG Listing Cards Grid */
.pg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.pg-card-item {
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pg-card-item:hover {
  border-color: rgba(255, 75, 75, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 75, 75, 0.25);
}

.pg-card-thumb {
  height: 200px;
  width: 100%;
  object-fit: cover;
  background: #111;
  transition: transform 0.4s ease;
}

.pg-card-item:hover .pg-card-thumb {
  transform: scale(1.03);
}

.pg-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Subscription Tier Cards */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.tier-card {
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.tier-card.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(180deg, rgba(255, 75, 75, 0.12) 0%, rgba(15, 19, 28, 0.95) 100%);
  box-shadow: 0 12px 40px rgba(255, 75, 75, 0.25);
}

.tier-price {
  font-size: 36px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  margin: 18px 0;
  color: #ffffff;
}

/* Animated 3-Line Menu Trigger & Dropdown Entrance */
#btn-expand-nav-menu {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

#btn-expand-nav-menu:hover {
  background: rgba(255, 75, 75, 0.15) !important;
  border-color: rgba(255, 75, 75, 0.4) !important;
}

#btn-expand-nav-menu.open {
  background: rgba(255, 75, 75, 0.2) !important;
  border-color: rgba(255, 75, 75, 0.5) !important;
}

/* Animated Mega Dropdown Menu Content & Staggered Items */
.mega-menu-dropdown.open-animated {
  transform-origin: top left;
  animation: megaMenuPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes megaMenuPop {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(-14px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateX(-14px);
}

.mega-menu-dropdown.open-animated .mega-menu-item {
  animation: menuItemSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mega-menu-dropdown.open-animated .item-stagger-1 { animation-delay: 0.04s; }
.mega-menu-dropdown.open-animated .item-stagger-2 { animation-delay: 0.08s; }
.mega-menu-dropdown.open-animated .item-stagger-3 { animation-delay: 0.12s; }
.mega-menu-dropdown.open-animated .item-stagger-4 { animation-delay: 0.16s; }

@keyframes menuItemSlide {
  0% {
    opacity: 0;
    transform: translateX(-16px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.mega-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.25s ease;
}

.mega-item-text {
  flex: 1;
}

.mega-item-text .title {
  color: #ffffff;
  font-weight: 700;
  font-size: 13.5px;
}

.mega-item-text .desc {
  color: var(--text-muted);
  font-size: 11.5px;
  margin-top: 1px;
}

.arrow-icon {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.mega-menu-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.mega-menu-item:hover .mega-item-icon {
  transform: scale(1.1);
}

.mega-menu-item:hover .arrow-icon {
  color: #ff4b4b;
  transform: translateX(3px);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .auth-hero-split-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .auth-hero-left {
    text-align: center;
    align-items: center;
  }

  .hero-split-title {
    font-size: 28px;
  }

  .benefit-card {
    text-align: left;
  }

  .hero-counters-bar {
    margin: 0 auto;
  }

  .dashboard-layout {
    flex-direction: column;
  }

  .dashboard-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
  }

  .dashboard-content {
    padding: 24px 20px;
  }
}

@media (max-width: 992px) {
  .showcase-img-container {
    flex-direction: column;
    min-height: auto;
  }

  .showcase-overlay {
    background:
      linear-gradient(180deg, rgba(3, 6, 14, 0.9) 0%, rgba(3, 6, 14, 0.8) 100%);
  }

  .showcase-content-box {
    width: 100%;
    padding: 100px 28px 28px 28px;
    text-align: center;
    align-items: center;
  }

  .showcase-title {
    font-size: 32px;
  }

  .showcase-subtitle {
    max-width: 100%;
  }

  .showcase-trust-row {
    justify-content: center;
  }

  .showcase-bottom-badges {
    justify-content: center;
  }

  .showcase-auth-overlay {
    width: 100%;
    padding: 12px 24px 40px 24px;
    justify-content: center;
  }

  .auth-card {
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .showcase-content-box {
    display: none !important;
  }

  .showcase-img-container {
    justify-content: center !important;
    align-items: center !important;
    min-height: 100vh !important;
    padding: 20px !important;
  }

  .showcase-auth-overlay {
    width: 100% !important;
    padding: 0 !important;
  }

  .auth-card {
    max-width: 100%;
    padding: 40px 24px;
    margin: 0;
    width: 100%;
  }
}

/* ─── MODERN LOGIN BAR ANIMATIONS & MICRO-INTERACTIONS ─── */
.animated-card {
  animation: cardGlassPop 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardGlassPop {
  0% {
    opacity: 0;
    transform: scale(0.94) translateY(18px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Staggered Element Cascade */
.anim-stagger-1,
.anim-stagger-2,
.anim-stagger-3,
.anim-stagger-4,
.anim-stagger-5,
.anim-stagger-6,
.anim-stagger-7,
.anim-stagger-8 {
  opacity: 0;
  animation: elemSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-stagger-1 { animation-delay: 0.1s; }
.anim-stagger-2 { animation-delay: 0.18s; }
.anim-stagger-3 { animation-delay: 0.24s; }
.anim-stagger-4 { animation-delay: 0.30s; }
.anim-stagger-5 { animation-delay: 0.36s; }
.anim-stagger-6 { animation-delay: 0.42s; }
.anim-stagger-7 { animation-delay: 0.48s; }
.anim-stagger-8 { animation-delay: 0.54s; }

@keyframes elemSlideUp {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Roof SVG Ambient Glow */
.animated-roof path {
  transition: stroke 0.3s ease;
  animation: roofPulse 4s infinite ease-in-out;
}

@keyframes roofPulse {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(255, 75, 75, 0.4)); }
  50% { filter: drop-shadow(0 0 8px rgba(255, 75, 75, 0.9)); }
}

/* CTA Arrow Micro Interaction */
.animated-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.cta-arrow {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.animated-cta:hover .cta-arrow {
  transform: translateX(6px);
}

/* ─── PREMIUM DASHBOARD UPGRADES (GLASSMORPHIC & APP-ALIGNED) ─── */
.dashboard-orbs-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.dashboard-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
}

.dashboard-orb-pink {
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: #ff2e93;
  animation: orbFloatingOne 12s infinite alternate ease-in-out;
}

.dashboard-orb-blue {
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: #00f2fe;
  animation: orbFloatingTwo 10s infinite alternate ease-in-out;
}

@keyframes orbFloatingOne {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.08); }
}

@keyframes orbFloatingTwo {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.12); }
}

.premium-dashboard-header {
  background: linear-gradient(135deg, rgba(255, 75, 75, 0.14) 0%, rgba(15, 20, 32, 0.45) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px 32px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  box-sizing: border-box;
}

.header-left-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4b4b, #e03838);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  flex-shrink: 0;
}

.header-avatar i {
  font-size: 20px;
}

.shimmer-gold-badge {
  background: linear-gradient(90deg, #ffd700, #ffa500, #ffd700);
  background-size: 200% auto;
  color: #1a1500;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  animation: goldShimmer 3s infinite linear;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.35);
}

@keyframes goldShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.notification-bell-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.notification-bell-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #ff4b4b;
  border-radius: 50%;
  border: 2px solid #0f1420;
}

.stat-card.premium-stat {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.host-advisor-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1.5px solid rgba(59, 130, 246, 0.18);
  border-radius: 22px;
  padding: 24px 28px;
  margin-bottom: 28px;
  position: relative;
  backdrop-filter: blur(12px);
  z-index: 2;
  box-sizing: border-box;
}

.host-advisor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.advisor-badge {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.advisor-tip-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advisor-tip-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 12px;
}

.advisor-tip-icon {
  color: #3b82f6;
  margin-top: 2px;
}

.pg-status-alert {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.pg-status-alert.invisible-alert {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.pg-status-alert.unverified-alert {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pg-status-alert.unverified-alert:hover {
  background: rgba(245, 158, 11, 0.14);
}

.pg-card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pg-action-btn {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  height: 36px;
  box-sizing: border-box;
}

.pg-action-btn.edit {
  background: var(--primary-color);
  border: 1px solid transparent;
  color: #fff;
}

.pg-action-btn.edit:hover {
  background: #e03838;
  transform: translateY(-1px);
}

.pg-action-btn.outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.pg-action-btn.outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-1px);
}

.pg-action-btn.gold {
  background: #ffd700;
  border: 1px solid transparent;
  color: #7a5c00;
}

.pg-action-btn.gold:hover {
  background: #ffa500;
  transform: translateY(-1px);
}

.live-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.switch-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.live-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.live-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-toggle {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: .4s;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.slider-toggle:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider-toggle {
  background-color: #10b981;
}

input:checked + .slider-toggle:before {
  transform: translateX(20px);
}

/* Premium Dialog Modal (Manage Offer) */
.premium-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  padding: 16px;
  box-sizing: border-box;
}

.premium-modal-content {
  background: rgba(15, 20, 32, 0.96);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  width: 100%;
  max-width: 500px;
  padding: 28px;
  box-sizing: border-box;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  animation: modalScaleUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes modalScaleUp {
  0% { opacity: 0; transform: scale(0.9) translateY(18px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.active-filter-chip {
  background: rgba(255, 75, 75, 0.16) !important;
  border-color: rgba(255, 75, 75, 0.45) !important;
  color: #ff4b4b !important;
  box-shadow: 0 0 12px rgba(255, 75, 75, 0.15) !important;
}

/* ─── ADD PG WIZARD, LEAFLET MAP & PHOTO PREVIEWS ─── */
.wizard-section-card {
  background: rgba(15, 20, 32, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.wizard-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wizard-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .wizard-form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.leaflet-map-box {
  height: 270px;
  width: 100%;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Pricing Cards (match app's toggle-to-enable room type cards) */
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.pricing-card-active {
  background: rgba(255, 75, 75, 0.06);
  border-color: #ff4b4b;
  border-width: 2px;
}

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

.pricing-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #cbd5e1;
}

.pricing-card-active .pricing-card-label {
  color: #fff;
}

.pricing-card-label i {
  font-size: 18px;
  color: #64748b;
  width: 24px;
  text-align: center;
}

.pricing-card-active .pricing-card-label i {
  color: #ff4b4b;
}

/* Pricing Toggle Switch */
.pricing-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.pricing-toggle input {
  display: none;
}

.pricing-toggle-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.pricing-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #64748b;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.pricing-toggle input:checked + .pricing-toggle-slider {
  background: rgba(255, 75, 75, 0.3);
}

.pricing-toggle input:checked + .pricing-toggle-slider::before {
  transform: translateX(20px);
  background: #ff4b4b;
}

/* Pricing Fields (revealed on toggle) */
.pricing-card-fields {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: pricingReveal 0.3s ease;
}

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

.pricing-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pricing-field label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.pricing-input-wrap {
  position: relative;
}

.pricing-input-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff4b4b;
  font-size: 13px;
}

.pricing-input-wrap .form-control {
  padding-left: 34px;
}

.rule-toggle-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  transition: all 0.25s ease;
}

.rule-toggle-box input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.rule-toggle-slider {
  width: 36px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.rule-toggle-slider:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.rule-toggle-box input:checked + .rule-toggle-slider {
  background: #10b981;
}

.rule-toggle-box input:checked + .rule-toggle-slider:before {
  transform: translateX(16px);
}

.amenities-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
  gap: 10px;
}

.photo-dropzone-box {
  border: 2px dashed rgba(255, 75, 75, 0.35);
  background: rgba(255, 75, 75, 0.03);
  border-radius: 18px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-dropzone-box:hover {
  border-color: #ff4b4b;
  background: rgba(255, 75, 75, 0.06);
}

.photo-previews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}

.photo-preview-card {
  position: relative;
  width: 100%;
  height: 95px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.photo-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-preview-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.78);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.photo-preview-remove:hover {
  background: #ef4444;
  color: white;
  transform: scale(1.1);
}

.photo-remove-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.78);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.photo-remove-btn:hover {
  background: #ef4444;
  color: white;
  transform: scale(1.1);
}

/* Wizard specific styles */
.wizard-step-content { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* App-like PG Card Preview Styles */
.app-pg-card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  font-family: 'Manrope', sans-serif;
  background: #1e293b;
}
.app-pg-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
}
.app-pg-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-pg-card-gender {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
}
.app-pg-card-content {
  padding: 16px;
}
.app-pg-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.app-pg-card-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.app-pg-card-locality {
  font-size: 13px;
  color: #94a3b8;
  margin: 4px 0 12px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.app-pg-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}
.app-pg-card-price {
  font-size: 20px;
  font-weight: 800;
  color: #10b981;
}
.app-pg-card-price span {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}
.app-pg-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
}
.app-pg-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.app-pg-card-amenity {
  padding: 6px 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  font-size: 11px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 6px;
}
/* --- PREMIUM DASHBOARD OVERVIEW HOME SCREEN STYLES & ANIMATIONS --- */
.bento-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 24px;
  animation: dashFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dashFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-glass-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.5));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-glass-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Radiant Background Glow */
.premium-glass-card::before {
  content: '';
  position: absolute;
  top: -60%; left: -60%;
  width: 220%; height: 220%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.premium-glass-card > * {
  position: relative;
  z-index: 1;
}

/* Header Redesign */
.dash-header-super {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 8px;
}

.dash-welcome-text {
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 6px 0;
  letter-spacing: -0.5px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.dash-welcome-sub {
  color: #94a3b8;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.2px;
}

/* Stat Cards */
.bento-stat-card {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

@media(min-width: 1024px) {
  .bento-stat-card {
    grid-column: span 3;
  }
}

.bento-stat-card:hover.bento-stat-card {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(59, 130, 246, 0.15);
}

.bento-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.bento-stat-title {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.bento-stat-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.bento-stat-card:hover .bento-stat-icon-wrapper {
  transform: scale(1.1) rotate(4deg);
}

.bento-icon-blue { 
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.1) 100%); 
  color: #60a5fa; 
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.bento-icon-gold { 
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(217, 119, 6, 0.1) 100%); 
  color: #fbbf24; 
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.bento-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* VIP Subscription Card */
.bento-vip-card {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, rgba(20, 27, 45, 0.95), rgba(38, 28, 14, 0.85));
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(245, 158, 11, 0.2);
}

@media(min-width: 1024px) {
  .bento-vip-card {
    grid-column: span 6;
  }
}

.bento-vip-card:hover {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.65), 0 0 30px rgba(245, 158, 11, 0.2);
}

.bento-vip-card::after {
  content: '';
  position: absolute;
  top: -20%; right: -20%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, transparent 70%);
  pointer-events: none;
  animation: vipPulse 4s ease-in-out infinite alternate;
}

@keyframes vipPulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}

.vip-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.vip-title-row i.fa-crown {
  color: #f59e0b;
  font-size: 26px;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.6));
  animation: crownFloat 3s ease-in-out infinite alternate;
}

@keyframes crownFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-3px); }
}

.vip-title-row h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  color: #fff;
  margin: 0;
  font-weight: 800;
}

.vip-badge-shimmer {
  background: linear-gradient(90deg, #f59e0b 0%, #ffffff 50%, #f59e0b 100%);
  background-size: 200% auto;
  color: #000;
  padding: 5px 14px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

/* --- OVERALL OWNER WEB PORTAL MASTERCLASS STYLES --- */

.dashboard-layout {
  margin-top: 0 !important;
  min-height: 100vh !important;
}

/* 1. Global Page Background & Atmospheric Glowing Blobs */
body.owner-portal-body {
  background-color: #080b11 !important;
  color: #f8fafc !important;
  font-family: 'Plus Jakarta Sans', 'Outfit', 'Inter', system-ui, -apple-system, sans-serif !important;
  overflow-x: hidden;
}

body.owner-portal-body h1,
body.owner-portal-body h2,
body.owner-portal-body h3,
body.owner-portal-body h4,
body.owner-portal-body h5,
body.owner-portal-body h6,
body.owner-portal-body .dash-welcome-text,
body.owner-portal-body .sidebar-brand span,
body.owner-portal-body .bento-stat-value,
body.owner-portal-body .bento-stat-title {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif !important;
}

.portal-blob-1 {
  background: radial-gradient(circle, rgba(255, 75, 75, 0.18) 0%, transparent 70%) !important;
  animation: blobDrift 12s ease-in-out infinite alternate !important;
}

.portal-blob-2 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%) !important;
  animation: blobDrift 16s ease-in-out infinite alternate-reverse !important;
}

@keyframes blobDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -50px) scale(1.15); }
}

/* 2. Glass Panels & Card Elevation */
.glass-panel {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(26, 36, 56, 0.48)) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* 3. Dashboard Sidebar & Navigation */
.dashboard-sidebar {
  background: rgba(11, 15, 23, 0.94) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 24px 18px !important;
}

.sidebar-nav-btn {
  border-radius: 16px !important;
  padding: 13px 18px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #94a3b8 !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  transition: all 0.25s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.sidebar-nav-btn:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.05) !important;
  transform: translateX(3px) !important;
}

.sidebar-nav-btn.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(255, 75, 75, 0.22) 0%, rgba(255, 75, 75, 0.08) 100%) !important;
  border: 1px solid rgba(255, 75, 75, 0.35) !important;
  box-shadow: 0 6px 20px rgba(255, 75, 75, 0.2) !important;
}

.sidebar-nav-btn.active i {
  color: #ff4b4b !important;
  filter: drop-shadow(0 0 8px rgba(255, 75, 75, 0.6)) !important;
}

/* Animated Logout Button */
.animated-logout-btn {
  border-radius: 16px !important;
  background: rgba(239, 68, 68, 0.12) !important;
  border: 1px solid rgba(239, 68, 68, 0.25) !important;
  color: #f87171 !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}

.animated-logout-btn:hover {
  background: rgba(239, 68, 68, 0.25) !important;
  border-color: rgba(239, 68, 68, 0.5) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3) !important;
}

/* 4. Form Controls, Inputs & Selects */
.form-control, 
input[type="text"], 
input[type="email"], 
input[type="password"], 
input[type="number"], 
input[type="tel"], 
select, 
textarea {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px !important;
  color: #ffffff !important;
  padding: 13px 18px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.form-control:focus, 
input:focus, 
select:focus, 
textarea:focus {
  outline: none !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: #ff4b4b !important;
  box-shadow: 0 0 20px rgba(255, 75, 75, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* 5. My Properties PG Cards & Filter Chips */
.pg-card-item {
  border-radius: 24px !important;
  overflow: hidden !important;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.pg-card-item:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(255, 75, 75, 0.35) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 75, 75, 0.15) !important;
}

.pg-card-thumb {
  transition: transform 0.5s ease !important;
}

.pg-card-item:hover .pg-card-thumb {
  transform: scale(1.06) !important;
}

/* Action Buttons inside PG Cards */
.pg-action-btn {
  border-radius: 12px !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  transition: all 0.25s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}

.pg-action-btn.edit {
  background: rgba(59, 130, 246, 0.15) !important;
  border: 1px solid rgba(59, 130, 246, 0.3) !important;
  color: #60a5fa !important;
}

.pg-action-btn.edit:hover {
  background: rgba(59, 130, 246, 0.3) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3) !important;
}

.pg-action-btn.outline {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #cbd5e1 !important;
}

.pg-action-btn.outline:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.pg-action-btn.gold {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  border: none !important;
  color: #000000 !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4) !important;
}

.pg-action-btn.gold:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6) !important;
}

/* Filter Chips */
.active-filter-chip {
  background: linear-gradient(135deg, #ff4b4b 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(255, 75, 75, 0.4) !important;
}

/* 6. Primary Action Buttons Global Sheen */
.btn-primary-action {
  background: linear-gradient(135deg, #ff4b4b 0%, #e03838 100%) !important;
  border: none !important;
  border-radius: 16px !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 8px 25px rgba(255, 75, 75, 0.35) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative !important;
  overflow: hidden !important;
}

.btn-primary-action:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 14px 35px rgba(255, 75, 75, 0.55) !important;
}

.btn-primary-action::after {
  content: '' !important;
  position: absolute !important;
  top: -50% !important; left: -50% !important;
  width: 200% !important; height: 200% !important;
  background: linear-gradient(60deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%) !important;
  transform: rotate(30deg) !important;
  transition: all 0.6s ease !important;
  opacity: 0 !important;
}

.btn-primary-action:hover::after {
  opacity: 1 !important;
  left: 100% !important;
}

/* 7. Subscriptions Plan Cards */
.subscription-plan-card {
  border-radius: 24px !important;
  transition: all 0.35s ease !important;
}

/* Theme Toggle Button Styling */
.theme-toggle-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #f59e0b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  flex-shrink: 0 !important;
}

.theme-toggle-btn:hover {
  transform: scale(1.08) rotate(15deg) !important;
  background: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3) !important;
}

/* ─── COMPLETE ATTRACTIVE LIGHT THEME OVERRIDES ─── */
body.owner-portal-body.theme-light,
body.owner-portal-body.theme-light #view-dashboard,
body.owner-portal-body.theme-light .dashboard-layout,
body.owner-portal-body.theme-light .dashboard-content {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%) !important;
  color: #0f172a !important;
}

body.owner-portal-body.theme-light .portal-blob-1 {
  background: radial-gradient(circle, rgba(255, 75, 75, 0.08) 0%, transparent 70%) !important;
}

body.owner-portal-body.theme-light .portal-blob-2 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%) !important;
}

/* Sidebar Light Mode */
body.owner-portal-body.theme-light .dashboard-sidebar {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-right: 1px solid rgba(203, 213, 225, 0.8) !important;
  box-shadow: 4px 0 25px rgba(15, 23, 42, 0.04) !important;
}

body.owner-portal-body.theme-light .sidebar-nav-btn {
  color: #475569 !important;
  font-weight: 600 !important;
}

body.owner-portal-body.theme-light .sidebar-nav-btn:hover {
  background: rgba(241, 245, 249, 0.9) !important;
  color: #0f172a !important;
}

body.owner-portal-body.theme-light .sidebar-nav-btn.active {
  background: linear-gradient(135deg, #ff4b4b 0%, #e03838 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 8px 22px rgba(255, 75, 75, 0.3) !important;
}

body.owner-portal-body.theme-light .sidebar-nav-btn.active i {
  color: #ffffff !important;
  filter: none !important;
}

/* Glass Panels & Bento Cards in Light Mode */
body.owner-portal-body.theme-light .glass-panel,
body.owner-portal-body.theme-light .premium-glass-card,
body.owner-portal-body.theme-light .pg-card-item {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(203, 213, 225, 0.8) !important;
  border-radius: 26px !important;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

body.owner-portal-body.theme-light .glass-panel:hover,
body.owner-portal-body.theme-light .premium-glass-card:hover,
body.owner-portal-body.theme-light .pg-card-item:hover {
  border-color: rgba(255, 75, 75, 0.35) !important;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  transform: translateY(-5px) !important;
}

/* Typography & Headings Light Mode */
body.owner-portal-body.theme-light .dash-welcome-text,
body.owner-portal-body.theme-light h1,
body.owner-portal-body.theme-light h2,
body.owner-portal-body.theme-light h3,
body.owner-portal-body.theme-light h4,
body.owner-portal-body.theme-light .pg-card-body h3,
body.owner-portal-body.theme-light #dash-owner-name {
  color: #0f172a !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

body.owner-portal-body.theme-light .dash-welcome-sub,
body.owner-portal-body.theme-light .bento-stat-title,
body.owner-portal-body.theme-light p,
body.owner-portal-body.theme-light span {
  color: #475569 !important;
}

body.owner-portal-body.theme-light .bento-stat-value {
  color: #0f172a !important;
  text-shadow: none !important;
}

/* PG Card Body Elements Light Mode */
body.owner-portal-body.theme-light .pg-card-body {
  background: #ffffff !important;
  color: #0f172a !important;
}

body.owner-portal-body.theme-light .pg-card-body span[style*="color:#ffffff"],
body.owner-portal-body.theme-light .pg-card-body span[style*="color: #ffffff"] {
  color: #0f172a !important;
}

body.owner-portal-body.theme-light .pg-card-actions .pg-action-btn.edit {
  background: rgba(37, 99, 235, 0.1) !important;
  border: 1px solid rgba(37, 99, 235, 0.25) !important;
  color: #2563eb !important;
}

body.owner-portal-body.theme-light .pg-card-actions .pg-action-btn.edit:hover {
  background: #2563eb !important;
  color: #ffffff !important;
}

body.owner-portal-body.theme-light .pg-card-actions .pg-action-btn.outline {
  background: rgba(15, 23, 42, 0.05) !important;
  border: 1px solid rgba(15, 23, 42, 0.15) !important;
  color: #334155 !important;
}

body.owner-portal-body.theme-light .pg-card-actions .pg-action-btn.outline:hover {
  background: #0f172a !important;
  color: #ffffff !important;
}

/* Filter Chips Light Mode */
body.owner-portal-body.theme-light [id^="filter-chip-"] {
  background: #ffffff !important;
  color: #475569 !important;
  border: 1px solid #cbd5e1 !important;
}

body.owner-portal-body.theme-light [id^="filter-chip-"]:hover {
  background: #f1f5f9 !important;
  color: #0f172a !important;
}

body.owner-portal-body.theme-light [id^="filter-chip-"].active-filter-chip {
  background: linear-gradient(135deg, #ff4b4b 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(255, 75, 75, 0.35) !important;
}

/* Stat Icons Light Mode */
body.owner-portal-body.theme-light .bento-icon-blue {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%) !important;
  color: #0284c7 !important;
  border: 1px solid #7dd3fc !important;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.15) !important;
}

body.owner-portal-body.theme-light .bento-icon-gold {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
  color: #d97706 !important;
  border: 1px solid #fcd34d !important;
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.15) !important;
}

/* VIP Card Light Mode */
body.owner-portal-body.theme-light .bento-vip-card {
  background: linear-gradient(145deg, #fffcf5 0%, #fef3c7 100%) !important;
  border: 1.5px solid rgba(245, 158, 11, 0.35) !important;
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.12) !important;
}

body.owner-portal-body.theme-light .bento-vip-card .vip-title-row h3 {
  color: #1e293b !important;
}

body.owner-portal-body.theme-light .bento-vip-card .vip-desc {
  color: #475569 !important;
}

body.owner-portal-body.theme-light .btn-vip-manage-sub {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  border: 1px solid #d97706 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35) !important;
  font-weight: 700 !important;
}

body.owner-portal-body.theme-light .btn-vip-manage-sub:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.45) !important;
  color: #ffffff !important;
}

/* Inputs & Form Controls Light Mode */
body.owner-portal-body.theme-light .form-control,
body.owner-portal-body.theme-light input[type="text"],
body.owner-portal-body.theme-light input[type="email"],
body.owner-portal-body.theme-light input[type="password"],
body.owner-portal-body.theme-light input[type="number"],
body.owner-portal-body.theme-light input[type="tel"],
body.owner-portal-body.theme-light select,
body.owner-portal-body.theme-light textarea {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

body.owner-portal-body.theme-light .form-control:focus,
body.owner-portal-body.theme-light input:focus,
body.owner-portal-body.theme-light select:focus,
body.owner-portal-body.theme-light textarea:focus {
  background: #ffffff !important;
  border-color: #ff4b4b !important;
  box-shadow: 0 0 15px rgba(255, 75, 75, 0.2) !important;
}

/* Theme Toggle Button Light Mode Styling */
body.owner-portal-body.theme-light .theme-toggle-btn {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
  border: 1px solid #bfdbfe !important;
  color: #2563eb !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15) !important;
}

/* ─── FORCE HIGH-CONTRAST DARK TEXT EVERYWHERE IN LIGHT MODE ─── */
body.owner-portal-body.theme-light h1,
body.owner-portal-body.theme-light h2,
body.owner-portal-body.theme-light h3,
body.owner-portal-body.theme-light h4,
body.owner-portal-body.theme-light h5,
body.owner-portal-body.theme-light h6,
body.owner-portal-body.theme-light strong,
body.owner-portal-body.theme-light b,
body.owner-portal-body.theme-light label,
body.owner-portal-body.theme-light .bento-stat-value,
body.owner-portal-body.theme-light .dash-welcome-text,
body.owner-portal-body.theme-light #dash-owner-name {
  color: #0f172a !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

body.owner-portal-body.theme-light p,
body.owner-portal-body.theme-light span,
body.owner-portal-body.theme-light div,
body.owner-portal-body.theme-light li,
body.owner-portal-body.theme-light td,
body.owner-portal-body.theme-light th {
  color: #334155;
}

/* Inline style override for white text in Light Mode */
body.owner-portal-body.theme-light [style*="color:#fff"],
body.owner-portal-body.theme-light [style*="color: #fff"],
body.owner-portal-body.theme-light [style*="color:#ffffff"],
body.owner-portal-body.theme-light [style*="color: #ffffff"],
body.owner-portal-body.theme-light [style*="color:var(--text-muted)"],
body.owner-portal-body.theme-light [style*="color: var(--text-muted)"] {
  color: #1e293b !important;
}

/* ─── AIRBNB-STYLE LIGHT MODE HAMBURGER MENU & MEGA PANEL ─── */
body.owner-portal-body.theme-light .hamburger-btn {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12) !important;
}

body.owner-portal-body.theme-light .hamburger-btn:hover {
  background: #ffffff !important;
  border-color: #94a3b8 !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.18) !important;
  transform: scale(1.05) !important;
}

body.owner-portal-body.theme-light .ham-line {
  background: #0f172a !important;
}

body.owner-portal-body.theme-light .mega-menu-panel {
  background: #ffffff !important;
  border-right: 1px solid #e2e8f0 !important;
  box-shadow: 12px 0 40px rgba(15, 23, 42, 0.12) !important;
}

body.owner-portal-body.theme-light .mega-panel-brand span {
  color: #0f172a !important;
}

body.owner-portal-body.theme-light .mega-close-btn {
  background: #f1f5f9 !important;
  color: #0f172a !important;
  border: 1px solid #cbd5e1 !important;
}

body.owner-portal-body.theme-light .mega-close-btn:hover {
  background: #ff4b4b !important;
  color: #ffffff !important;
}

body.owner-portal-body.theme-light .mega-menu-item {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}

body.owner-portal-body.theme-light .mega-menu-item:hover {
  background: rgba(255, 75, 75, 0.06) !important;
  border-color: rgba(255, 75, 75, 0.3) !important;
  transform: translateX(4px) !important;
}

body.owner-portal-body.theme-light .mega-item-text .title {
  color: #0f172a !important;
}

body.owner-portal-body.theme-light .mega-item-text .desc {
  color: #64748b !important;
}

body.owner-portal-body.theme-light .arrow-icon {
  color: #94a3b8 !important;
}

/* Preserve bright white text ONLY on primary accent buttons and badges */
body.owner-portal-body.theme-light .btn-primary-action,
body.owner-portal-body.theme-light .btn-primary-action *,
body.owner-portal-body.theme-light .sidebar-nav-btn.active,
body.owner-portal-body.theme-light .sidebar-nav-btn.active *,
body.owner-portal-body.theme-light .active-filter-chip,
body.owner-portal-body.theme-light .active-filter-chip * {
  color: #ffffff !important;
}

/* ─── PG PREVIEW MODAL SCROLLABILITY FIX ─── */
#modal-pg-preview {
  overflow-y: auto !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px 16px !important;
}

#pg-preview-scroll-body {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
}

#pg-preview-scroll-body::-webkit-scrollbar {
  width: 6px;
}

#pg-preview-scroll-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

#pg-preview-scroll-body::-webkit-scrollbar-thumb {
  background: rgba(255, 75, 75, 0.5);
  border-radius: 10px;
}

/* =========================================================================
   MOBILE RESPONSIVENESS (Dashboard & Auth Modal Fixes)
   ========================================================================= */
@media (max-width: 768px) {
  /* --- 1. MODERN BOTTOM TRAY NAVIGATION --- */
  .dashboard-sidebar {
    display: contents !important;
  }

  /* Header area: Theme toggle and Avatar aligned to the Top Right */
  .dashboard-sidebar > div:first-child {
    display: flex !important;
    flex-direction: row-reverse !important; /* Theme toggle left of Avatar */
    justify-content: flex-start !important; /* Start from right since it's row-reverse */
    align-items: center !important;
    padding: 16px 20px 10px 72px !important; /* Keep left padding for hamburger */
    gap: 16px !important;
    background: transparent !important;
    border: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 10 !important;
  }

  /* Hide the owner name and plan text on mobile so only the profile picture (avatar) shows */
  .dashboard-sidebar > div:first-child > div > div:nth-child(2) {
    display: none !important;
  }

  /* Navigation tabs are hidden on mobile (moved to Mega Menu per user request) */
  .dashboard-sidebar nav {
    display: none !important;
  }
  
  /* Show the mobile dashboard nav inside the hamburger mega menu */
  .mobile-only-dash-nav {
    display: block !important;
  }
  
  /* Compact logout button pinned to Bottom Right floating above the tray */
  .sidebar-logout-footer {
    position: fixed !important;
    bottom: 24px !important;
    right: 12px !important;
    z-index: 1001 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .animated-logout-btn {
    padding: 0 !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 75, 75, 0.15) !important;
    border: 1px solid rgba(255, 75, 75, 0.3) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4) !important;
  }
  .animated-logout-btn span {
    display: none !important; /* Hide text, icon only */
  }
  .logout-icon-wrapper {
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .logout-icon-wrapper i {
    font-size: 16px !important;
    color: #ff4b4b !important;
    margin: 0 !important;
  }
  
  /* Prevent content hiding behind bottom tray */
  .dashboard-content {
    padding-bottom: 90px !important;
  }
  
  .bento-vip-card {
    padding: 20px !important;
  }
  .vip-title-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  
  .modal-content, .auth-container {
    width: 95% !important;
    max-width: 100% !important;
    margin: 10px auto !important;
    box-sizing: border-box !important;
  }
  
  .bento-dashboard-grid {
    gap: 16px !important;
    padding: 0 10px !important;
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  .dash-welcome-text {
    font-size: 26px !important;
  }
}

/* =========================================================================
   GOLD PASS BANNER RESPONSIVE STYLES
   ========================================================================= */
.gold-pass-banner {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(22, 22, 42, 0.95), rgba(15, 15, 28, 0.98));
  margin-top: 6px;
}
.gold-pass-banner-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 185px;
}

.gold-pass-content {
  padding: 24px 30px;
  flex: 1;
  min-width: 300px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gold-pass-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  color: #f59e0b;
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 10px;
  width: fit-content;
}

.gold-pass-title {
  font-family: 'Outfit', sans-serif;
  font-size: 21px;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.3;
  font-weight: 800;
}

.gold-text {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-pass-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 16px 0;
  max-width: 540px;
}

.gold-pass-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.gold-pass-visual {
  position: relative;
  width: 290px;
  min-height: 185px;
  overflow: hidden;
  flex-shrink: 0;
  border: none;
  outline: none;
}

.gold-pass-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border: none;
  outline: none;
}

.gold-pass-gradient-overlay {
  position: absolute;
  top: -2px;
  left: -6px;
  bottom: -2px;
  width: calc(100% + 8px);
  background: linear-gradient(90deg, rgba(22,22,42,1) 0%, rgba(22,22,42,0.95) 15%, rgba(22,22,42,0.35) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* MOBILE FIX FOR GOLD PASS BANNER */
@media (max-width: 768px) {
  .gold-pass-banner-inner {
    flex-direction: column !important;
  }
  .gold-pass-content {
    min-width: 100% !important;
    padding: 24px 20px !important;
  }
  .gold-pass-visual {
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
  }
  .gold-pass-gradient-overlay {
    /* Change gradient to fade from top-to-bottom instead of left-to-right */
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    width: 100% !important;
    height: calc(100% + 4px) !important;
    background: linear-gradient(180deg, rgba(22,22,42,1) 0%, rgba(22,22,42,0.95) 5%, rgba(22,22,42,0.15) 30%, transparent 100%) !important;
  }
}