:root{
  /* Sage green, baby blue, light purple palette */
  --lap-primary:#8fae94; /* sage green */
  --lap-secondary:#a7c7e7; /* baby blue */
  --lap-accent:#cbb4e9; /* light purple */
  --lap-white:#ffffff; /* pure white */
  --lap-bg:#ffffff; /* site background */
  --lap-text:#1e2a32;
}

/* Logo styling - ensure transparent background works */
.navbar-logo {
  background: transparent !important;
  object-fit: contain;
  display: block;
}

/* Sticky header */
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* Add padding to body to account for fixed navbar */
body {
  padding-top: 56px; /* Adjust based on your navbar height */
}

/* Footer positioning fix */
html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Product badges */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.popular {
  background-color: #28a745;
  color: white;
}

.product-badge.new {
  background-color: #529ded;
  color: white;
}

.product-badge.bestseller {
  background-color: #dc3545;
  color: white;
}

.product-badge.recommended {
  background-color: #ffc107;
  color: #212529;
}

/* Time slot selection styling */
.time-slot.selected {
  background-color: var(--lap-primary) !important;
  color: white !important;
  border-color: var(--lap-primary) !important;
}

.time-slot.selected:hover {
  background-color: var(--lap-primary) !important;
  color: white !important;
}

/* Dropdown menu positioning fix */
.dropdown-menu {
  right: 0;
  left: auto;
  min-width: 200px;
}

/* Footer positioning fix */
html, body {
  height: 100%;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; 
  color: var(--lap-text); 
  background: var(--lap-bg);
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Smooth page transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
} 

