/* ========================================
   ClassLabs - Combined Stylesheet
   ======================================== */
/* ========================================
   CSS Reset & Variables
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --background: #f7f9fc;
  --background-alt: #eef3f7;
  --background-light: #fafcfd;
  --foreground: #2d3748;
  --card: #ffffff;
  --primary: #031927;
  --secondary: #1d3a43;
  --accent: #031927;
  --accent-second: #f5a623;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 25px rgba(0,0,0,0.1);
  --blue-tag: #3b82f6;
  --green-tag: #22c55e;
  --purple-tag: #8b5cf6;
}
/* Section transition backgrounds - visible gradients */
.section-transition-1 {
  background: linear-gradient(180deg, #f7f9fc 0%, #e8f0f4 100%);
}
.section-transition-2 {
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 50%, #fafcfd 100%);
}
.section-transition-3 {
  background: linear-gradient(180deg, #f3f7f9 0%, #f6f9fb 50%, #f8fafc 100%);
}
.section-transition-4 {
  background: linear-gradient(180deg, #fafcfd 0%, #ffffff 50%, #f9fbfc 100%);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}
/* Global utility classes */
.hidden {
  display: none !important;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
/* ========================================
   Navbar
   ======================================== */
.navbar {
  background: #031927;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10000;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
}
.logo-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}
.logo span:first-of-type { color: var(--primary); }
.logo span:last-of-type { color: var(--secondary); }
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.btn-accent {
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-accent:hover { opacity: 0.9; }
.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  padding: 1rem;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  padding: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-menu-btn { display: none; }
}
/* ========================================
   Hero Section (Landing Page)
   ======================================== */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  /* background: url('bg-hero') center center / cover no-repeat; */
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 58, 67, 0.85) 0%, rgba(29, 58, 67, 0.5) 50%, rgba(29, 58, 67, 0.2) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-content {
  max-width: 600px;
  text-align: left;
}
.hero-content .pricing-features .feature:hover {
  background: #253436b5;
}
.hero-content .pricing-features .feature svg {
  color: #ffffff;
}
.hero-content .pricing-features .feature span {
  color: #ffffff;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-title span { color: var(--accent-second); }
.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.hero-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}
.hero-feature-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent-second);
}
.flask-decoration {
  position: absolute;
  top: 20px;
  right: 40px;
  z-index: 10;
}
/* ========================================
   Hero Search Section (View Page)
   ======================================== */
.hero-search {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #e8f4fc 0%, #d4eaf5 50%, #f0f7fb 100%);
  overflow: visible;
  z-index: 10;
}
.hero-search-content {
  position: relative;
  z-index: 20;
}
.hero-search h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.hero-search p {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.rocket-decoration {
  position: absolute;
  top: 20px;
  right: 80px;
  width: 120px;
  height: 120px;
  z-index: 2;
}
/* ========================================
   Search Box
   ======================================== */
.search-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--card);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  width: 100%;
  position: relative;
  z-index: 95;
}
.search-select {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  min-width: 160px;
  position: relative;
}
.search-select:hover {
  border-color: var(--primary);
}
.search-select-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
}
.search-select-content {
  flex: 1;
}
.search-select-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.search-select-value {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--foreground);
}
.search-select-chevron {
  width: 16px;
  height: 16px;
  color: var(--muted-foreground);
}
.search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--muted);
  border-radius: 12px;
  min-width: 200px;
}
.search-input-wrapper svg {
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
}
.search-input-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  outline: none;
  color: var(--foreground);
}
.search-input-wrapper input::placeholder {
  color: var(--muted-foreground);
}
.search-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.search-btn:hover { opacity: 0.9; }
/* ========================================
   Search Results Modal (View Page)
   ======================================== */
