@layer base {
  :root {
    --background: 210 20% 98%;
    --foreground: 215 25% 15%;
    --card: 0 0% 100%;
    --card-foreground: 215 25% 15%;
    --popover: 0 0% 100%;
    --popover-foreground: 215 25% 15%;
    --primary: 250 85% 25%;
    --primary-foreground: 0 0% 100%;
    --primary-light: 250 85% 35%;
    --primary-dark: 250 85% 15%;
    --secondary: 150 40% 55%;
    --secondary-foreground: 0 0% 100%;
    --secondary-light: 150 40% 65%;
    --muted: 210 15% 96%;
    --muted-foreground: 215 15% 45%;
    --accent: 200 50% 95%;
    --accent-foreground: 215 25% 15%;
    --destructive: 0 75% 55%;
    --destructive-foreground: 0 0% 100%;
    --border: 210 20% 90%;
    --input: 210 20% 95%;
    --ring: 210 85% 45%;
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
    --gradient-secondary: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--secondary-light)));
    --gradient-hero: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
    --gradient-card: linear-gradient(180deg, hsl(var(--card)) 0%, hsl(var(--muted)) 100%);
    --shadow-soft: 0 2px 10px -2px hsl(var(--primary) / 0.1);
    --shadow-card: 0 4px 20px -4px hsl(var(--primary) / 0.15);
    --shadow-elevated: 0 8px 30px -8px hsl(var(--primary) / 0.2);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease-out;
    --radius: 0.5rem;
    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 240 5.9% 10%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }

  .dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;
    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;
    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;
    --primary: 210 40% 98%;
    --primary-foreground: 222.2 47.4% 11.2%;
    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;
    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;
    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 212.7 26.8% 83.9%;
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
}

/* Services Page Styles */
.services-hero-section {
  background: var(--gradient-hero);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.services-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.services-hero-content {
  text-align: center;
  max-width: 600px;
  margin: 2rem auto 0 auto;
}

.services-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-hero-desc {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.9);
  line-height: 1.6;
  margin-bottom: 0;
}

.services-main-section {
  padding: 3rem 0;
  background: hsl(var(--background));
}

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

.services-filters {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.services-filters-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.services-section-title {
  font-size: 2rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.services-section-desc {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.5;
}

.services-filters-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 500px;
}

.filter-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.search-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.filter-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.search-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  white-space: nowrap;
}

.filter-select {
  padding: 0.625rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  width: 180px;
  transition: var(--transition-fast);
}

.filter-select:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

.search-input-wrapper {
  position: relative;
}

.search-input {
  padding: 0.625rem 1rem 0.625rem 2.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  width: 200px;
  transition: var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.search-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

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

.service-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: hsl(var(--primary) / 0.3);
}

.service-card-content {
  padding: 1.5rem;
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.service-details {
  flex: 1;
  min-width: 0;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: left;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.service-type {
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--muted));
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.service-price {
  flex-shrink: 0;
  text-align: right;
  margin-top: 0.5rem;
  min-width: fit-content;
}

.price-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgb(17, 163, 68);
}

.service-actions {
  margin-top: 1rem;
}

.service-book-btn {
  width: 100%;
  background: #221760;
  color: #fff;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.service-book-btn:hover {
  background: #1a0f4a;
}

.service-book-btn:active {
  transform: translateY(0);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

.no-services {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
}

.no-services-icon {
  margin-bottom: 1rem;
}

.icon-lg {
  width: 3rem;
  height: 3rem;
  color: hsl(var(--muted-foreground));
}

.no-services-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.no-services-desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.services-info-section {
  background: hsl(var(--muted));
  border-radius: 0.75rem;
  padding: 2rem;
  margin-top: 2rem;
}

.services-info-content {
  text-align: center;
}

.services-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
}

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

.services-info-item {
  text-align: center;
}

.services-info-icon-bg {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.services-info-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--secondary-foreground));
  margin-bottom: 0.5rem;
}

.services-info-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.services-info-item-desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Services main section - ensure proper layout */
.services-main-section .service-card {
  position: relative;
}

.services-main-section .service-card-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-main-section .service-details {
  order: 1;
}

.services-main-section .service-price {
  order: 2;
  align-self: flex-end;
}

/* Desktop-specific improvements for services filters */
@media (min-width: 1024px) {
  .services-filters-right {
    max-width: 400px;
  }
  
  .filter-select {
    width: 160px;
  }
  
  .search-input {
    width: 180px;
  }
}

/* Services Pagination Styles */
.services-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid hsl(var(--border));
}

.pagination-info {
  flex: 1;
}