/* Primary coloring across Bootstrap-like components */
.text-primary{color:#87ceeb!important} /* Pastel blue for prices */

/* Why Choose Us text color */
.feature-card p.text-muted {
    color: #212529 !important;
}
.bg-primary{background-color:var(--lap-primary)!important;color:#fff}
.border-primary{border-color:var(--lap-primary)!important}

.btn-primary{
  background:var(--lap-primary);
  border-color:var(--lap-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}
.btn-primary:hover{
  background:#7a9d7f;
  border-color:#7a9d7f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(143,174,148,0.4);
}
.btn-primary:active{
  transform: translateY(0);
}

.btn-outline-primary{
  color:var(--lap-primary);
  border-color:var(--lap-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline-primary:hover{
  background:var(--lap-primary);
  color:#fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(143,174,148,0.3);
}

.btn-secondary{
  background:var(--lap-secondary);
  border-color:var(--lap-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-secondary:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(167,199,231,0.4);
}

.btn-outline-secondary{
  color:var(--lap-secondary);
  border-color:var(--lap-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline-secondary:hover{
  background:var(--lap-secondary);
  color:#fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(167,199,231,0.3);
}

.badge.bg-primary{background-color:var(--lap-accent)!important}
.link-primary{color:var(--lap-primary)!important}
.link-primary:hover{color:var(--lap-secondary)!important}

.navbar{
  background:#8fae94!important; /* Smokey sage color */
  transition: box-shadow 0.3s ease;
}
.navbar .nav-link{
  font-weight:500;
  position: relative;
  transition: color 0.3s ease;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--lap-primary);
  transition: width 0.3s ease, left 0.3s ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
  left: 0;
}
.navbar .nav-link.active, .navbar .nav-link:focus, .navbar .nav-link:hover{
  color:var(--lap-primary);
}

/* Prototype 1 Inspired Styles */

/* Modern Hero Section */
.hero-section-modern {
  background: linear-gradient(135deg, var(--lap-primary) 0%, #ffffff 100%);
  padding: 80px 0;
  margin-bottom: 50px;
}

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

.hero-card-modern {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.hero-title-modern {
  font-size: 3rem;
  font-weight: 700;
  color: var(--lap-text);
  margin-bottom: 20px;
}

.hero-subtitle-modern {
  font-size: 1.2rem;
  color: var(--lap-text);
  margin-bottom: 30px;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Modern Buttons */
.btn-primary-modern {
  background-color: var(--lap-primary);
  border-color: var(--lap-primary);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  color: white;
}

.btn-primary-modern:hover {
  background-color: var(--lap-secondary);
  border-color: var(--lap-secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline-primary-modern {
  color: var(--lap-primary);
  border-color: var(--lap-primary);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  background: transparent;
}

.btn-outline-primary-modern:hover {
  background-color: var(--lap-primary);
  border-color: var(--lap-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-light-modern {
  background-color: white;
  border-color: white;
  color: var(--lap-primary);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
}

.btn-light-modern:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

.btn-outline-light-modern {
  color: white;
  border-color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  background: transparent;
}

.btn-outline-light-modern:hover {
  background-color: white;
  color: var(--lap-primary);
  transform: translateY(-2px);
}

/* Notification Cards */
.notification-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  min-height: 200px;
}

.notification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.payment-card {
  border-color: #a8c8ec;
  background-color: #f0f7ff;
}

.payment-card .card-title,
.payment-card h4,
.payment-card i {
  color: #a8c8ec;
}

.btn-payment {
  background-color: #a8c8ec;
  border-color: #a8c8ec;
  color: white;
  border-radius: 20px;
  padding: 8px 20px;
}

.appointment-card {
  border-color: var(--lap-primary);
  background-color: #f5f7f3;
}

.appointment-card .card-title,
.appointment-card h6,
.appointment-card i {
  color: var(--lap-primary);
}

.btn-appointment {
  background-color: var(--lap-primary);
  border-color: var(--lap-primary);
  color: white;
  border-radius: 20px;
  padding: 8px 20px;
}

/* About Card */
.about-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

/* Service Cards Modern */
.service-card-modern {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.service-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon-modern {
  font-size: 3rem;
  color: var(--lap-secondary);
  margin-bottom: 20px;
}

.service-card-modern h4 {
  color: var(--lap-text);
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card-modern p {
  color: #6c757d;
  margin-bottom: 0;
}

/* Product Cards Modern */
.product-card-modern {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.product-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card-modern .card-img-top {
  border-radius: 15px 15px 0 0;
  height: 200px;
  object-fit: cover;
}

.product-badge-modern {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product-badge-modern.new {
  background: #27ae60;
}

.product-badge-modern.popular {
  background: #f39c12;
}

.product-badge-modern.recommended {
  background: var(--lap-secondary);
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lap-text);
  margin-bottom: 20px;
}

.section-title.text-start {
  text-align: left;
}

/* Call to Action Section */
.cta-section-modern {
  background-color: var(--lap-primary);
  color: white;
}

.cta-section-modern h2 {
  color: white;
  font-weight: 700;
}

.cta-section-modern .lead {
  color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Card Styles */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title-modern {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-card-modern {
    padding: 40px 20px;
  }
}

.card{
  background:var(--lap-white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.08);
}
.card:hover{
  border-color: var(--lap-primary);
}
/* Modern Service Cards */
.service-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(143,174,148,0.15);
  border-color: var(--lap-primary);
}

.service-card .service-icon {
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card .service-icon i {
  transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
  color: var(--lap-secondary);
}

/* Modern Product Cards */
.product-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(143,174,148,0.12);
}

.product-card .product-image {
  transition: all 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-card .product-badge {
  transition: all 0.3s ease;
}

.product-card:hover .product-badge {
  transform: scale(1.1);
}

/* Feature Cards */
.feature-card {
  transition: all 0.3s ease;
  border-radius: 12px;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(143,174,148,0.02);
}

.feature-card .feature-icon {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card:hover .feature-icon i {
  color: var(--lap-secondary);
}

/* Call to Action Section */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--lap-primary), var(--lap-secondary), var(--lap-accent));
  position: relative;
  overflow: hidden;
}

.bg-gradient-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-icon {
  animation: pulse 3s ease-in-out infinite;
}

/* Enhanced Badge Styles */
.badge {
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Modern Button Enhancements */
.btn-lg {
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 12px;
}

.btn-outline-primary {
  border-width: 2px;
  font-weight: 500;
}

.btn-outline-primary:hover {
  border-width: 2px;
}

/* Enhanced Card Styles */
.card {
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
}

.card-header {
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Modern Typography */
.display-6 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.lead {
  font-weight: 400;
  line-height: 1.6;
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Staggered animations for cards */
.service-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.service-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.service-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }

.product-card:nth-child(1) { animation: slideInLeft 0.6s ease-out 0.1s both; }
.product-card:nth-child(2) { animation: slideInLeft 0.6s ease-out 0.2s both; }
.product-card:nth-child(3) { animation: slideInRight 0.6s ease-out 0.3s both; }
.product-card:nth-child(4) { animation: slideInRight 0.6s ease-out 0.4s both; }

.feature-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.feature-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.feature-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.feature-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.feature-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.feature-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }

/* Responsive Design Enhancements */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .display-6 {
    font-size: 2rem;
  }
  
  .service-card:hover,
  .product-card:hover,
  .feature-card:hover {
    transform: translateY(-4px);
  }
} 

.form-select, .form-control{
  transition: all 0.3s ease;
  border: 1px solid #dee2e6;
}
.form-select:focus, .form-control:focus{
  border-color:var(--lap-primary); 
  box-shadow: 0 0 0 .25rem rgba(143,174,148,.25);
  transform: scale(1.01);
}

.btn.btn-warning{
  background:var(--lap-accent);
  border-color:var(--lap-accent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn.btn-warning:hover{
  filter:brightness(.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(203,180,233,0.4);
}

/* Cute micro animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

/* Fade in content on page load */
main > * {
  animation: fadeInUp 0.6s ease-out;
}

/* Badge animations */
.badge {
  transition: all 0.3s ease;
  display: inline-block;
}
.badge:hover {
  transform: scale(1.1);
}

/* Cart icon animation */
.position-relative:has(.badge) {
  display: inline-block;
}
.position-relative:has(.badge):hover {
  animation: bounce 0.5s ease;
}

/* Link hover effects */
a {
  transition: all 0.3s ease;
}
a:not(.btn):hover {
  opacity: 0.8;
}

/* Alert animations */
.alert {
  animation: fadeInUp 0.4s ease-out;
  border-left: 4px solid currentColor;
}

/* Modal smooth entrance */
.modal.fade .modal-dialog {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Table row hover effects */
.table tbody tr {
  transition: all 0.3s ease;
}
.table tbody tr:hover {
  background-color: rgba(143,174,148,0.05);
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Loading spinner styles */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(143,174,148,0.3);
  border-radius: 50%;
  border-top-color: var(--lap-primary);
  animation: spin 0.8s linear infinite;
}

/* Image hover effects */
img, .ratio {
  transition: all 0.3s ease;
}
img:hover, .card:hover .ratio {
  transform: scale(1.05);
}

/* Subtle shadow on scroll for sticky elements */
.sticky-top {
  transition: box-shadow 0.3s ease;
}
.sticky-top.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

/* Input focus glow effect */
.form-control:focus,
.form-select:focus {
  animation: pulse 2s ease-in-out infinite;
}

/* Success checkmark animation */
@keyframes checkmark {
  0% { transform: scale(0) rotate(45deg); }
  100% { transform: scale(1) rotate(45deg); }
}

.alert-success::before {
  content: '✓';
  display: inline-block;
  margin-right: 8px;
  font-size: 1.2em;
  animation: checkmark 0.4s ease-out;
}

/* List group item hover */
.list-group-item {
  transition: all 0.3s ease;
}
.list-group-item:hover {
  background-color: rgba(143,174,148,0.05);
  transform: translateX(4px);
  border-left: 3px solid var(--lap-primary);
}

/* Smooth dropdown transitions */
.dropdown-menu {
  animation: fadeInUp 0.3s ease-out;
}

/* Footer links hover */
footer a {
  position: relative;
  transition: color 0.3s ease;
}
footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
footer a:hover::after {
  width: 100%;
}

/* Progress bar animation */
@keyframes progress {
  0% { width: 0; }
}

.progress-bar {
  animation: progress 1s ease-out;
}

/* Tooltip smooth appearance */
.tooltip {
  animation: fadeInUp 0.2s ease-out;
}

/* Skeleton loading effect */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