/* Backdrop with blur effect */
.search-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 58, 67, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 90;
  animation: backdropFadeIn 0.3s ease-out;
}
.search-backdrop.active {
  display: block;
}
@keyframes backdropFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}
.search-results-modal {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-height: 450px;
  overflow: hidden;
  z-index: 90;
  animation: modalSlideIn 0.3s ease-out;
}
.search-results-modal.active {
  display: block;
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--muted);
}
.search-results-header span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
}
.search-results-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}
.search-results-close:hover {
  background: var(--border);
}
.search-results-close svg {
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
}
.search-results-list {
  max-height: 380px;
  overflow-y: auto;
  padding: 8px;
  height: 300px;
}
.search-results-list::-webkit-scrollbar {
  width: 6px;
}
.search-results-list::-webkit-scrollbar-track {
  background: var(--muted);
}
.search-results-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
/* Search Result Item */
.search-result-item {
  display: flex;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
  align-items: center;
}
.search-result-item:hover {
  background: var(--muted);
}
/* Loading Spinner */
.search-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
}
.search-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--muted);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.search-loading-text {
  color: var(--text-light);
  font-size: 0.9rem;
}
.search-result-image {
  width: 100px;
  height: 75px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-result-image .workshop-card-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 0.65rem;
  padding: 3px 8px;
}
.search-result-content {
  flex: 1;
  min-width: 0;
}
.search-result-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.search-result-desc {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}
.search-result-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.search-result-meta svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}
.search-result-meta .location {
  color: var(--primary);
  font-weight: 500;
}
.search-result-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.search-result-btn:hover {
  opacity: 0.9;
}
/* No Results */
.search-results-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}
.search-results-empty svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
  opacity: 0.4;
  margin-bottom: 12px;
}
.search-results-empty p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}
/* Mobile Responsive for Search Results */
@media (max-width: 768px) {
  .search-results-modal {
    max-height: 350px;
  }
  .search-result-item {
    gap: 12px;
    padding: 10px;
  }
  .search-result-image {
    width: 80px;
    height: 60px;
  }
  .search-result-desc {
    display: none;
  }
  .search-result-btn {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  .search-result-title {
    font-size: 0.85rem;
  }
}
/* Make hero-search-content relative for modal positioning */
.hero-search-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
/* ========================================
   Description Section
   ======================================== */
.description {
  padding: 3rem 0;
}
.description-grid {
  display: grid;
  gap: 2rem;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.description-text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
/* ========================================
   Booking Card
   ======================================== */
.booking-card {
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  padding: 1.25rem;
  height: fit-content;
}
.booking-header {
  display: flex;
  justify-content: center;
}
.booking-age {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.booking-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}
.booking-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
/* Service Price Styling - Professional Pricing Display */
.service-price {
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}
/* Main Price Display */
.service-price .amount {
  font-size: 35px;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  letter-spacing: -0.03em;
  display: inline-block;
}
.service-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--muted-foreground);
  margin-left: 0.5rem;
  vertical-align: top;
  opacity: 0.9;
}
/* Original Price (Crossed Out) */
.service-price .original-price {
  display: block;
  text-decoration: line-through;
  color: var(--muted-foreground);
  font-size: 16px;
  font-weight: 600;
  opacity: 0.7;
  text-align: center;
}
/* Price Note (Payment Type) */
.service-price .price-note {
  display: inline-block;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* Professional Price Layout */
.service-price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* Workshop disabled state */
.workshop-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.workshop-disabled .workshop-checkbox input[type="checkbox"] {
  cursor: not-allowed;
}
/* Workshop image styling */
.workshop-label-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.workshop-image-link {
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.workshop-image-link:hover {
  opacity: 0.8;
}
.workshop-mini-image {
  width: 60px;
  height: 50px;
  border-radius: 6px;
  border: 2px solid var(--border);
  object-fit: cover;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.workshop-image-link:hover .workshop-mini-image {
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.workshop-text-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.workshop-name-text {
  flex: 1;
  line-height: 1.3;
}
/* Current workshop image styling */
.current-workshop-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.current-workshop-name {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* No seats available message */
.no-seats-message {
  color: #e74c3c;
  font-weight: 500;
  font-style: italic;
}
/* Time option disabled state */
.time-option-disabled,
.time-dropdown-item.time-option-disabled {
  color: #999;
  background-color: #f8f8f8;
  cursor: not-allowed;
  text-decoration: line-through;
}
.time-option-disabled:hover,
.time-dropdown-item.time-option-disabled:hover {
  background-color: #f8f8f8;
  color: #999;
}
/* Price breakdown for advance payment display */
.price-breakdown {
  text-align: right;
  line-height: 1.3;
}
.total-price-line {
  font-size: 0.9em;
  color: var(--text);
  margin-bottom: 2px;
}
.advance-price-line {
  font-size: 1em;
  color: var(--text);
}
.advance-price-line strong {
  color: var(--primary);
  font-weight: 600;
}
.original-price-breakdown {
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 0.9em;
  line-height: 1.2;
}
/* When there's a reduced price, show original price first then reduced */
.service-price .original-price + .amount {
  color: #e74c3c;
  position: relative;
}
.service-price .original-price + .amount::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -12px;
  background: #e74c3c;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  content: 'REDUCERE';
}
/* "La cerere" styling */
.service-price:has-text("Disponibil doar la cerere") {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--muted-foreground);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
}
/* Advance Payment Note */
.advance-note {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  border: 1px solid #bbdefb;
  border-radius: 10px;
  padding: 0.875rem 1rem;
  margin: 0.75rem 0;
  font-size: 0.9rem;
  color: #1565c0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.advance-note::before {
  content: "💳";
  font-size: 1.1rem;
  flex-shrink: 0;
}
.advance-note strong {
  color: #0d47a1;
  font-weight: 700;
}
/* Pricing Features */
.pricing-features {
  background: rgba(var(--primary-rgb), 0.03);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 12px;
  /* padding: 1.25rem; */
  margin: 1rem 0;
}
.pricing-features .feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
  transition: all 0.2s ease;
}
.pricing-features .feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pricing-features .feature:hover {
  border-radius: 8px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background: #f5f5f5;
}
.pricing-features .feature svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}
.pricing-features .feature span {
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}
/* ========================================
   Booking Information & Notifications
   ======================================== */
.booking-information {
  margin: 0rem 2rem 1rem 2rem;
  min-height: 0;
  transition: all 0.3s ease;
}
.booking-notification {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.booking-notification.show {
  opacity: 1;
  transform: translateY(0);
}
.booking-notification::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: currentColor;
}
.booking-notification-warning {
  color: #f59e0b;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-color: rgba(245, 158, 11, 0.2);
}
.booking-notification-info {
  color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
  border-color: rgba(59, 130, 246, 0.2);
}
.booking-notification-success {
  color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
  border-color: rgba(16, 185, 129, 0.2);
}
.booking-notification-icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.9;
}
.booking-notification-content {
  flex: 1;
  min-width: 0;
}
.booking-notification-content p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  color: inherit;
}
.booking-notification-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: currentColor;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  opacity: 0.7;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-notification-close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
.booking-notification-close svg {
  width: 16px;
  height: 16px;
}
/* ========================================
   Dropdown
   ======================================== */
