/* PAW Design System - App-Style Layout with Narrow Sidebar */
@import url('https://fonts.googleapis.com/css2?family=Syne+Mono:wght@400;600;700&display=swap');

/* Global Font Application */
* {
  font-family: 'Syne Mono', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace !important;
}

body {
  font-family: 'Syne Mono', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace !important;
  background: var(--paw-light);
  color: var(--paw-accent);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne Mono', monospace !important;
  font-weight: 600;
  color: var(--paw-accent);
}

/* Button Styling */
.btn {
  font-family: 'Syne Mono', monospace !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--paw-primary);
  border: none;
  color: white; background: rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: var(--paw-primary-dark);
  transform: translateY(-1px);
}

/* NARROW SIDEBAR DESIGN - Fixed Push Behavior */
.paw-facility-nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 80px;
  background: var(--paw-primary);
  z-index: 1001;
  overflow: hidden;
  transition: width 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.paw-facility-nav:hover {
  width: 240px;
}

.paw-facility-nav-content {
  padding: 1rem 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.paw-facility-nav-header {
  padding: 0 1rem;
  margin-bottom: 2rem;
  white-space: nowrap;
  overflow: hidden;
}

.paw-facility-nav-title {
  display: flex;
  align-items: center;
  color: white; background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 0.9rem;
}

.paw-logo {
  width: 32px;
  height: 32px;
  margin-right: 0.75rem;
  border-radius: 4px;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* CRITICAL: Responsive logo sizing for narrow sidebar */
.paw-facility-nav .paw-logo {
  width: 28px;
  height: 28px;
}

.paw-facility-nav:hover .paw-logo {
  width: 32px;
  height: 32px;
}

.paw-facility-nav-user {
  color: var(--paw-text-muted);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.paw-facility-nav:hover .paw-facility-nav-user {
  opacity: 1;
}

/* Navigation Menu */
.paw-facility-nav-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.paw-facility-nav-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0.25rem 0.5rem;
  border-radius: 8px;
  white-space: nowrap;
  overflow: hidden;
  background: transparent;
  position: relative;
}

.paw-facility-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
}

.paw-facility-nav-item.active {
  background: var(--paw-secondary);
  color: var(--paw-accent);
}

.paw-facility-nav-item i {
  width: 20px;
  text-align: center;
  margin-right: 0.75rem;
  font-size: 1rem;
}

.paw-facility-nav-item svg {
  width: 1rem !important;
  height: 1rem !important;
  stroke: currentColor !important;
  max-width: 16px !important;
  max-height: 16px !important;
}

.paw-facility-nav-item span {
  opacity: 0;
  transition: all 0.3s ease;
}

/* CRITICAL: Show icons in minimized sidebar */
.paw-facility-nav-item i,
.paw-facility-nav-item svg {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.paw-facility-nav:hover .paw-facility-nav-item span {
  opacity: 1;
}

/* CRITICAL: Ensure icons remain visible during hover expansion */
.paw-facility-nav:hover .paw-facility-nav-item i,
.paw-facility-nav:hover .paw-facility-nav-item svg {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Navigation Divider */
.paw-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 1rem 0.5rem;
}

/* Main Content Area - Fixed Push Behavior */
.paw-main-content {
  margin-left: 80px;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
  padding: 0 !important;
}

/* Global page wrapper to prevent collision - Fixed Push Behavior */
.paw-page-wrapper,
.paw-page-with-nav {
  margin-left: 80px;
  width: calc(100vw - 80px);
  min-height: 100vh;
  transition: margin-left 0.3s ease, width 0.3s ease;
}

/* Sidebar hover effect - Push content to the right - Enhanced Implementation */
.paw-facility-nav.expanded ~ .paw-page-wrapper,
.paw-facility-nav.expanded ~ .paw-page-with-nav,
.paw-facility-nav.expanded ~ .paw-main-content,
body:has(.paw-facility-nav.expanded) .paw-page-wrapper,
body:has(.paw-facility-nav.expanded) .paw-page-with-nav,
body:has(.paw-facility-nav.expanded) .paw-main-content {
  margin-left: 240px !important;
  width: calc(100vw - 240px) !important;
  transition: margin-left 0.3s ease, width 0.3s ease !important;
}

@media (max-width: 768px) {
  .paw-page-wrapper,
  .paw-page-with-nav {
    margin-left: 0 !important;
    width: 100vw !important;
  }
  
  /* Disable sidebar hover push on mobile */
  .paw-facility-nav.expanded ~ .paw-page-wrapper,
  .paw-facility-nav.expanded ~ .paw-page-with-nav,
  .paw-facility-nav.expanded ~ .paw-main-content {
    margin-left: 0 !important;
    width: 100vw !important;
  }
}

/* Hero Section */
.paw-hero {
  background: linear-gradient(135deg, var(--paw-primary) 0%, var(--paw-primary-dark) 100%);
  color: white; background: rgba(255, 255, 255, 0.1);
  padding: 4rem 0;
  text-align: center;
}

.paw-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white; background: rgba(255, 255, 255, 0.1);
}

.paw-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Content Sections */
.paw-section {
  padding: 4rem 0;
}

.paw-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

/* Feature Cards */
.paw-feature-card {
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.paw-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.paw-feature-card i {
  font-size: 3rem;
  color: var(--paw-primary);
  margin-bottom: 1.5rem;
}

.paw-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.paw-feature-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Pricing Cards */
.paw-pricing-card {
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.paw-pricing-card.featured {
  border-color: var(--paw-primary);
  transform: scale(1.05);
}

.paw-pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.paw-pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--paw-primary);
  margin-bottom: 2rem;
}

.paw-pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.paw-pricing-card li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.paw-pricing-card li:before {
  content: "✓";
  color: var(--paw-primary);
  margin-right: 0.5rem;
  font-weight: bold;
}

/* Mobile Navigation - Bottom Bar */
@media (max-width: 768px) {
  .paw-facility-nav {
    display: none;
  }
  
  .paw-main-content {
    margin-left: 0;
    padding-bottom: 80px;
  }
}

/* Mobile Bottom Navigation Enhancements */
.paw-mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--paw-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.paw-mobile-nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.6rem 0.4rem;
  max-width: 100%;
}

