/* ===================================
   PARKING QR CODE PLATFORM - MODERN CSS
   Mobile-First Responsive Design
   =================================== */

/* ===================================
   CSS VARIABLES & ROOT STYLES
   =================================== */
:root {
  /* Primary Colors - Blue/Green Scheme */
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #10b981;
  --secondary-dark: #059669;
  --secondary-light: #34d399;
  
  /* Neutral Colors */
  --dark: #1f2937;
  --dark-light: #374151;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --light: #f3f4f6;
  --white: #ffffff;
  
  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: var(--spacing-md);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--spacing-sm);
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

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

a:hover {
  color: var(--primary-dark);
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-2xl) 0;
}

.section-light {
  background-color: var(--light);
}

.section-white {
  background-color: var(--white);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.btn i {
  font-size: 1.125em;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
}

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

.nav-link {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-base);
}

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

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

.navbar-cta {
  display: flex;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-base);
}

.mobile-menu-toggle:hover {
  color: var(--primary-color);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu-overlay.active {
  opacity: 1;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(37, 99, 235, 0.1);
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-md);
  animation: fadeInDown 0.6s ease-out;
}

.hero-badge i {
  font-size: 1.1em;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-title .highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--gray);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero-visual {
  margin-top: var(--spacing-xl);
  animation: fadeInUp 0.6s ease-out 0.8s both;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: var(--spacing-xl);
  animation: fadeInUp 0.6s ease-out 1s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.stat-label {
  display: block;
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}



.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50px;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.section-badge i {
  font-size: 1.1em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}





/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
  padding: var(--spacing-2xl) 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: var(--spacing-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--light);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-color: var(--primary-color);
  color: var(--white);
}

.pricing-card.featured * {
  color: var(--white);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.5rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: var(--shadow-md);
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: var(--spacing-sm);
}