.dropdown {
  position: relative;
}
.dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}
.dropdown-btn:hover { border-color: var(--primary); }
.dropdown-btn .left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dropdown-btn svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}
.dropdown-btn .chevron {
  color: var(--muted-foreground);
  transition: transform 0.2s;
}
.dropdown.open .chevron { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: var(--shadow-md);
  z-index: 20;
  overflow: hidden;
}
.dropdown.open .dropdown-menu { display: block; }
.search-select.open .dropdown-menu { display: block; }
.dropdown-item {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.dropdown-item:hover { background: var(--muted); }
.booking-alert {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.btn-book {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.btn-book:hover { 
  opacity: 0.9; 
}
.btn-book:hover::before {
  left: 100%;
}
/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
  padding: 3rem 0;
}
.gallery-section .container {
  position: relative;
}
/* Gradient blob that extends from tab to first image */
.tabs-wrapper {
  position: relative;
}
/* Galerie gradient - teal blob top-left */
.tabs-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse at top left, rgba(29, 95, 116, 0.12) 0%, rgba(29, 95, 116, 0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 24px;
  opacity: 1;
  transition: opacity 0.4s ease;
}
/* Recenzii gradient - warm accent blob from left (same position as gallery) */
.tabs-wrapper::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse at top left, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
/* Toggle effects based on active tab */
.tabs-wrapper.reviews-active::before {
  opacity: 0;
}
.tabs-wrapper.reviews-active::after {
  opacity: 1;
}
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.tab-btn {
  padding: 14px 28px;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--muted-foreground);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 12px;
}
.tab-btn:hover { 
  color: var(--foreground);
  background: rgba(29, 95, 116, 0.05);
}
.tab-btn.active {
  color: var(--secondary);
  font-weight: 700;
  background: transparent;
}
/* Gallery Slider */
.gallery-slider-container {
  position: relative;
  z-index: 1;
}
.gallery-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.gallery-slider * {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
.gallery-slider::-webkit-scrollbar {
  display: none;
}
.gallery-slider.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.gallery-slider .gallery-item {
  flex: 0 0 calc(25% - 0.75rem);
  min-width: 200px;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
}
.gallery-slider .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* Slider Navigation Buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}
.slider-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.slider-nav svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  transition: color 0.2s ease;
}
.slider-nav:hover svg {
  color: white;
}
.slider-nav.prev {
  left: -22px;
}
.slider-nav.next {
  right: -22px;
}
/* Hide nav buttons on mobile */
@media (max-width: 768px) {
  .slider-nav {
    /* display: none; */
  }
  .gallery-slider .gallery-item {
    flex: 0 0 calc(50% - 0.5rem);
    min-width: 150px;
  }
}
.tab-content { display: none; }
.tab-content.active { display: block; }
/* ========================================
   Reviews
   ======================================== */
.reviews-grid {
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.review-card {
  background: var(--card);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(245, 166, 35, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.review-card:hover::before {
  opacity: 1;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(29, 95, 116, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
}
.review-name { font-weight: 500; }
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}
.star {
  width: 16px;
  height: 16px;
  color: var(--accent);
  fill: #eb9900;
}
.star.empty {
  fill: none;
  color: var(--border);
}
.review-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}
/* ========================================
   Trainers
   ======================================== */
.trainers {
  padding: 3rem 0;
}
/* New horizontal layout - 2 per row */
.trainers-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.trainer-card-horizontal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--card);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.trainer-card-horizontal:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.trainer-card-horizontal img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.trainer-info {
  flex: 1;
}
.trainer-name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.trainer-role {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.trainer-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
}
/* Old grid (keep for backwards compatibility) */
.trainers-grid {
  display: grid;
  gap: 2rem;
}
.trainer-card img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.trainer-description {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}
.trainer-description h3 {
  font-size: 1.5rem;
  color: rgba(29, 58, 67, 0.6);
}
@media (min-width: 768px) {
  .trainers-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  .trainer-card-horizontal img {
    width: 120px;
    height: 120px;
  }
}
/* ========================================
   Location & FAQ (Landing Page)
   ======================================== */
.location-faq {
  padding: 3rem 0;
}
.location-faq-grid {
  display: grid;
  gap: 2rem;
}
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.map-container iframe {
  width: 100%;
  height: 200px;
  border: none;
}
.map-info {
  background: var(--card);
  padding: 1rem;
}
.map-info-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.map-info-row svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.map-info-title {
  font-weight: 600;
  color: var(--secondary);
}
.map-info-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--foreground);
  text-decoration: none;
}
.contact-item:hover { color: var(--primary); }
.contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--muted-foreground);
}
.copyright {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
/* FAQ Accordion (Landing Page) */
.faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: bold;
  color: var(--foreground);
  font-size: 1rem;
}
.accordion-header svg {
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
  transition: transform 0.2s;
}
.accordion-item.open .accordion-header svg {
  transform: rotate(180deg);
}
.accordion-content {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}
.accordion-item.open .accordion-content {
  display: block;
}
/* ========================================
   Workshop Cards Section (View Page)
   ======================================== */