.paw-mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.4rem 0.3rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 50px;
  text-align: center;
  background: transparent;
  position: relative;
}

.paw-mobile-nav-item:hover,
.paw-mobile-nav-item.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.paw-mobile-nav-icon {
  margin-bottom: 0.25rem;
}

/* MOBILE ICON SIZE FIX - Aggressive Override */
.paw-mobile-nav-icon svg,
.paw-mobile-nav-item svg,
.paw-mobile-nav .svg,
.paw-mobile-nav svg {
  width: 1rem !important;
  height: 1rem !important;
  stroke: currentColor !important;
  max-width: 16px !important;
  max-height: 16px !important;
}

/* CRITICAL: Ensure mobile bottom nav icons are properly sized */
.paw-mobile-bottom-nav svg,
.paw-mobile-bottom-nav .paw-mobile-nav-icon svg {
  width: 1rem !important;
  height: 1rem !important;
  max-width: 16px !important;
  max-height: 16px !important;
}

.paw-mobile-nav-label {
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.9;
}

/* Mobile Dropdown Menus - Clean Design */
.mobile-business-dropdown-unique,
.mobile-profile-dropdown-unique {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paw-primary);
  border-radius: 8px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.mobile-business-dropdown-unique.show,
.mobile-profile-dropdown-unique.show {
  opacity: 1;
  visibility: visible;
}

.mobile-business-dropdown-unique a,
.mobile-profile-dropdown-unique a {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 6px;
  margin: 0.25rem;
  transition: background 0.2s ease;
}

/* CRITICAL: Mobile dropdown icon sizing fix */
.mobile-business-dropdown-unique a svg,
.mobile-profile-dropdown-unique a svg,
.mobile-business-dropdown-unique svg,
.mobile-profile-dropdown-unique svg {
  width: 0.875rem !important;
  height: 0.875rem !important;
  max-width: 14px !important;
  max-height: 14px !important;
  margin-right: 0.5rem !important;
}

.mobile-business-dropdown-unique a:hover,
.mobile-profile-dropdown-unique a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* HETRI.ORG STYLE LAYOUT - PHASE 5 */
/* Hero Section - Matching hetri.org */
.hetri-hero-section {
  background: linear-gradient(135deg, var(--paw-primary) 0%, #6b8e7a 100%);
  color: white;
  padding: 4rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hetri-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hetri-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hetri-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hetri-brand-highlight {
  color: var(--paw-secondary);
}

.hetri-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Content Sections */
.hetri-content-section {
  padding: 4rem 0;
}

.hetri-light-bg {
  background: var(--paw-secondary);
  color: #2c3e50;
}

.hetri-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.hetri-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
}

.hetri-section-subtitle {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.8;
}

/* Features Grid */
.hetri-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.hetri-feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
.hetri-feature-item:hover {
  transform: translateY(-4px);
}

.hetri-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--paw-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hetri-feature-icon svg {
  width: 24px;
  height: 24px;
}

.hetri-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.hetri-feature-description {
  color: #6b7280;
  line-height: 1.5;
}

/* CTA Section */
.hetri-cta-section {
  text-align: center;
}

.hetri-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--paw-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--paw-primary);
}