.pricing-amount .currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.pricing-amount .price {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.pricing-amount .period {
  font-size: 1rem;
  color: var(--gray);
}

.pricing-card.featured .pricing-amount .period {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-description {
  color: var(--gray);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 2px solid var(--light);
}

.pricing-card.featured .pricing-description {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.pricing-card.featured .pricing-features li {
  color: var(--white);
}

.pricing-features i {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features i {
  color: var(--white);
}

.pricing-cta {
  width: 100%;
}



/* ===================================
   FOOTER SECTION
   =================================== */
.footer-section {
  background: var(--dark);
  color: var(--white);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: var(--spacing-xl);
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.footer-contact-info {
  margin-bottom: var(--spacing-md);
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

.footer-contact-info i {
  color: var(--primary-light);
  font-size: 1.125rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-base);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

/* Trust Badges in Footer */
.footer-trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.trust-badge i {
  font-size: 1.75rem;
  color: var(--primary-light);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
}

.badge-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.badge-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.badge-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}



.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

/* Visitor Stats */
.visitor-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.visitor-counter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.visitor-counter:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-light);
}

.visitor-counter i {
  font-size: 1.125rem;
  color: var(--primary-light);
}

.visitor-counter.active i {
  color: var(--secondary-color);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.visitor-counter span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.visitor-counter .counter-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-left: 0.25rem;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.scroll-to-top i {
  font-size: 1.25rem;
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets */
@media (max-width: 992px) {
  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    z-index: 999;
    align-items: flex-start;
    overflow-y: auto;
  }
  
  .navbar-nav.active {
    right: 0;
  }
  
  .nav-link {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .mobile-menu-overlay {
    display: block;
  }
  
  .mobile-menu-overlay.active {
    display: block;
  }
  
  .hero-section {
    padding: 6rem 0 3rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    font-size: 14px;
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .hero-section {
    padding: 5rem 0 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-trust-badges {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .trust-badge {
    padding: 0.875rem;
  }
  
  .visitor-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .visitor-counter {
    width: 100%;
    justify-content: center;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
  
  .hero-badge,
  .section-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  
  .footer-trust-badges {
    grid-template-columns: 1fr;
  }
  
  .trust-badge {
    flex-direction: row;
    text-align: left;
  }
  
  .badge-title {
    font-size: 0.85rem;
  }
  
  .badge-subtitle {
    font-size: 0.75rem;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: var(--spacing-xs); }
.gap-2 { gap: var(--spacing-sm); }
.gap-3 { gap: var(--spacing-md); }

.mobile-only { display: none; }
.desktop-only { display: block; }

@media (max-width: 992px) {
  .mobile-only { display: block; }
  .desktop-only { display: none; }
}

/* ===================================
   HERO SECTION CUSTOM STYLES
   =================================== */
.hero-section-custom {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 75%, #0e2954 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 2rem;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    opacity: 0.08;
}

.hero-float-1 {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-float-2 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
}

.hero-float-3 {
    position: absolute;
    top: 30%;
    left: 70%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
    animation: float 18s ease-in-out infinite;
}

.hero-pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.08) 0%, transparent 25%), radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 25%);
    background-size: 80px 80px;
}

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

.hero-content-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-text-content {
    text-align: left;
}

.hero-premium-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(30, 41, 59, 0.9), rgba(51, 65, 85, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #f8fafc;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.4);
}

.hero-badge-icon {
    margin-right: 0.5rem;
    color: #fbbf24;
    animation: bounce 2s infinite;
}

.hero-badge-text {
    background: linear-gradient(45deg, #f8fafc, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-title-highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-accent {
    color: #10b981;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-stat-number.stat-yellow {
    color: #fbbf24;
}

.hero-stat-number.stat-green {
    color: #10b981;
}

.hero-stat-number.stat-blue {
    color: #3b82f6;
}

.hero-stat-label {
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-cta-primary i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(248, 250, 252, 0.1);
    backdrop-filter: blur(20px);
    color: #f8fafc;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.hero-cta-secondary i {
    margin-right: 0.5rem;
    font-size: 1rem;
    color: #fbbf24;
}

/* Search Form Styles */
.hero-search-form {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.9));
    backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-search-title {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-search-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input, .form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    color: #1f2937;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23374151" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.hero-search-button {
    background: linear-gradient(45deg, #1e293b, #334155);
    color: #f8fafc;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.hero-search-button i {
    color: #fbbf24;
}

.hero-categories {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.hero-categories-title {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.hero-categories-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

/* FAQ Section Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-answer p {
    padding: 0 0 1.5rem 0;
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section Styles */
.cta-section {
    padding: 4rem 0;
}

.cta-container {
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modern animations and effects */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(100px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Hero Section Specific Styles */
.hero-section h1 {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-section p {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* Search Interface Animations */
#serviceSearchForm {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Category Pills Hover Effects */
.category-pill:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Enhanced Input Styles */
#serviceSearchForm input:focus,
#serviceSearchForm select:focus {
    outline: none !important;
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

/* Button hover effects */
.btn:hover,
a[href]:hover {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.3s ease;
}

.step-card {
    animation: fadeInUp 0.8s ease forwards;
}

.step-card:nth-child(1) { animation-delay: 0.2s; opacity: 0; }
.step-card:nth-child(2) { animation-delay: 0.4s; opacity: 0; }
.step-card:nth-child(3) { animation-delay: 0.6s; opacity: 0; }

/* Search Form Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh !important;
        padding-top: 100px !important;
        padding-bottom: 1rem !important;
    }
    
    /* Mobile - Stack columns vertically */
    .hero-section .container > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
        padding: 0 1rem !important;
    }
    
    /* Left side text alignment on mobile */
    .hero-section .container > div > div:first-child {
        text-align: center !important;
    }
    
    /* Mobile stats - center alignment */
    .hero-section .container > div > div:first-child > div:nth-child(5) {
        justify-content: center !important;
        gap: 1rem !important;
    }
    
    .hero-section h1 {
        font-size: clamp(2rem, 8vw, 2.8rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-section p {
        font-size: clamp(0.9rem, 4vw, 1.1rem) !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Mobile Search Interface */
    #serviceSearchForm {
        padding: 1.5rem !important;
    }
    
    .hero-section > div:last-child > div:last-child {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .hero-section > div:last-child > div:last-child > a {
        padding: 1rem 2rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Mobile Stats */
    .hero-section > div > div > div:nth-child(5) > div {
        font-size: 0.75rem !important;
    }
    
    .hero-section > div > div > div:nth-child(5) > div > div:first-child {
        font-size: 1.8rem !important;
    }
    
    /* Mobile Category Pills */
    .category-pill {
        font-size: 0.65rem !important;
        padding: 0.3rem 0.6rem !important;
    }
    
    /* Mobile Badge */
    .hero-section > div > div > div:first-child {
        padding: 0.6rem 1.2rem !important;
        margin-bottom: 1.2rem !important;
        font-size: 0.8rem !important;
    }
    
    .steps-container .step-card {
        flex-direction: column !important;
        text-align: center;
    }
    
    .steps-container > div:first-child {
        display: none; /* Hide timeline on mobile */
    }
    
    .hero-cta {
        flex-direction: column !important;
    }
    
    .hero-stats {
        gap: 1.5rem !important;
    }
    
    .stat-item {
        padding: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh !important;
        padding-top: 80px !important;
        padding-bottom: 0.5rem !important;
    }
    
    .hero-section .container > div {
        padding: 0 0.5rem !important;
    }
    
    #serviceSearchForm {
        padding: 1.2rem !important;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero-section > div > div > div:first-child {
        padding: 0.5rem 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Ultra compact stats on very small screens */
    .hero-section .container > div > div:first-child > div:nth-child(5) {
        gap: 0.5rem !important;
        flex-direction: column !important;
    }
    
    .hero-section .container > div > div:first-child > div:nth-child(5) > div {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
    }
}

/* Enhanced visual effects */
.section-badge {
    animation: pulse 3s ease-in-out infinite;
}

/* Loading Animation for Search */
.search-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    border-top-color: #fbbf24;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom gradient backgrounds */
.gradient-bg-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-section {
        background: #000 !important;
        color: #fff !important;
    }
    
    .hero-section h1, .hero-section p {
        color: #fff !important;
        text-shadow: none !important;
    }
    
    #serviceSearchForm {
        background: #fff !important;
        border: 2px solid #000 !important;
    }
    
    .category-pill {
        background: #fff !important;
        color: #000 !important;
        border: 2px solid #000 !important;
    }
}

/* ===================================
   SERVICES SECTION STYLES
   =================================== */
.services-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #e2e8f0;
}

.service-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.service-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fbbf24;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.service-content {
    padding: 1.5rem;
}

.service-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-specialization {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.service-location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #64748b;
    font-size: 0.85rem;
}

.service-location i {
    color: #ef4444;
}

.service-price {
    font-weight: 700;
    color: #059669;
    font-size: 1.1rem;
}

.service-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-book-now, .btn-view-profile {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-book-now {
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    color: white;
}

.btn-book-now:hover {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
}

.btn-view-profile {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-view-profile:hover {
    background: #e2e8f0;
    color: #334155;
}

.services-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Search Suggestions */
#serviceSuggestions {
    border-top: none !important;
    margin-top: -1px;
}

.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suggestion-item:hover {
    background: #f8fafc;
    color: #3b82f6;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-icon {
    color: #64748b;
    width: 16px;
}

/* Mobile responsiveness for services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        margin: 0 1rem;
    }
    
    .services-cta {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }
    
    .services-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===================================
   SERVICES BROWSE & SEARCH PAGES
   =================================== */
.browse-services-page, .search-results-page, .service-detail-page {
    padding-top: 120px;
}

.browse-header, .search-header, .service-header {
    padding: 2rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.browse-title, .search-title, .service-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.browse-subtitle, .search-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.search-filters {
    padding: 2rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.filter-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.services-grid-section, .search-results-section {
    padding: 3rem 0;
}

.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.no-services, .no-results {
    padding: 4rem 0;
}

/* Service Detail Page Styles */
.service-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-rating-location {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-rating-location .rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #fbbf24;
}

.service-rating-location .location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-price-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-price-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #059669;
    line-height: 1;
}

.service-price-card .price-label {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-details {
    padding: 3rem 0;
}

.service-description h3,
.working-hours h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-description {
    margin-bottom: 3rem;
}

.service-image-large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.hour-item .day {
    font-weight: 600;
    color: #1e293b;
}

.hour-item .time {
    color: #64748b;
}

.hour-item .closed {
    color: #ef4444;
    font-weight: 600;
}

.provider-card, .quick-actions {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.provider-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.provider-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.provider-email, .provider-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    margin-bottom: 0.3rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}