.workshops-section {
  padding: 3rem 0;
}
/* Recommended Cards Grid - 2 large + 3 small */
.recommended-grid {
  display: grid;
  gap: 1.5rem;
}
.recommended-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.recommended-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .recommended-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .recommended-bottom {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Workshop Card */
.workshop-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.workshop-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.workshop-card a{
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.workshop-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.workshop-card.large .workshop-card-image {
  height: 220px;
}
.workshop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.workshop-card-image .service-price {
  position: absolute;
  right: 0px;
  padding: 10px;
  background: hsl(0deg 0% 100% / 80%);
  border-bottom-left-radius: 15px;
}
.workshop-card-image .service-price .original-price {
  text-align: center;
  color: #475057;
  font-size: 15px;
}
.search-result-price .original-price {
  display: block;
}
.workshop-card-image .service-price .amount {
  font-size: 25px;
}
.workshop-card-image .service-price .currency {
  font-size: 17px;
}
@media (max-width: 650px) {
  .search-result-item .search-result-btn{ display: none;}
}
@media (max-width: 575px) {
  .search-result-item .search-result-price{ display: none;}
}
.workshop-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}
.tag-chimie { background: #8bbeb2; }
.tag-programare { background: #8bbeb2; }
.tag-robotica { background: #8bbeb2; }
.tag-biologie { background: #8bbeb2; }
.tag-medicina { background: #8bbeb2; }
.workshop-card-decoration {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 50px;
  height: 50px;
}
.workshop-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.workshop-card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  /* margin-bottom: 0.5rem; */
}
.workshop-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.workshop-card-title span {
  font-weight: 400;
  color: var(--foreground);
}
.workshop-card-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.workshop-card-btn:hover { opacity: 0.9; }
.workshop-card-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.workshop-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: auto;
  padding-top: 6px; /* Space when pushed to bottom */
}
.workshop-card-meta svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}
.workshop-card-meta .location {
  color: var(--foreground);
  font-weight: 500;
}
/* Popular Section */
.popular-section {
  padding: 3rem 0;
  background: var(--background-alt);
}
.popular-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .popular-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ========================================
   Partners Section
   ======================================== */
.partners-section {
  padding: 3rem 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 2rem;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.partner-logo {
  height: 70px;
  opacity: 0.6;
  transition: opacity 0.3s;
  filter: grayscale(100%);
}
.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@media (min-width: 768px) {
  .partners-grid {
    gap: 3rem;
  }
  .partner-logo {
    height: 100px;
  }
}
/* ========================================
   FAQ Section (View Page)
   ======================================== */
.faq-section {
  padding: 3rem 0;
  background: var(--background);
}
.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--muted);
}
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.6;
}
/* ========================================
   Location Section (View Page)
   ======================================== */
.location-section {
  padding: 3rem 0;
}
.location-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .location-card {
    flex-direction: row;
    align-items: center;
  }
}
.location-map {
  flex: 1;
  min-height: 200px;
  background: linear-gradient(135deg, #e8f0f4 0%, #d4e4eb 100%);
  position: relative;
  overflow: hidden;
}
.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--card);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 280px;
}
.location-map-overlay svg {
  width: 20px;
  height: 20px;
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}
.location-map-overlay-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--secondary);
}
.location-map-overlay-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.location-info {
  flex: 1;
  padding: 2rem;
}
.location-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.location-info p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}
.location-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.location-btn:hover { opacity: 0.9; }
/* ========================================
   Footer
   ======================================== */
.footer,
footer {
  background: #031927;
  color: white;
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer-brand p,
.footer-col p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin: 1rem 0;
}
.footer-col h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a,
.footer-col a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #009688; }
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.2);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  color: white;
}
/* Footer Contact Info */
.footer-contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-contact-link:hover {
  color: #009688 !important;
}
.footer-contact-link svg {
  flex-shrink: 0;
}
/* ANPC Badges */
.anpc-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.anpc-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.anpc-badge:hover {
  background: rgba(255,255,255,0.1);
}
.anpc-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1a5f4a, #2d8a6e);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.anpc-icon.sol-icon {
  background: linear-gradient(135deg, #1a3d5c, #2d6a9e);
}
.anpc-logo,
.sol-logo {
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.anpc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.anpc-title {
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  line-height: 1.2;
}
.anpc-link {
  color: var(--primary);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
/* Payment Icons */
.payment-icons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.payment-icon {
  padding: 0.4rem 0.6rem;
  background: white;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-icon.visa {
  color: #1a1f71;
  font-style: italic;
}
.payment-icon.mastercard {
  position: relative;
  padding: 0.4rem 1rem;
}
.payment-icon.mastercard .mc-circles::before,
.payment-icon.mastercard .mc-circles::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.payment-icon.mastercard .mc-circles::before {
  background: #eb001b;
  left: 6px;
}
.payment-icon.mastercard .mc-circles::after {
  background: #f79e1b;
  left: 14px;
}
.payment-icon.netopia {
  color: #635bff;
  font-size: 0.55rem;
}
/* Report Problem Button */
.report-problem-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.1);
  color: white !important;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.2s;
}
.report-problem-btn:hover {
  background: #607d8b;
  color: white !important;
}
.report-problem-btn svg {
  flex-shrink: 0;
}
.programeaza-workshop-btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #ff5722;
  color: white !important;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.2s;
  width: auto !important;
  border-radius: 10px !important;
  font-size: 14px;
}
/* Footer Bottom Updated */
.footer-bottom {
  display: block;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a {
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: #009688 !important;
}
.footer-bottom-link {
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-link:hover {
  color: #009688 !important;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: center;
  }
}
/* ========================================
   404 Error Page
   ======================================== */
.error-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f8fafb 0%, #e8f4f8 100%);
}
.error-card {
  text-align: center;
  max-width: 500px;
  padding: 3rem 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(29, 58, 67, 0.1);
}
.error-code {
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary) 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.error-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.error-message {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.btn-error-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--primary);
  color: white !important;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(29, 58, 67, 0.15);
}
.btn-error-home:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 58, 67, 0.2);
}
.btn-error-home svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .error-code {
    font-size: 5rem;
  }
  .error-title {
    font-size: 1.5rem;
  }
  .error-card {
    padding: 2rem 1.5rem;
  }
}
/* ========================================
   Image Zoom Modal
   ======================================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(29, 58, 67, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.active { display: flex; }
.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  max-height: 90vh;
}
.modal img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
}
.modal-title {
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
  opacity: 0.9;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.modal-nav.prev { left: 1rem; }
.modal-nav.next { right: 1rem; }
/* ========================================
   Responsive Breakpoints
   ======================================== */