.hetri-btn-primary:hover {
  background: transparent;
  color: var(--paw-primary);
  text-decoration: none;
}

/* Responsive Design - Hetri.org Patterns */
@media (max-width: 768px) {
  .paw-hero-content h1 {
    font-size: 2rem;
  }
  
  .paw-section-header h2 {
    font-size: 2rem;
  }
  
  .paw-platform-grid {
    grid-template-columns: 1fr;
  }

  .paw-platform-features {
    grid-template-columns: 1fr;
  }

  .paw-guest-container {
    padding: 0 1rem;
  }

  .paw-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .paw-btn-primary, .paw-btn-secondary {
    width: 100%;
    max-width: 300px;
    margin-bottom: 0.5rem;
  }

  /* Signup Page Mobile Responsiveness */
  .paw-signup-container {
    margin-left: 0 !important;
    padding: 1rem;
  }

  /* Login Page Mobile Responsiveness */
  .paw-login-container {
    margin-left: 0 !important;
    padding: 1rem;
  }

  .signup-content.page-card {
    padding: 1.5rem;
    max-width: 100%;
  }

  .login-content.page-card {
    padding: 1.5rem;
    max-width: 100%;
  }

  .page-card-head .brand img {
    max-width: 100px;
  }
}

/* Sidebar Push Logic - Enhanced Implementation */
.paw-facility-nav.expanded ~ .paw-signup-container,
.paw-facility-nav.expanded ~ .paw-page-wrapper .paw-signup-container,
body:has(.paw-facility-nav.expanded) .paw-signup-container {
  margin-left: 240px !important;
  width: calc(100vw - 240px) !important;
  transition: margin-left 0.3s ease, width 0.3s ease !important;
}

.paw-facility-nav.expanded ~ .paw-login-container,
.paw-facility-nav.expanded ~ .paw-page-wrapper .paw-login-container,
body:has(.paw-facility-nav.expanded) .paw-login-container {
  margin-left: 240px !important;
  width: calc(100vw - 240px) !important;
  transition: margin-left 0.3s ease, width 0.3s ease !important;
}

/* Ensure signup content respects sidebar */
.paw-signup-container {
  margin-left: var(--paw-sidebar-width, 80px);
  transition: margin-left 0.3s ease;
}

/* Desktop: Push signup content when sidebar expands */
@media (min-width: 769px) {
  .paw-facility-nav.expanded ~ .paw-signup-container {
    margin-left: 240px !important;
  }
  
  .paw-facility-nav.expanded ~ .paw-login-container {
    margin-left: 240px !important;
  }
}

/* HETRI.ORG DESIGN PATTERNS - Applied to PAW Classes */

/* Hero Section - Hetri.org Design Pattern */
.paw-guest-hero {
  background: linear-gradient(135deg, var(--paw-primary) 0%, #6b8e7a 100%);
  color: white;
  padding: 4rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.paw-guest-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.paw-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.paw-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.paw-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hero Actions - Enhanced Button Styling */
.paw-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.paw-btn-primary, .paw-btn-secondary {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.paw-btn-primary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.paw-btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.paw-btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.paw-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/* Content Sections - Hetri.org Pattern */
.paw-guest-section {
  padding: 4rem 0;
}

.paw-section-alt {
  background: var(--paw-secondary);
  color: #2c3e50;
}

.paw-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.paw-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--paw-accent);
}

.paw-section-header p {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.8;
  color: var(--paw-text-muted);
}

/* Features Grid - Hetri.org Pattern */
.paw-platform-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.paw-feature-badge {
  display: flex;
  align-items: center;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.paw-feature-badge:hover {
  transform: translateY(-2px);
}

.paw-feature-badge i {
  margin-right: 0.75rem;
  color: var(--paw-primary);
  font-size: 1.125rem;
}

.paw-feature-badge span {
  font-weight: 600;
  color: var(--paw-accent);
}

/* Platform Cards - Hetri.org Pattern */
.paw-platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.paw-platform-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.paw-platform-card:hover {
  transform: translateY(-4px);
}

.paw-platform-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--paw-accent);
}