.pagination-text {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.pagination-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-links .pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-links .pagination li {
  display: inline-block;
}

.pagination-links .pagination li a,
.pagination-links .pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.pagination-links .pagination li a:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.pagination-links .pagination li span {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.pagination-links .pagination li .disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Enhanced Mobile Responsive Design */

/* Tablet Styles (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Hide mobile menu button on tablets */
  .mobile-menu-btn {
    display: none;
  }
  
  /* Show desktop navigation on tablets */
  .desktop-nav {
    display: flex;
  }
  
  /* Show header contact on tablets */
  .header-contact {
    display: flex;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .about-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info-list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile Styles (up to 767px) */
@media (max-width: 767px) {
  /* Header Mobile Improvements */
  .header-row {
    height: 60px;
    padding: 0 1rem;
  }
  
  .logo-image {
    height: 50px;
    max-width: 180px;
  }
  
  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0.5rem;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.375rem;
  }
  
  .mobile-menu-btn:hover {
    background: var(--color-bg-muted);
  }
  
  .hamburger-icon,
  .close-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .mobile-menu:not(.hidden) {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
  }
  
  .mobile-nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--color-border);
  }
  
  .mobile-nav-link:hover {
    background: var(--color-bg-muted);
    color: var(--color-primary);
  }
  
  .mobile-nav-link:last-of-type {
    border-bottom: none;
  }
  
  /* Mobile CTA Section */
  .mobile-cta-section {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-muted);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .mobile-cta-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #237DE8;
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-height: 48px;
    line-height: 1.2;
  }
  
  .mobile-cta-btn:hover {
    background: #1E6BC7;
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
  }
  
  .mobile-cta-btn:active {
    transform: translateY(0);
  }
  
  .mobile-cta-btn:focus {
    outline: 2px solid #237DE8;
    outline-offset: 2px;
  }
}
  
  /* Hero Section Mobile */
  .hero-content {
    padding: 5rem 1rem 2rem 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .hero-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-btn-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    min-height: 48px;
    line-height: 1.2;
    box-sizing: border-box;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-stat {
    text-align: center;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-feature {
    padding: 1rem;
    text-align: center;
  }
  
  /* About Section Mobile */
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-stat {
    padding: 1.5rem 1rem;
  }
  
  .about-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-main-title {
    font-size: 1.5rem;
  }
  
  .about-main-desc {
    font-size: 1rem;
  }
  
  .about-hmos-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  /* Contact Section Mobile */
  .contact-info-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
  
  .contact-info-item {
    height: auto;
    min-height: auto;
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0;
    justify-self: center;
    align-self: center;
  }
  
  .contact-info {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .contact-info-icon-bg {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    max-width: 2.5rem;
    max-height: 2.5rem;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
    aspect-ratio: 1;
  }
  
  .contact-info-svg-icon {
    width: 1rem;
    height: 1rem;
  }
  
  .contact-info-item > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  
  .contact-info-primary,
  .contact-info-secondary {
    text-align: center;
  }
  
  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-contact-list {
    padding-top: 0.75rem;
    padding-right: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-left: 2rem;
  }
  
  .footer-links {
    margin-top: 1.5rem;
  }
  
  .footer-links-list {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    margin-left: -1rem;
  }
  
  /* Services Page Mobile */
  .services-hero-title {
    font-size: 1.75rem;
  }
  
  .services-hero-desc {
    font-size: 1rem;
  }
  
  .services-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  
  .services-filters-right {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .search-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  
  .filter-select,
  .search-input {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card-header {
    flex-direction: column;
    text-align: left;
    gap: 1rem;
  }
  
  .service-title {
    text-align: left;
  }
  
  .service-price {
    text-align: left;
    align-self: flex-start;
  }
  
  .services-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-pagination {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .pagination-links .pagination {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Modal Mobile Improvements */
  .modal-content {
    margin: 1rem;
    max-height: 90vh;
    width: calc(100vw - 2rem);
  }
  
  .modal-header {
    padding: 1rem;
  }
  
  .modal-body {
    padding: 1rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .modal-form-group {
    flex: 1 1 100%;
  }
  
  .modal-step-row {
    flex-direction: column;
  }
  
  /* Mobile Modal Steps - Make them more compact and responsive */
  .modal-steps {
    flex-wrap: nowrap;
    gap: 0.25rem;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    -webkit-overflow-scrolling: touch;
  }
  
  .modal-step-indicator-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .modal-step-indicator {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
    border-width: 2px;
  }
  
  .modal-step-line {
    width: 0.75rem;
    height: 2px;
    flex-shrink: 0;
  }
  
  .modal-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  
  .modal-nav-right {
    width: auto;
    justify-content: flex-end;
  }
  
  /* Promotions Mobile */
  .promotions-slideshow-section {
    padding: 2rem 0;
  }
  
  .promotions-slideshow-title {
    font-size: 1.5rem;
  }
  
  .promotions-slideshow-subtitle {
    font-size: 0.9rem;
  }
  
  .promotion-slide-content {
    height: 200px;
  }
  
  /* Chatbot Mobile */
  .chatbot-window {
    width: calc(100vw - 2rem);
    height: 450px;
    right: -1rem;
  }
  
  .chatbot-toggle {
    width: 50px;
    height: 50px;
  }
  
  .chatbot-icon {
    width: 20px;
    height: 20px;
  }


/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
  /* Mobile menu improvements for small screens */
  .mobile-nav-link {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  
  .mobile-cta-section {
    padding: 0.875rem 1rem;
  }
  
  .mobile-cta-btn {
    padding: 0.875rem 0.75rem;
    font-size: 0.95rem;
    min-height: 44px;
    line-height: 1.2;
  }
  
  /* Extra small mobile devices - Further optimize modal steps */
  .modal-steps {
    gap: 0.125rem;
    margin-bottom: 1rem;
    padding: 0.25rem 0;
  }
  
  .modal-step-indicator {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.8rem;
    border-width: 1.5px;
  }
  
  .modal-step-line {
    width: 0.5rem;
    height: 1.5px;
  }
  
  .logo-image {
    height: 45px;
    max-width: 160px;
  }
  
  .header-row {
    height: 55px;
    padding: 0 0.75rem;
  }
  
  .hero-content {
    padding: 4rem 0.75rem 1.5rem 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .hero-title {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .hero-desc {
    font-size: 0.9rem;
    text-align: center;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-btn {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    min-height: 44px;
  }
  
  .about-title,
  .contact-title,
  .services-hero-title {
    font-size: 1.5rem;
  }
  
  .about-main-title {
    font-size: 1.25rem;
  }
  
  .contact-info-item {
    padding: 0.75rem;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
    max-width: 350px;
    margin: 0;
    justify-self: center;
    align-self: center;
  }
  
  .contact-info-item > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  
  .contact-info-primary,
  .contact-info-secondary {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
  }
  
  .contact-info {
    padding: 1.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .contact-info-icon-bg {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    min-height: 2rem;
    max-width: 2rem;
    max-height: 2rem;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
    aspect-ratio: 1;
  }
  
  .contact-info-svg-icon {
    width: 0.875rem;
    height: 0.875rem;
  }
  
  .modal-content {
    margin: 0.5rem;
    width: calc(100vw - 1rem);
  }
  
  .chatbot-window {
    width: calc(100vw - 1rem);
    height: 400px;
    right: -0.5rem;
  }
  
  .chatbot-toggle {
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
  }
}

/* Medical Laboratory Design System Styles */
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

a {
  color: hsl(var(--primary));
  text-decoration: none;
  transition: color 0.2s;
}

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

button {
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.section {
  padding: 4rem 0;
}

.bg-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.bg-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.bg-muted {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-secondary {
  color: hsl(var(--secondary));
}

.text-muted {
  color: hsl(var(--muted));
}

.border-primary {
  border-color: hsl(var(--primary));
}

.border-secondary {
  border-color: hsl(var(--secondary));
}

.border-muted {
  border-color: hsl(var(--muted));
}

.rounded {
  border-radius: var(--radius);
}

.shadow {
  box-shadow: var(--shadow-card);
}

.shadow-elevated {
  box-shadow: var(--shadow-elevated);
}

.transition {
  transition: var(--transition-smooth);
}

/* Custom animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.animate-slide-in-right {
  animation: slide-in-right 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scale-in 0.5s ease-out forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--muted));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--border));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--muted-foreground));
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }

  .print-break {
    page-break-before: always;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border: 0 0% 0%;
    --input: 0 0% 0%;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* CSS Variables for color palette and spacing */
:root {
  --color-bg: #f8fafc;
  --color-bg-card: #fff;
  --color-bg-muted: #f1f5f9;
  --color-primary: #221760;
  --color-primary-dark: #1a0f4a;
  --color-primary-light: #2a1f7a;
  --color-secondary: #22c55e;
  --color-secondary-light: #4ade80;
  --color-secondary-dark: #15803d;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-accent: #f3f4f6;
  --color-danger: #ef4444;
  --color-success: #22c55e;
  --radius: 0.5rem;
  --shadow-soft: 0 2px 10px -2px rgba(37, 99, 235, 0.08);
  --shadow-card: 0 4px 20px -4px rgba(37, 99, 235, 0.12);
  --shadow-elevated: 0 8px 30px -8px rgba(37, 99, 235, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1200px;
}

body.main-layout {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Container */
.header-container,
.services-container,
.about-container,
.contact-container,
.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

/* Header scroll states */
.site-header.scrolled-down {
  transform: translateY(-100%);
}

.site-header.scrolled-up {
  transform: translateY(0);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Offset page content to account for fixed header height */
.site-header+* {
  margin-top: 72px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
}

.logo-image {
  height: 70px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--color-primary);
  background-color: #f3f4f6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.header-contact {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.cta-btn {
  background: #237DE8;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #1E6BC7;
  color: #fff;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--color-text);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .header-contact {
    display: flex;
  }
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Desktop: Hide mobile menu */
.mobile-menu {
  display: none;
}

/* Mobile: Show mobile menu when not hidden */
@media (max-width: 767px) {
  .mobile-menu {
    display: block;
  }
  
  .mobile-menu.hidden {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 600px;
  width: 100%;
  max-width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: #221760;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 7rem 1.5rem 2rem 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    text-align: left;
  }
  
  .hero-desc {
    text-align: justify;
    max-width: 450px;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-title-secondary {
  display: inline;
  color: #fff;
}

.hero-desc {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e0e7ef;
  line-height: 1.6;
  text-align: justify;
  max-width: 450px;
}

.hero-btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .hero-btn-group {
    flex-direction: row;
  }
}

.hero-btn {
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  box-sizing: border-box;
  min-height: 48px;
  line-height: 1.2;
}

.hero-btn-primary {
  background: #6AD8B0;
  color: #fff;
}

.hero-btn-primary:hover {
  background: #5BC4A0;
}

.hero-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
  text-decoration: none;
}

.hero-btn-outline:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

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

.hero-stat-value {
  font-size: 2rem;
  font-weight: bold;
}

.hero-stat-label {
  font-size: 1rem;
  color: #e0e7ef;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-feature {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.hero-feature:hover::before {
  left: 100%;
}

.hero-feature-icon {
  color: var(--color-secondary-light);
  margin-bottom: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}

.hero-feature:hover .hero-feature-icon {
  color: #fff;
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.hero-feature-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-feature:hover .hero-feature-title {
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-feature-desc {
  font-size: 1rem;
  color: #e0e7ef;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-feature:hover .hero-feature-desc {
  color: #fff;
  transform: translateY(-1px);
}

.hero-bottom-wave {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
}

.hero-bottom-wave-svg {
  width: 100%;
  height: 70px;
  fill: #F1F5F9;
}

/* Services Section */
.services-section {
  background: var(--color-bg);
  padding: 5rem 0 2rem 0;
}

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

.services-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.services-desc {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.service-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-elevated);
}

.service-popular {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-secondary);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 2;
}

.service-card-content {
  padding: 2rem;
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-icon-bg {
  width: 3rem;
  height: 3rem;
  background: var(--color-primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon {
  color: var(--color-primary);
  width: 1.5rem;
  height: 1.5rem;
}

.service-title {
  font-weight: 600;
  color: var(--color-text);
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.service-desc {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.service-features {
  margin-bottom: 1rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.98rem;
  color: var(--color-text-muted);
}

.service-feature-icon {
  color: var(--color-secondary);
  width: 1.1rem;
  height: 1.1rem;
}

.service-btn {
  width: 100%;
  background: #221760;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 0;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.service-btn:hover {
  background: #1a0f4a;
}

.services-info {
  margin-top: 4rem;
  text-align: center;
}

.services-info-inner {
  background: var(--color-bg-muted);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.services-info-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.services-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.services-info-item {
  text-align: center;
}

.services-info-icon-bg {
  width: 4rem;
  height: 4rem;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.services-info-icon {
  color: var(--color-primary);
  width: 2rem;
  height: 2rem;
}

.services-info-item-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.services-info-item-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* About Section */
.about-section {
  background: #F1F5F9;
  padding: 3rem 0 2rem 0;
}

.about-header {
  text-align: center;
  margin-bottom: 2rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.about-desc {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.about-stat {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem 1rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.about-stat:hover {
  border-color: #342B68;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 43, 104, 0.15);
}

.about-stat-icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.about-stat-icon {
  color: var(--color-primary);
  width: 3rem;
  height: 3rem;
}

.about-stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.about-stat-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-main-content {
  padding-right: 2rem;
  text-align: left;
}

/* Mobile override for about-main-content */
@media (max-width: 767px) {
  .about-main-content {
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .about-main-desc {
    text-align: center;
  }
  
  .about-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .about-feature {
    justify-content: flex-start;
    width: 100%;
    max-width: 300px;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .about-feature-icon {
    flex-shrink: 0;
    margin-top: -1rem;
  }
  
  .about-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

.about-main-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.about-main-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  text-align: justify;
}

.about-features {
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.about-feature-icon {
  color: #22c55e;
  width: 1.2rem;
  height: 1.2rem;
}

.about-btn {
  background: #237DE8;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 2rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #1E6BC7;
}

.about-certifications-inner {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
  overflow: hidden;
}

.about-certifications-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #221760;
  border-radius: var(--radius) var(--radius) 0 0;
}

.about-certifications-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(35, 125, 232, 0.03) 0%, rgba(52, 43, 104, 0.03) 50%, rgba(34, 197, 94, 0.03) 100%);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 0;
}

.about-certifications-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-certifications-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.about-hmos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-hmos-grid .about-certification:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 250px;
}

.about-certification {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--color-bg-muted);
  border-radius: var(--radius);
  padding: 0.75rem;
  min-height: 70px;
  height: 70px;
}

.about-certification-icon {
  color: var(--color-primary);
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

.about-certification-name {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.cocolife-adjusted {
  margin-top: 0.6rem;
}

.about-certification-logo {
  max-width: 100%;
  height: auto;
  max-height: 45px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.about-certification-logo[alt="Cocolife"] {
  max-height: 60px;
}

.about-certification-logo[alt="Avega"] {
  max-height: 60px;
}

.about-certification-desc {
  font-size: 0.98rem;
  color: var(--color-text-muted);
}

.about-team-section {
  margin-top: 4rem;
}

.about-team-header {
  text-align: center;
  margin-bottom: 2rem;
}

.about-team-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.about-team-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.about-team {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}

.about-team-member {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem 1rem;
  text-align: center;
}

.about-team-img {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-team-name {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.about-team-role {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.about-team-specialty,
.about-team-experience {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.about-team-experience {
  margin-top: 0.25rem;
}

/* Contact Section */
.contact-section {
  background: #F1F5F9;
  padding: 1.5rem 0 5rem 0;
  min-height: 65vh;
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.contact-desc {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.contact-main {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form-wrapper {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem;
}

.contact-form-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-row {
  display: flex;
  gap: 1.5rem;
}

.contact-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
}

.contact-input {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border 0.2s;
}

.contact-input:focus {
  border-color: var(--color-primary);
  outline: none;
}

.contact-textarea {
  resize: none;
  min-height: 120px;
}

.contact-btn {
  background: #237DE8;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 2rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #1E6BC7;
}

.contact-success-message {
  margin-top: 1.5rem;
  background: var(--color-secondary-light);
  border-radius: var(--radius);
  padding: 1rem;
  color: #fff;
}

.contact-success-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 3rem;
  max-width: 800px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
}

.contact-info-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.contact-info-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 2px;
}

.contact-info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  align-items: stretch;
  align-content: stretch;
}

/* Desktop: equal-height cards in the 2×2 grid (rows share one height; both rows match). */
@media (min-width: 769px) {
  .contact-info-list {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: clamp(22rem, 36vh, 32rem);
  }

  .contact-info-item {
    height: 100%;
    min-height: 0;
    align-self: stretch;
  }
}

@media (max-width: 768px) {
  .contact-info-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    min-height: unset;
    grid-template-rows: none;
  }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--color-bg-muted);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
  box-sizing: border-box;
}

.contact-info-item > div:last-child {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary-light);
}

.contact-info-icon-bg {
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3.5rem;
  min-height: 3.5rem;
  max-width: 3.5rem;
  max-height: 3.5rem;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
  aspect-ratio: 1;
}

.contact-info-icon-primary {
  color: #fff;
}

.contact-info-icon-secondary {
  color: #fff;
}

.contact-info-svg-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-svg-icon svg {
  width: 100%;
  height: 100%;
}

.contact-info-label {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  text-align: center;
}

.contact-info-primary {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
}

.contact-info-secondary {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
}

.contact-quick-actions {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--color-bg-muted), var(--color-bg-card));
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.contact-quick-title {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
}

.contact-quick-list {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .contact-quick-list {
    flex-direction: column;
  }
}

.contact-quick-btn {
  background: #237DE8;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.contact-quick-btn-outline {
  background: transparent;
  color: #237DE8;
  border: 2px solid #237DE8;
}

.contact-quick-btn:hover {
  background: #1E6BC7;
}

.contact-quick-btn-outline:hover {
  opacity: 0.9;
}

.contact-locations-section {
  margin-top: 4rem;
}

.contact-locations-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-locations-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.contact-locations-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.contact-locations {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.contact-location {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem 1rem;
  text-align: left;
}

.contact-location-name {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.contact-location-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.contact-location-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-location-btn {
  width: 100%;
  background: #237DE8;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 0;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.contact-location-btn:hover {
  background: #1E6BC7;
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 0;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-main {
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}

.footer-company {
  grid-column: span 1;
  text-align: center;
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text {
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}

.footer-logo-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.footer-logo-image {
  height: 4rem;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.footer-company-desc {
  color: #e0e7ef;
  margin-bottom: 1.5rem;
  max-width: 350px;
  line-height: 1.5;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  padding-top: 3rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  color: #e0e7ef;
  font-size: 1rem;
  text-align: center;
}

.footer-contact-icon {
  color: var(--color-secondary-light);
}

.footer-links {
  grid-column: span 1;
  text-align: center;
}

.footer-links-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: #e0e7ef;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--color-secondary-light);
}

.footer-social-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-label {
  font-size: 1rem;
  color: #e0e7ef;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.25);
}

.footer-newsletter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-newsletter-label {
  font-size: 1rem;
  color: #e0e7ef;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-newsletter-input {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.footer-newsletter-btn {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.footer-newsletter-btn:hover {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem 0;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #e0e7ef;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.footer-bottom-sep {
  margin: 0 0.5rem;
}

.footer-heart {
  color: #ef4444;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-link {
  color: #e0e7ef;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-bottom-link:hover {
  color: var(--color-secondary-light);
}

/* Modal (Booking) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  padding: 2rem 1rem;
}

.modal-content {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-elevated);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  /* Custom scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: rgba(156, 163, 175, 0.5) transparent;
}

/* Webkit scrollbar styling for modal-content */
.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.5);
  border-radius: 3px;
  border: 1px solid var(--color-bg-card);
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(156, 163, 175, 0.7);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem 1rem 2rem;
  border-bottom: 1px solid var(--color-border);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-text);
}

.modal-desc {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.modal-close-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 10;
  border-radius: 4px;
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  transform: scale(1.1);
}

.modal-close-btn:active {
  transform: scale(0.95);
}

.modal-body {
  padding: 2rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.modal-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
}

.modal-step-indicator-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.modal-step-indicator {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.modal-step-indicator-active {
  background: var(--color-primary);
  color: #fff;
}

.modal-step-line {
  width: 2.5rem;
  height: 3px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Custom scrollbar for modal steps */
.modal-steps::-webkit-scrollbar {
  height: 4px;
}

.modal-steps::-webkit-scrollbar-track {
  background: transparent;
}

.modal-steps::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.3);
  border-radius: 2px;
}

.modal-steps::-webkit-scrollbar-thumb:hover {
  background: rgba(156, 163, 175, 0.5);
}

.modal-step {
  display: block;
}

.modal-step-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.modal-step-row {
  display: flex;
  flex-wrap: wrap;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-label {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
}

.modal-input {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border 0.2s;
}

.modal-input:focus {
  border-color: var(--color-primary);
  outline: none;
}

/* Ensure modal inputs in step 4 are properly styled and not overridden */
#step4 .modal-input {
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius) !important;
  padding: 0.75rem 1rem !important;
  font-size: 1rem !important;
  background: var(--color-bg) !important;
  color: var(--color-text) !important;
  transition: border 0.2s !important;
}

#step4 .modal-input:focus {
  border-color: var(--color-primary) !important;
  outline: none !important;
}

/* Field validation styling */
.field-validation-message {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  min-height: 1.25rem;
  transition: opacity 0.2s;
}

.field-validation-message.error {
  color: #dc2626;
}

.field-validation-message.success {
  color: #059669;
}

.field-validation-message.warning {
  color: #d97706;
}

/* Input validation states */
.modal-input.invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.modal-input.valid {
  border-color: #059669 !important;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1) !important;
}

.modal-input.warning {
  border-color: #d97706 !important;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1) !important;
}

.modal-textarea {
  resize: none;
  min-height: 80px;
}

.modal-step-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--color-bg-muted);
  transition: background 0.2s, border 0.2s;
}

.modal-radio-label:hover {
  background: var(--color-accent);
  border-color: var(--color-primary);
}

.modal-radio {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-primary);
}

.modal-confirm-box {
  background: var(--color-bg-muted);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.modal-confirm-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.modal-confirm-label {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.modal-confirm-info {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  gap: 1rem;
  min-height: 60px;
  position: relative;
  z-index: 10;
  background: white;
}

.modal-nav-right {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.modal-btn {
  background: #221760;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 2rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-btn:hover {
  background: #1a0f4a;
}

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

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

/* Ensure Previous button stays on the left */
#prevBtn {
  margin-right: auto;
}

/* Ensure Next/Submit buttons stay on the right */
#nextBtn,
#submitBtn,
#closeBtn {
  margin-left: auto;
}

/* Step 3 specific spacing to prevent calendar overlap */
#step3 {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

#step3 .calendar-container {
  margin-bottom: 4rem;
  padding-bottom: 1rem;
}

/* Ensure proper spacing for modal navigation in step 3 */
#step3 + .modal-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

/* Additional spacing for calendar legend */
#step3 .calendar-legend {
  margin-bottom: 2rem;
}

/* Ensure modal body has proper spacing */
.modal-body {
  position: relative;
  z-index: 1;
}

/* Ensure step 3 content doesn't overlap with navigation */
#step3 .modal-step-row {
  margin-bottom: 2rem;
}

/* Service Pagination Styles */
.service-pagination-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-card);
  border-radius: var(--radius);
}

.service-pagination-info {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
}

.service-pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-pagination-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  background: white;
  color: var(--color-text);
  border-radius: var(--radius);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.service-pagination-btn:hover:not(:disabled) {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.service-pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.service-page-numbers {
  display: flex;
  gap: 0.25rem;
}

.service-page-number {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  background: white;
  color: var(--color-text);
  border-radius: var(--radius);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
  min-width: 2.5rem;
  text-align: center;
}

.service-page-number:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.service-page-number.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* Responsive service pagination */
@media (max-width: 640px) {
  .service-pagination-container {
    padding: 0.75rem;
    margin-top: 1.5rem;
  }
  
  .service-pagination-controls {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service-page-numbers {
    order: -1;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
}

/* Services page search enhancements */
.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.clear-search-btn {
  position: absolute;
  right: 2.5rem;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: color 0.2s ease;
  z-index: 10;
}

.clear-search-btn:hover {
  color: #ef4444;
  background-color: #fef2f2;
}

.loading-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: #6b7280;
}

.loading-spinner {
  width: 2rem;
  height: 2rem;
  border: 2px solid #e5e7eb;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Search results info */
.search-results-info {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}

.search-results-info strong {
  color: #1f2937;
}

/* Step 4 specific styling for smaller validation messages */
#step4 .field-validation-message {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  min-height: 1rem;
  margin-bottom: 0.5rem;
}

/* Icon sizes */
.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

/* Time Picker Styles */
.time-picker-wrapper {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.time-picker {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  max-width: 400px;
  width: 100%;
}

.time-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--color-bg-muted);
  border-radius: var(--radius);
}

.time-input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.time-input {
  width: 60px;
  height: 50px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--color-bg-card);
  color: var(--color-text);
  transition: border-color 0.2s;
}

.time-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.hour-input {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.minute-input {
  background: var(--color-bg-muted);
  color: var(--color-text-muted);
}

.time-separator {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.am-pm-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.am-pm-btn {
  width: 50px;
  height: 30px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-muted);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.am-pm-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.am-pm-btn:hover:not(.active) {
  background: var(--color-accent);
  border-color: var(--color-primary);
}


/* Utility */
.hidden {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {

  .header-container,
  .services-container,
  .about-container,
  .contact-container,
  .footer-container {
    max-width: 1000px;
  }
}

@media (max-width: 900px) {

  .header-container,
  .services-container,
  .about-container,
  .contact-container,
  .footer-container {
    max-width: 800px;
  }

  .hero-grid,
  .about-main,
  .services-info-grid,
  .about-stats,
  .about-team,
  .contact-main,
  .contact-locations {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {

  .header-container,
  .services-container,
  .about-container,
  .contact-container,
  .footer-container {
    max-width: 100vw;
    padding: 0 0.5rem;
  }

  .hero-content,
  .services-header,
  .about-header,
  .contact-header,
  .footer-main {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .hero-title,
  .services-title,
  .about-title,
  .contact-title {
    font-size: 1.5rem;
  }

  .hero-grid,
  .about-main,
  .services-info-grid,
  .about-stats,
  .about-team,
  .contact-main,
  .contact-locations {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-social-newsletter {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* Booking Modal Loading Screen Styles */
.booking-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  backdrop-filter: blur(5px);
}

.booking-loading-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
}

.booking-loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #221760;
  border-radius: 50%;
  animation: booking-spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes booking-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.booking-loading-content h3 {
  color: #1f2937;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.booking-loading-content p {
  color: #6b7280;
  font-size: 16px;
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.booking-loading-note {
  color: #ef4444;
  font-size: 14px;
  font-weight: 500;
  margin-top: 15px;
}

.booking-loading-overlay.hidden {
  display: none;
}

/* Service Search Styles */
.service-search-container {
  margin-bottom: 1.5rem;
}

.service-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.service-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-card);
  color: var(--color-text);
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.service-search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(34, 23, 96, 0.1);
}

.service-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.service-search-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

/* Service item styling for search */
.service-item {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-item[style*="display: none"] {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

/* No results message styling */
.no-results-message {
  text-align: center;
  padding: 20px;
  color: #6b7280;
  font-size: 14px;
  background-color: #f9fafb;
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid #e5e7eb;
}

/* Mobile responsive for service search */
@media (max-width: 600px) {
  .service-search-container {
    margin-bottom: 1rem;
  }
  
  .service-search-input {
    padding: 0.625rem 0.875rem 0.625rem 2.25rem;
    font-size: 0.8rem;
  }
  
  .service-search-icon {
    left: 0.625rem;
    width: 14px;
    height: 14px;
  }
}

/* Calendar Styles for Booking Modal */
.calendar-container {
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 2rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.calendar-nav-btn {
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #374151;
  transition: all 0.2s ease;
}

.calendar-nav-btn:hover {
  background: #e5e7eb;
  border-color: #9ca3af;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 20px;
}

.calendar-day-header {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  padding: 8px 4px;
  background: #f9fafb;
  border-radius: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  position: relative;
}

.calendar-day:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.calendar-day.available {
  color: #1f2937;
  background: #f0f9ff;
  border-color: #bae6fd;
}

.calendar-day.available:hover {
  background: #e0f2fe;
  border-color: #0ea5e9;
}

.calendar-day.unavailable {
  color: #ef4444;
  background: #fef2f2;
  border-color: #fecaca;
  cursor: not-allowed;
  opacity: 0.6;
}

.calendar-day.unavailable:hover {
  background: #fef2f2;
  border-color: #fecaca;
}

.calendar-day.fully-booked {
  color: #d97706;
  background: #fef3c7;
  border-color: #fbbf24;
  cursor: not-allowed;
  opacity: 0.8;
}

.calendar-day.fully-booked:hover {
  background: #fef3c7;
  border-color: #fbbf24;
}

.calendar-day.selected {
  background: #221760;
  color: white;
  border-color: #221760;
  font-weight: 600;
}

.calendar-day.selected:hover {
  background: #221760;
  border-color: #1d4ed8;
}

.calendar-day.other-month {
  color: #9ca3af;
  background: transparent;
  cursor: default;
}

.calendar-day.other-month:hover {
  background: transparent;
  border-color: transparent;
}

.calendar-day.past {
  color: #9ca3af;
  background: #f9fafb;
  cursor: not-allowed;
  opacity: 0.5;
}

.calendar-day.past:hover {
  background: #f9fafb;
  border-color: transparent;
}

.calendar-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #d1d5db;
}

.legend-color.available {
  background: #f0f9ff;
  border-color: #bae6fd;
}

.legend-color.unavailable {
  background: #fef2f2;
  border-color: #fecaca;
}

.legend-color.fully-booked {
  background: #fef3c7;
  border-color: #fbbf24;
}

.legend-color.selected {
  background: #221760;
  border-color: #221760;
}

/* Responsive calendar */
@media (max-width: 640px) {
  .calendar-container {
    padding: 15px;
    margin-bottom: 2rem;
  }
  
  #timePickerContainer {
    margin-top: 1.5rem;
    padding: 1rem;
  }
  
  .calendar-header h4 {
    font-size: 16px;
  }
  
  .calendar-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  
  .calendar-day {
    font-size: 12px;
  }
  
  .calendar-legend {
    gap: 15px;
  }
  
  .legend-item {
    font-size: 11px;
  }
  
  .legend-color {
    width: 14px;
    height: 14px;
  }
}

/* Promotions Page Styles */
.promotion-card {
  transition: opacity 0.2s ease;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.promotion-card:hover {
  opacity: 0.9;
}

.promotion-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #f8f9fa;
  border-radius: 8px;
}

/* Responsive grid adjustments */
@media (max-width: 640px) {
  .promotion-card {
    margin-bottom: 1rem;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .promotion-card {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .promotion-card {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1025px) {
  .promotion-card {
    margin-bottom: 2rem;
  }
}

/* FAQ Chatbot Styles */
.chatbot-container {
  position: fixed;
  bottom: 15px;
  right: 20px;
  z-index: 1000;
  font-family: inherit;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #237DE8;
  border: none;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(35, 125, 232, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(35, 125, 232, 0.6);
}

.chatbot-icon {
  width: 24px;
  height: 24px;
}

.chatbot-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  animation: pulse 2s infinite;
}

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

.chatbot-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 350px;
  height: 550px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.chatbot-window.hidden {
  display: none;
}

.chatbot-header {
  background: #221760;
  color: white;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-avatar svg {
  width: 20px;
  height: 20px;
}

.chatbot-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.chatbot-subtitle {
  font-size: 12px;
  opacity: 0.9;
  margin: 0;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chatbot-close svg {
  width: 16px;
  height: 16px;
}

.chatbot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
  scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.chatbot-message {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.bot-message {
  align-self: flex-start;
}

.user-message {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message-avatar {
  width: 32px;
  height: 32px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.message-avatar svg {
  width: 16px;
  height: 16px;
  color: #6b7280;
}

.message-content {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.bot-message .message-content {
  background: #f3f4f6;
  color: #374151;
}

.user-message .message-content {
  background: #221760;
  color: white;
}

.faq-suggestions {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}

.faq-suggestions li {
  padding: 4px 0;
  font-size: 13px;
}

.chatbot-quick-actions {
  padding: 0 16px 16px;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  transition: opacity 0.3s ease;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}

.chatbot-quick-actions::-webkit-scrollbar {
  height: 4px;
}

.chatbot-quick-actions::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.chatbot-quick-actions::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}

.chatbot-quick-actions::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.quick-action-btn {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  color: #374151;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: fit-content;
}

.quick-action-btn:hover {
  background: #e5e7eb;
  border-color: #d1d5db;
}

.chatbot-input-container {
  border-top: 1px solid #e5e7eb;
  padding: 16px;
}

.chatbot-input-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.chatbot-input {
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.chatbot-input:focus {
  border-color: #221760;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.chatbot-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #221760;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.chatbot-send:hover {
  background: #1d4ed8;
}

.chatbot-send svg {
  width: 16px;
  height: 16px;
}

.chatbot-footer {
  text-align: center;
  margin-top: 8px;
}

.chatbot-footer small {
  color: #6b7280;
  font-size: 11px;
}

.chatbot-footer a {
  color: #221760;
  text-decoration: none;
}

.chatbot-footer a:hover {
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .chatbot-container {
    bottom: 20px;
    right: 10px;
  }
  
  .chatbot-window {
    width: calc(100vw - 20px);
    height: 450px;
    right: -10px;
    transition: bottom 0.3s ease, max-height 0.3s ease, height 0.3s ease;
  }
  
  .chatbot-toggle {
    width: 50px;
    height: 50px;
  }
  
  .chatbot-icon {
    width: 20px;
    height: 20px;
  }
}

/* Additional mobile keyboard support */
@media (max-width: 768px) {
  .chatbot-window {
    transition: bottom 0.3s ease, max-height 0.3s ease, height 0.3s ease;
  }
  
  /* Ensure chatbot messages area is scrollable when height is constrained */
  .chatbot-messages {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
  }
}

/* Pagination Styles */
.pagination-container {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #e5e7eb;
}

.pagination-info {
  color: #6b7280;
  font-size: 14px;
}

.pagination-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pagination-btn {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  background: white;
  color: #374151;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  min-width: 40px;
  text-align: center;
}

.pagination-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.pagination-btn.active {
  background: #221760;
  color: white;
  border-color: #221760;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-ellipsis {
  padding: 8px 4px;
  color: #6b7280;
  font-size: 14px;
}

/* Mobile pagination */
@media (max-width: 640px) {
  .pagination-container {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .pagination-controls {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .pagination-btn {
    min-width: 36px;
    padding: 6px 10px;
    font-size: 13px;
  }
}

/* Booking Success Close Button */
.booking-close-btn {
  background: #221760;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  visibility: visible;
  opacity: 1;
  min-width: 120px;
  justify-content: center;
}

.booking-close-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.booking-close-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.booking-close-btn svg {
  flex-shrink: 0;
}

.booking-close-btn.hidden {
  display: none !important;
}

/* Custom Time Picker Styles */
.custom-time-picker {
  margin-top: 16px;
}

/* Time Picker Container Spacing */
#timePickerContainer {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.time-input-group {
  display: flex;
  align-items: end;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.time-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.time-label {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  text-align: center;
}

.time-select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.time-select:focus {
  outline: none;
  border-color: #221760;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.time-select:hover {
  border-color: #9ca3af;
}

.time-separator {
  font-size: 24px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 6px;
  align-self: end;
}

.time-validation-message {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease;
}

.time-validation-message.loading {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0369a1;
}

.time-validation-message.success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.time-validation-message.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.time-validation-message.hidden {
  display: none;
}

/* Mobile responsive time picker */
@media (max-width: 640px) {
  .time-input-group {
    gap: 8px;
  }
  
  .time-field {
    min-width: 70px;
  }
  
  .time-select {
    padding: 8px 10px;
    font-size: 13px;
  }
  
  .time-separator {
    font-size: 20px;
  }
}

/* Calendar Sunday styling */
.calendar-day.sunday {
  background-color: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

.calendar-day.sunday:hover {
  background-color: #f3f4f6;
  transform: none;
}

/* SVG Icon Styles for All Dashboards */
.user-icon,
.tab-icon,
.card-icon,
.stat-icon,
.form-icon,
.btn-icon,
.badge-icon,
.search-icon,
.filter-icon,
.analytics-icon svg {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.user-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.tab-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.card-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.stat-icon {
  width: 24px;
  height: 24px;
}

.form-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.badge-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.search-icon,
.filter-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

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

/* Ensure proper alignment with text */
.tab-btn,
.form-header h2,
.submit-btn,
.admin-badge,
.search-box,
.filter-btn {
  display: flex;
  align-items: center;
}

.card-title,
.stat-header {
  display: flex;
  align-items: center;
}

.user-item {
  display: flex;
  align-items: center;
}

/* Profile Settings Warning Icon Styles */
.warning-icon,
.warning-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warning-icon svg {
  width: 24px;
  height: 24px;
  color: #f59e0b;
}

.warning-icon-large svg {
  width: 48px;
  height: 48px;
  color: #f59e0b;
}

/* User Avatar SVG Icon Styles */
.user-avatar.doctor svg,
.user-avatar.receptionist svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

/* Appointment Icon Styles */
.appointment-icon {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}

.appointment-time,
.appointment-service,
.appointment-phone,
.appointment-email {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

/* ===== PROMOTIONS SLIDESHOW STYLES ===== */

.promotions-slideshow-section {
  background: #F1F5F9;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.promotions-slideshow-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

.promotions-slideshow-header {
  text-align: center;
  margin-bottom: 3rem;
}

.promotions-slideshow-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.promotions-slideshow-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.promotions-slideshow-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.promotions-slideshow-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #221760;
  border-radius: 1rem 1rem 0 0;
  z-index: 1;
}

.promotions-slideshow {
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: 1rem;
}

.promotions-slideshow-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: 100%;
  flex-wrap: nowrap;
}

.promotion-slide {
  flex: 0 0 33.333333%;
  width: 33.333333%;
  padding: 1rem;
  box-sizing: border-box;
}

.promotion-slide-clone {
  flex: 0 0 33.333333%;
  width: 33.333333%;
  padding: 1rem;
  box-sizing: border-box;
}

.promotion-slide-content {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 250px;
  display: flex;
  flex-direction: column;
}

.promotion-slide-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.promotion-slide-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.promotion-slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}

.promotion-slide-placeholder-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.5rem;
}

.promotion-slide-placeholder-text {
  font-size: 0.875rem;
  font-weight: 500;
}


.promotions-slideshow-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.promotions-slideshow-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.promotions-slideshow-btn:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.promotions-slideshow-btn:active {
  transform: scale(0.95);
}

.promotions-slideshow-btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #374151;
}

.promotions-slideshow-prev {
  margin-left: 1rem;
}

.promotions-slideshow-next {
  margin-right: 1rem;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .promotion-slide {
    flex: 0 0 50%;
    width: 50%;
  }
  
  .promotion-slide-clone {
    flex: 0 0 50%;
    width: 50%;
  }
  
  .promotions-slideshow-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .promotions-slideshow-section {
    padding: 3rem 0;
  }
  
  .promotion-slide {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .promotion-slide-clone {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .promotions-slideshow-title {
    font-size: 1.875rem;
  }
  
  .promotions-slideshow-subtitle {
    font-size: 1rem;
  }
  
  .promotions-slideshow-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .promotions-slideshow-btn-icon {
    width: 1rem;
    height: 1rem;
  }
  
  .promotions-slideshow-prev {
    margin-left: 0.5rem;
  }
  
  .promotions-slideshow-next {
    margin-right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .promotions-slideshow-container {
    padding: 0 0.5rem;
  }
  
  .promotion-slide {
    padding: 0.5rem;
  }
  
  .promotion-slide-content {
    height: 200px;
  }
  
  .promotions-slideshow-title {
    font-size: 1.5rem;
  }
}

/* ===== PROMOTION MODAL STYLES ===== */

.promotion-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.promotion-modal {
  background: white;
  border-radius: 1rem;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: promotionModalFadeIn 0.3s ease-out;
}

@keyframes promotionModalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.promotion-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 50%;
  color: #64748b;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.promotion-modal-close:hover {
  background: #f1f5f9;
  color: var(--color-text);
}

.promotion-modal-body {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promotion-modal-image {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .promotion-modal {
    max-width: 95vw;
    max-height: 95vh;
    margin: 1rem;
  }
  
  .promotion-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.5rem;
  }
  
  .promotion-modal-body {
    padding: 1.5rem;
  }
  
  .promotion-modal-image {
    max-height: 60vh;
  }
}