@media (min-width: 768px) {
  .hero {
    min-height: 500px;
  }
  .hero-title { font-size: 4rem; }
  .description-grid {
    grid-template-columns: 1fr 320px;
  }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .location-faq-grid {
    grid-template-columns: 1fr 1fr;
  }
  .map-container iframe { height: 250px; }
}
@media (min-width: 1024px) {
  .hero { padding: 4rem 0; }
}
/* ========================================
   All Workshops Page (all.html)
   ======================================== */
/* Simple Hero */
.hero-simple {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 4rem 0;
  text-align: center;
}
.hero-simple h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero-simple p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}
/* City Sections */
.city-section {
  padding: 3rem 0;
  background: var(--background);
}
.city-section-alt {
  background: var(--background-alt);
}
.city-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.city-header svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}
.city-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}
.city-workshops-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .city-workshops-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .city-workshops-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-simple h1 {
    font-size: 3rem;
  }
}
/* ========================================
   Search Box for All Workshops Page
   ======================================== */
.search-box-simple {
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.search-box-simple .search-select {
  min-width: 160px;
}
.search-box-simple .search-input-wrapper {
  flex: 1;
  min-width: 200px;
}
.search-input-large input {
  font-size: 1rem;
}
/* Results Counter */
.results-counter {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
}
/* No Results Message */
.no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  text-align: center;
  color: #64748b;
  margin-top: 1rem;
}
.no-results svg {
  width: 48px;
  height: 48px;
  stroke: #ffffff;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.no-results p {
  font-size: 1.1rem;
}
.no-results span {
  font-weight: 600;
  color: var(--secondary);
}
/* Workshop card hidden state */
.workshop-card.hidden {
  display: none !important;
}
/* City section hidden state */
.city-section.hidden {
  display: none !important;
}
/* Highlight matching text */
.highlight {
  background-color: #fef3c7;
  padding: 0 2px;
  border-radius: 2px;
}
/* Responsive adjustments for search box */
@media (max-width: 768px) {
  .search-box-simple {
    flex-direction: column;
  }
  .search-box-simple .search-select {
    width: 100%;
  }
  .search-box-simple .search-input-wrapper {
    width: 100%;
  }
  .search-box-simple .search-btn {
    width: 100%;
  }
}
/* ========================================
   Terms & Conditions Page
   ======================================== */
.terms-hero {
  background: linear-gradient(135deg, #1d5f74 0%, #2a7a8c 100%);
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
}
.terms-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.terms-hero p {
  opacity: 0.8;
  font-size: 1rem;
}
.terms-content {
  padding: 2rem 0 4rem;
  background: #f8fafb;
}
.terms-content .terms-wrapper {
  /* max-width: 800px; */
  margin: 0 auto;
  padding: 0 1rem;
}
/* Custom Terms Content */
.terms-content .custom-terms-content {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  line-height: 1.7;
  color: #4a5568;
}
.terms-content .custom-terms-content h1,
.terms-content .custom-terms-content h2,
.terms-content .custom-terms-content h3,
.terms-content .custom-terms-content h4 {
  color: #1d3a43;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
}
.terms-content .custom-terms-content h1 {
  font-size: 2rem;
  border-bottom: 2px solid #1d5f74;
  padding-bottom: 0.5rem;
  margin-top: 0;
}
.terms-content .custom-terms-content h2 {
  font-size: 1.5rem;
  color: #1d5f74;
}
.terms-content .custom-terms-content h3 {
  font-size: 1.25rem;
}
.terms-content .custom-terms-content h4 {
  font-size: 1.1rem;
}
.terms-content .custom-terms-content p {
  margin: 1rem 0;
  text-align: justify;
}
.terms-content .custom-terms-content ul,
.terms-content .custom-terms-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}
.terms-content .custom-terms-content li {
  margin: 0.5rem 0;
}
.terms-content .custom-terms-content strong {
  color: #1d3a43;
  font-weight: 600;
}
.terms-content .custom-terms-content a {
  color: #1d5f74;
  text-decoration: underline;
}
.terms-content .custom-terms-content a:hover {
  color: #2a7a8c;
}
/* Not Published Message */
.terms-content .not-published-message {
  background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}