.paw-platform-demo, .paw-platform-login {
  margin-bottom: 1.5rem;
}

.paw-platform-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.paw-platform-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--paw-text-muted);
}

.paw-platform-list li i {
  margin-right: 0.75rem;
  color: var(--paw-primary);
  font-size: 1rem;
}

.paw-platform-list li:last-child {
  margin-bottom: 0;
}

/* Step Numbers for Process Steps */
.paw-step-number {
  width: 40px;
  height: 40px;
  background: var(--paw-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

/* Session Pricing and Badges */
.paw-session-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--paw-primary);
  margin: 1rem 0;
  text-align: center;
}

.paw-session-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--paw-secondary);
  color: var(--paw-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SIGNUP PAGE STYLING - Hetri.org Design Pattern */
.paw-signup-container {
  margin-left: var(--paw-sidebar-width, 80px);
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--paw-light) 0%, #f0f2f5 100%);
  transition: margin-left 0.3s ease;
}

.paw-login-container {
  margin-left: var(--paw-sidebar-width, 80px);
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--paw-light) 0%, #f0f2f5 100%);
  transition: margin-left 0.3s ease;
}

.signup-content.page-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
}

.login-content.page-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
}

.paw-signup-form {
  margin-top: 1rem;
}

.paw-login-form {
  margin-top: 1rem;
}

.paw-form-field {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0.75rem 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.paw-form-field:focus {
  border-color: var(--paw-primary);
  box-shadow: 0 0 0 3px rgba(120, 161, 138, 0.1);
  outline: none;
}

.page-card-head {
  text-align: center;
  margin-bottom: 2rem;
}

.page-card-head .brand img {
  max-width: 120px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.page-card-head .brand h2 {
  font-size: 1.5rem;
  color: var(--paw-accent);
  margin: 0;
  font-weight: 600;
}

.form-label {
  font-weight: 600;
  color: var(--paw-accent);
  margin-bottom: 0.5rem;
  display: block;
}

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

.page-card-actions {
  text-align: center;
  margin-top: 2rem;
}

.btn-signup {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 180px;
}

.btn-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sign-in-message {
  margin-top: 1.5rem;
  color: var(--paw-text-muted);
  font-size: 0.9rem;
}

.sign-in-message a {
  color: var(--paw-primary);
  text-decoration: none;
  font-weight: 600;
}

.sign-in-message a:hover {
  text-decoration: underline;
}

/* Enhanced Mobile Navigation Integration */
@media (max-width: 768px) {
  /* Ensure desktop sidebar is hidden */
  .paw-facility-nav {
    display: none !important;
  }
  
  /* Ensure mobile navigation is visible */
  .paw-mobile-bottom-nav {
    display: block !important;
  }
  
  /* Adjust main content for mobile */
  .paw-page-with-nav {
    margin-left: 0 !important;
    width: 100vw !important;
    padding-bottom: 5rem !important;
  }
  
  /* Adjust hero section for mobile navigation */
  .paw-guest-hero {
    margin-top: 1rem !important;
    padding: 2rem 0 !important;
  }
}

/* Desktop Navigation Integration */
@media (min-width: 769px) {
  /* Ensure mobile navigation is hidden */
  .paw-mobile-bottom-nav {
    display: none !important;
  }
  
  /* Ensure desktop sidebar is visible */
  .paw-facility-nav {
    display: block !important;
  }
  
  /* Ensure proper desktop layout */
  .paw-page-with-nav {
    margin-left: 80px !important;
    width: calc(100vw - 80px) !important;
    padding-bottom: 0 !important;
  }
}

/* Mobile Navigation Icon Styling */
.paw-mobile-nav-icon {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.paw-mobile-nav-item:hover .paw-mobile-nav-icon,
.paw-mobile-nav-item.active .paw-mobile-nav-icon {
  color: white;
}

.paw-mobile-nav-icon svg {
  display: block;
  width: 1rem !important;
  height: 1rem !important;
  stroke-width: 1.5;
  max-width: 16px !important;
  max-height: 16px !important;
}

/* Ensure SVG icons inherit the correct color */
.paw-mobile-nav-icon svg path {
  stroke: currentColor;
}