.terms-content .message-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
.terms-content .message-icon {
  color: #ff9800;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(255, 152, 0, 0.2));
}
.terms-content .message-header h3 {
  font-size: 1.5rem;
  color: #1d3a43;
  margin: 0;
  font-weight: 600;
}
.terms-content .message-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0.75rem 0;
}
.terms-content .message-content p:first-child {
  font-weight: 500;
}
/* Always Visible Sections */
.terms-content .always-visible {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #1d5f74;
}
.terms-content .always-visible h4 {
  color: #1d3a43;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.terms-content .always-visible p {
  color: #4a5568;
  line-height: 1.6;
  margin: 1rem 0;
}
/* Contact Section */
.terms-content .contact-section {
  border-left-color: #2a7a8c;
}
.terms-content .merchant-contact {
  background: #f7fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
}
.terms-content .merchant-contact p {
  margin: 0.75rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.terms-content .merchant-contact p:first-child {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d3a43;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}
.terms-content .merchant-contact strong {
  min-width: 140px;
  color: #1d3a43;
  font-weight: 500;
}
.terms-content .merchant-contact a {
  color: #1d5f74;
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.terms-content .merchant-contact a:hover {
  background: #1d5f74;
  color: white;
  text-decoration: none;
}
/* Support Section */
.terms-content .support-section {
  border-left-color: #2a7a8c;
}
.terms-content .support-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.terms-content .support-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #1d5f74 0%, #2a7a8c 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.terms-content .support-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: white;
}
.terms-content .support-link svg {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
/* Platform Terms Section */
.terms-content .platform-terms-section {
  border-left-color: #2a7a8c;
}
.terms-content .terms-article {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.terms-content .terms-article h2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1d3a43;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #1d5f74;
}
.terms-content .terms-article h2:first-child {
  margin-top: 0;
}
.terms-content .terms-article p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.terms-content .terms-article ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: #4a5568;
  line-height: 1.8;
}
.terms-content .terms-article ul li {
  margin-bottom: 0.5rem;
}
.terms-content .terms-article strong {
  color: #1d3a43;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .terms-hero {
    padding: 5rem 0 3rem;
  }
  .terms-hero h1 {
    font-size: 2rem;
  }
  .terms-content {
    padding: 1rem 0 3rem;
  }
  .terms-content .terms-wrapper {
    margin: 0 0.5rem;
  }
  .terms-content .custom-terms-content,
  .terms-content .always-visible {
    padding: 1.5rem;
  }
  .terms-content .not-published-message {
    padding: 2rem 1.5rem;
  }
  .terms-content .custom-terms-content h1 {
    font-size: 1.75rem;
  }
  .terms-content .custom-terms-content h2 {
    font-size: 1.35rem;
  }
  .terms-content .merchant-contact {
    padding: 1rem;
  }
  .terms-content .merchant-contact p {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .terms-content .merchant-contact strong {
    min-width: auto;
  }
  .terms-content .support-links {
    gap: 0.75rem;
  }
  .terms-content .support-link {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
  .terms-content .terms-article {
    padding: 1.5rem;
  }
  .terms-content .terms-article h2 {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .terms-content .message-header h3 {
    font-size: 1.25rem;
  }
  .terms-content .message-content p {
    font-size: 1rem;
  }
  .terms-content .always-visible h4 {
    font-size: 1.1rem;
  }
}
/* ========================================
   Contact Page
   ======================================== */
.contact-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
}
.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-hero p {
  opacity: 0.8;
  font-size: 1.125rem;
}
.contact-content {
  padding: 4rem 0;
  background: #f8fafb;
}
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}
.contact-info-card,
.contact-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.contact-info-card h2,
.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d3a43;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #1d5f74;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e8f4f8 0%, #d4eaf2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: #1d5f74;
}
.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-info-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-info-value {
  font-size: 0.95rem;
  color: #1d3a43;
  font-weight: 500;
}
.contact-link {
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover {
  color: #1d5f74;
}
/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  /* gap: 0.5rem; */
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1d3a43;
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1d3a43;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafcfd;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1d5f74;
  box-shadow: 0 0 0 3px rgba(29, 95, 116, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-submit-btn {
  background: #091927;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.contact-submit-btn:hover {
  background: #166a7d;
  transform: translateY(-1px);
}
.contact-submit-btn:active {
  transform: translateY(0);
}
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 5rem 0 3rem;
  }
  .contact-hero h1 {
    font-size: 2rem;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }
  .contact-info-card h2,
  .contact-form-card h2 {
    font-size: 1.25rem;
  }
}
/* ========================================
   Booking Modal
   ======================================== */
.booking-modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 58, 67, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  animation: backdropFadeIn 0.3s ease-out;
}
.booking-modal-backdrop.active {
  display: block;
}
.booking-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow: hidden;
  z-index: 1001;
  animation: modalPopIn 0.3s ease-out;
}
.booking-modal.active {
  display: flex;
  flex-direction: column;
}
@keyframes modalPopIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}
.booking-modal-header h2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1d3a43;
  margin: 0;
}
.booking-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
  color: #64748b;
}
.booking-modal-close:hover {
  background: #f1f5f9;
  color: #1d3a43;
}
.booking-modal-body {
  padding: 1.5rem 2rem;
  overflow-y: auto;
  flex: 1;
}
.booking-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1d3a43;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #1d5f74;
}
.booking-section + .booking-section {
  margin-top: 1.5rem;
}
/* Current Workshop (fixed, always included) */
.current-workshop {
  padding: 1rem;
  background: linear-gradient(135deg, #e8f4f8 0%, #d4eaf2 100%);
  border-radius: 12px;
  border: 2px solid #1d5f74;
}
.current-workshop-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.current-workshop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: #1d5f74;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
}
.current-workshop-name {
  flex: 1;
  font-weight: 600;
  color: #1d3a43;
}
.current-workshop-price {
  font-weight: 600;
  color: #1d5f74;
}
/* Upsell hint */
.upsell-hint {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1rem;
}
/* Add-on workshops */
.addon-workshop {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8fafb;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, background 0.2s;
}
.addon-workshop.selected {
  border-color: #1d5f74;
  background: #f0f7f9;
}
.workshop-option {
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: #f8fafb;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, background 0.2s;
}
.workshop-option:has(input:checked) {
  border-color: #1d5f74;
  background: #f0f7f9;
}
.workshop-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
  color: #1d3a43;
}
.workshop-checkbox input {
  display: none;
}
.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.workshop-checkbox input:checked + .checkbox-custom {
  background: #1d5f74;
  border-color: #1d5f74;
}
.workshop-checkbox input:checked + .checkbox-custom::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}
.workshop-label-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 1rem;
}
.workshop-label {
  font-size: 0.95rem;
}
.workshop-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.workshop-time-select {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
.workshop-time-select.hidden {
  display: none;
}
.workshop-time-select label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 0.5rem;
}
.time-dropdown {
  position: relative;
}
.time-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #1d3a43;
  cursor: pointer;
  transition: border-color 0.2s;
}
.time-dropdown-btn:hover {
  border-color: #1d5f74;
}
.time-dropdown-btn .chevron {
  width: 18px;
  height: 18px;
  color: #64748b;
  transition: transform 0.2s;
}
.time-dropdown.open .time-dropdown-btn .chevron {
  transform: rotate(180deg);
}
.time-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 100;
  overflow: hidden;
}
.time-dropdown.open .time-dropdown-menu {
  display: block;
}
.time-dropdown-item {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #1d3a43;
  cursor: pointer;
  transition: background 0.2s;
}
.time-dropdown-item:hover {
  background: #1d5f74;
  color: white;
}
.time-dropdown-item:first-child {
  padding-top: 14px;
}
.time-dropdown-item:last-child {
  padding-bottom: 14px;
}
.booking-summary {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #f0f7f9 0%, #e8f4f8 100%);
  border-radius: 12px;
  border: 1px solid #d4eaf2;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}
.summary-row.total {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d3a43;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #d4eaf2;
  margin-bottom: 0;
}
.price-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.original-price {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 400;
}
.savings-row {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #166534;
}
.booking-modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #e2e8f0;
  background: #f8fafb;
}
.btn-continue-payment {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #1d5f74 0%, #2a7a8c 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-continue-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 95, 116, 0.3);
}
.btn-continue-payment:active {
  transform: translateY(0);
}
@media (max-width: 600px) {
  .booking-modal {
    width: 95%;
    max-height: 95vh;
  }
  .booking-modal-header,
  .booking-modal-body,
  .booking-modal-footer {
    padding: 1rem 1.25rem;
  }
  .booking-modal-header h2 {
    font-size: 1.15rem;
  }
}
/* ========================================
   Checkout Page
   ======================================== */

/* OnePageValidationMessage - Top Right Fixed Notification */
.purchase-validation-message {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 350px;
  max-width: 450px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-left: 4px solid var(--primary);
  z-index: 10000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  padding: 16px;
  gap: 12px;
  font-family: inherit;
}

.purchase-validation-message.show {
  opacity: 1;
  transform: translateX(0);
}

.purchase-validation-message.hiding {
  opacity: 0;
  transform: translateX(100%);
}

/* Validation Message Types */
.purchase-validation-message.error {
  border-left-color: #e74c3c;
  background: #fefefe;
}

.purchase-validation-message.success {
  border-left-color: #27ae60;
  background: #f8fffe;
}

.purchase-validation-message.warning {
  border-left-color: #f39c12;
  background: #fffef8;
}

.purchase-validation-message.info {
  border-left-color: var(--primary);
  background: #f8fcff;
}

/* Validation Message Icon */
.validation-message-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.purchase-validation-message.error .validation-message-icon {
  color: #e74c3c;
}

.purchase-validation-message.success .validation-message-icon {
  color: #27ae60;
}

.purchase-validation-message.warning .validation-message-icon {
  color: #f39c12;
}

.purchase-validation-message.info .validation-message-icon {
  color: var(--primary);
}

.validation-message-icon svg {
  width: 100%;
  height: 100%;
}

/* Validation Message Content */
.validation-message-content {
  flex: 1;
  line-height: 1.4;
}

.validation-message-content p {
  margin: 0;
  font-size: 14px;
  color: #2c3e50;
  font-weight: 500;
}

.validation-message-content p:first-child {
  font-weight: 600;
}

/* Validation Message Close Button */
.validation-message-close {
  flex-shrink: 0;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #7f8c8d;
  transition: all 0.2s ease;
  padding: 0;
  margin: -2px -2px 0 0;
}

.validation-message-close:hover {
  background: #ecf0f1;
  color: #2c3e50;
  transform: scale(1.1);
}

.validation-message-close svg {
  width: 14px;
  height: 14px;
}

/* Auto-hide progress bar */
.validation-message-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.validation-message-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary);
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  animation: progressBar 10s linear forwards;
}

.purchase-validation-message.error .validation-message-progress::after {
  background: #e74c3c;
}

.purchase-validation-message.success .validation-message-progress::after {
  background: #27ae60;
}

.purchase-validation-message.warning .validation-message-progress::after {
  background: #f39c12;
}

@keyframes progressBar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .purchase-validation-message {
    top: 15px;
    right: 15px;
    left: 15px;
    min-width: unset;
    max-width: unset;
    width: calc(100% - 30px);
  }
}

/* Multiple notifications stacking */
.purchase-validation-message:nth-child(2) {
  top: 110px;
}

.purchase-validation-message:nth-child(3) {
  top: 200px;
}

.purchase-validation-message:nth-child(4) {
  top: 290px;
}

.checkout-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 3rem 0;
  text-align: center;
}
.checkout-hero h1 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.checkout-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}
.checkout-section {
  padding: 3rem 0;
  background: var(--background);
}
.checkout-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}
.checkout-form-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.checkout-payment-column {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.checkout-card {
  background: var(--card);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.checkout-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
}
/* Order Summary */
.order-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.order-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--background-alt);
  border-radius: 12px;
}
.order-item-image {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.order-item-details h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}
.order-item-time {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}
.order-item-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}
/* Checkout Form */
.checkout-card .form-group {
  margin-bottom: 1rem;
}
.checkout-card .form-group:last-child {
  margin-bottom: 0;
}
.checkout-card label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.label-hint {
  font-weight: 400;
  color: var(--muted-foreground);
  font-size: 0.85rem;
}
.checkout-card input,
.checkout-card select,
.checkout-card textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--card);
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.checkout-card input:focus,
.checkout-card select:focus,
.checkout-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 95, 116, 0.1);
}
.checkout-card input::placeholder,
.checkout-card textarea::placeholder {
  color: var(--muted-foreground);
}
.checkout-card select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group-half {
  width: 50%;
}
/* Stripe Card Placeholder */
.stripe-card-container {
  margin-bottom: 1rem;
}
.stripe-placeholder {
  padding: 0.5rem 0;
}
.stripe-input-group {
  margin-bottom: 1rem;
}
.stripe-input-group:last-child {
  margin-bottom: 0;
}
.stripe-input-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}
.stripe-input-mock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--background-light);
}
.card-placeholder {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}
.card-icons {
  display: flex;
  gap: 0.5rem;
}
.card-icon {
  width: 24px;
  height: 24px;
  color: var(--muted-foreground);
}
.stripe-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stripe-secure-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  justify-content: center;
  margin-top: 10px;
}
.secure-icon {
  width: 16px;
  height: 16px;
}
/* Terms Checkbox */
.checkout-card label.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
}
.terms-checkbox input {
  display: none;
}
.terms-checkbox .checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--card);
  transition: all 0.2s;
  position: relative;
  margin-top: 2px;
}
.terms-checkbox input:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}
.terms-checkbox input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.terms-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--foreground);
  line-height: 1.5;
}
.terms-text a {
  color: var(--primary);
  text-decoration: underline;
}
.terms-text a:hover {
  color: var(--secondary);
}
/* Order Total Box */
.order-total-box {
  background: linear-gradient(135deg, #f0f7f9 0%, #e8f4f8 100%);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid #d4eaf2;
}
.total-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.total-note {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}
/* Pay Button */
.btn-pay {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #1d5f74 0%, #031927 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 95, 116, 0.3);
}
.btn-pay:active {
  transform: translateY(0);
}
/* Checkout Responsive */
@media (max-width: 900px) {
  .checkout-wrapper {
    grid-template-columns: 1fr;
  }
  .checkout-payment-column {
    position: static;
  }
}
@media (max-width: 600px) {
  .checkout-hero {
    padding: 2rem 0;
  }
  .checkout-hero h1 {
    font-size: 1.5rem;
  }
  .checkout-section {
    padding: 2rem 0;
  }
  .checkout-card {
    padding: 1.25rem;
  }
  .form-row,
  .stripe-row {
    grid-template-columns: 1fr;
  }
  .order-item {
    flex-direction: column;
  }
  .order-item-image {
    width: 100%;
    height: 120px;
  }
}
/* Footer Logo Styling */
.footer-logo {
  color: white;
}
.footer-logo-icon {
  stroke: var(--primary);
}
.footer-logo-primary {
  color: var(--primary);
}
/* ========================================
   Thanks Page
   ======================================== */
.thanks-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 3rem 0;
  text-align: center;
}
.thanks-hero h1 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.thanks-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}
.thanks-section {
  padding: 4rem 0;
  background: var(--background);
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.thanks-card {
  display: none;
  max-width: 550px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
}
.thanks-card.active {
  display: block;
}
.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.thanks-icon svg {
  width: 40px;
  height: 40px;
}
.thanks-icon.success {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}
.thanks-icon.success svg {
  color: #059669;
}
.thanks-icon.error {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}
.thanks-icon.error svg {
  color: #dc2626;
}
.thanks-icon.warning {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}
.thanks-icon.warning svg {
  color: #d97706;
}
.thanks-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.thanks-message {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.thanks-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.btn-thanks-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-thanks-primary:hover {
  background: var(--secondary);
  transform: translateY(-1px);
}
.btn-thanks-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}
.btn-thanks-secondary:hover {
  background: var(--muted);
  border-color: var(--primary);
}
@media (max-width: 600px) {
  .thanks-card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  .thanks-icon {
    width: 64px;
    height: 64px;
  }
  .thanks-icon svg {
    width: 32px;
    height: 32px;
  }
  .thanks-card h2 {
    font-size: 1.25rem;
  }
}
/* Contact Response Styles */
.contact-response {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
/* Alert Success */
.contact-response.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #22c55e;
}
.contact-response.alert-success::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}
/* Alert Warning */
.contact-response.alert-warning {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
}
.contact-response.alert-warning::before {
    content: "⚠";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}
/* Alert Error */
.contact-response.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
}
.contact-response.alert-error::before {
    content: "✕";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}
/* Alert content wrapper */
.contact-response .alert-content {
    flex: 1;
    display: inline;
    margin-left: 5px;
}
.description-grid .image img{ 
  max-height: 650px; 
  border-radius: 10px;
  max-width: 100%;
}
.availability-note{
  color: #F44336;
  text-align: center;
}
.no-services{
  background: #e7e7e7;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #c3c3c3;
  margin-top: -50px;
  margin-bottom: 15px;
}
.term-expired{
  background: #e7e7e7;
  padding: 10px 10px;
  border-radius: 5px;
  border: 1px solid #c3c3c3;
  margin-bottom: 15px;
  display: block;
}
