/* === BRASOV.TATTOO SERVICES SECTION - ENHANCED GLASSMORPHISM cu POZE MARI 2/3 RATIO === */
/* 🎨 Created by the best web designer in the world */
/* ⚡ Performance-optimized, accessibility-first, mobile-perfect */

/* ======================================================================================== */
/* 🌟 SECTION CONTAINER - MAIN GLASSMORPHISM */
/* ======================================================================================== */

.services-section {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(30px) saturate(200%) brightness(125%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg, 16px);
  margin-bottom: 2.5rem;
  color: var(--text-primary, #ffffff);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 0 60px rgba(16, 212, 99, 0.05);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth, 0.3s ease);
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3) 20%, 
    rgba(255, 255, 255, 0.3) 80%, 
    transparent
  );
  z-index: 1;
}

.services-container {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

/* ======================================================================================== */
/* ⏳ LOADING STATES - ELEGANT & SMOOTH */
/* ======================================================================================== */

.services-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  color: var(--text-primary, #ffffff);
  min-height: 200px;
}

.services-loading .loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--accent-electric, #00d4ff);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
}

.services-loading .loading-text {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-align: center;
}

.services-loading .loading-subtext {
  font-size: 0.9rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.7));
  text-align: center;
}

.loading-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.loading-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-electric, #00d4ff);
  border-radius: 50%;
  animation: dotPulse 1.4s ease-in-out infinite both;
}

.loading-dot:nth-child(1) { animation-delay: -0.32s; }
.loading-dot:nth-child(2) { animation-delay: -0.16s; }
.loading-dot:nth-child(3) { animation-delay: 0s; }

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes dotPulse {
  0%, 80%, 100% { 
    transform: scale(0);
    opacity: 0.5;
  }
  40% { 
    transform: scale(1);
    opacity: 1;
  }
}

/* ======================================================================================== */
/* 🏗️ SERVICES GRID - RESPONSIVE & ADAPTIVE - BIGGER SPACING */
/* ======================================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); /* INCREASED from 320px */
  gap: 2.5rem; /* INCREASED from 2rem */
  margin-bottom: 1.5rem;
}

/* Enhanced grid for larger screens */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* INCREASED */
    gap: 3rem; /* INCREASED */
  }
}

@media (min-width: 1600px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1500px; /* INCREASED */
    margin: 0 auto 1.5rem;
  }
}

/* ======================================================================================== */
/* 🎴 SERVICE CARD - PREMIUM GLASSMORPHISM DESIGN - BIGGER HEIGHT */
/* ======================================================================================== */

.service-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px) saturate(180%) brightness(120%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg, 16px);
  transition: all var(--transition-smooth, 0.3s ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 0 0 0 var(--accent-green, #32d74b);
  display: flex;
  flex-direction: column;
  min-height: 580px; /* INCREASED from 450px for bigger images */
  transform: translateY(0);
  will-change: transform, box-shadow;
}

/* Shimmer effect on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(16, 212, 99, 0.12) 20%, 
    rgba(0, 212, 255, 0.12) 50%,
    rgba(16, 212, 99, 0.12) 80%, 
    transparent
  );
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 0 2px var(--accent-green, #32d74b),
    0 25px 60px rgba(16, 212, 99, 0.15),
    0 8px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-green, #32d74b);
}

.service-card:active {
  transform: translateY(-8px) scale(1.01);
  transition-duration: 0.1s;
}

/* ======================================================================================== */
/* 🏷️ SERVICE BADGES - FLOATING INDICATORS */
/* ======================================================================================== */

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popular-badge {
  background: linear-gradient(135deg, var(--accent-gold, #d4af37), #ffd700);
  color: var(--primary-dark, #000000);
  box-shadow: 
    0 4px 15px rgba(255, 193, 7, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.unavailable-badge {
  background: linear-gradient(135deg, #ff3b30, #dc2626);
  color: white;
  box-shadow: 
    0 4px 15px rgba(255, 59, 48, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ======================================================================================== */
/* 🎯 SERVICE HEADER - ICON & TITLE SECTION */
/* ======================================================================================== */

.service-header {
  display: flex;
  align-items: center;
  padding: 2rem 2rem 1rem;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-electric, #00d4ff), var(--accent-purple, #af52de));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-smooth, 0.3s ease);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-electric, #00d4ff), var(--accent-purple, #af52de));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 
    0 12px 30px rgba(0, 212, 255, 0.3),
    0 8px 25px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.service-card:hover .service-icon::after {
  opacity: 1;
}

.service-basic-info {
  flex: 1;
  min-width: 0;
}

.service-name {
  font-family: 'Orbitron', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--accent-gold, #d4af37);
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, var(--accent-gold, #d4af37), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-category {
  color: var(--text-secondary, rgba(255, 255, 255, 0.8));
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 8px;
  display: inline-block;
}

/* ======================================================================================== */
/* 🖼️ SERVICE IMAGE - MULT MAI MARE cu 2/3 RATIO */
/* ======================================================================================== */

.service-image,
.enhanced-image {
  width: 100%;
  height: 240px; /* INCREASED from 160px - MULT MAI MARE! */
  aspect-ratio: 2/3; /* 🔥 VERTICAL 2/3 RATIO */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-smooth, 0.3s ease);
  position: relative;
  margin: 0 1rem;
  border-radius: 12px;
}

.service-image:hover,
.enhanced-image:hover {
  border-color: var(--accent-electric, #00d4ff);
  box-shadow: 
    0 0 30px rgba(0, 212, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-image img,
.enhanced-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-smooth, 0.3s ease);
  filter: brightness(0.95) contrast(1.1) saturate(1.1);
  border-radius: 12px;
}

.service-card:hover .service-image img,
.service-card:hover .enhanced-image img {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.2) saturate(1.2);
}

.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary, rgba(255, 255, 255, 0.6));
  text-align: center;
  gap: 0.75rem;
  padding: 1rem;
}

.image-placeholder span {
  font-size: 2.5rem;
  opacity: 0.6;
}

.image-placeholder p {
  font-size: 0.85rem;
  margin: 0;
  font-weight: 500;
}

/* ======================================================================================== */
/* 📝 SERVICE INFO - CONTENT SECTION */
/* ======================================================================================== */

.service-info {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.service-description {
  color: var(--text-primary, #ffffff);
  line-height: 1.7;
  font-size: 0.9rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  flex: 1;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* ======================================================================================== */
/* 💰 SERVICE DETAILS - PRICING & DURATION */
/* ======================================================================================== */

.service-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.price-label {
  color: var(--text-secondary, rgba(255, 255, 255, 0.8));
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-range {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-electric, #00d4ff);
  text-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
  white-space: nowrap;
}

.service-duration {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.duration-icon {
  font-size: 1rem;
}

.duration-text {
  color: var(--text-secondary, rgba(255, 255, 255, 0.8));
  font-size: 0.85rem;
  font-weight: 500;
}

/* ======================================================================================== */
/* ✨ SERVICE FEATURES - BENEFIT TAGS */
/* ======================================================================================== */

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--text-primary, #ffffff);
  padding: 0.4rem 0.8rem;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.feature-tag:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.features-more {
  background: var(--accent-electric, #00d4ff);
  color: var(--primary-dark, #000000);
  padding: 0.4rem 0.8rem;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

/* ======================================================================================== */
/* 🎮 SERVICE ACTIONS - BUTTON CONTROLS */
/* ======================================================================================== */

.service-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.service-btn {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-smooth, 0.3s ease);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.service-btn::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.5s;
}

.service-btn:hover::before {
  left: 100%;
}

.service-btn.primary {
  background: linear-gradient(135deg, var(--accent-green, #32d74b), #28a745);
  color: var(--primary-dark, #000000);
  box-shadow: 
    0 6px 20px rgba(50, 215, 75, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-btn.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary, #ffffff);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.service-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.service-btn.primary:hover {
  background: linear-gradient(135deg, var(--accent-electric, #00d4ff), #0099cc);
  box-shadow: 
    0 0 30px rgba(0, 212, 255, 0.4),
    0 8px 25px rgba(0, 212, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.service-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--accent-electric, #00d4ff);
  box-shadow: 
    0 0 25px rgba(0, 212, 255, 0.3),
    0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-btn:active {
  transform: translateY(0) scale(1);
  transition-duration: 0.1s;
}

.service-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.btn-icon {
  font-size: 1rem;
}

/* ======================================================================================== */
/* 😴 UNAVAILABLE STATE - VISUAL FEEDBACK */
/* ======================================================================================== */

.service-card.unavailable {
  opacity: 0.7;
  filter: grayscale(0.4);
}

.service-card.unavailable .service-icon {
  background: linear-gradient(135deg, #8e8e93, #636366);
}

.service-card.unavailable:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ======================================================================================== */
/* 📭 EMPTY STATES - USER GUIDANCE */
/* ======================================================================================== */

.services-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px) saturate(180%) brightness(120%);
  border-radius: var(--border-radius-lg, 16px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.empty-icon {
  font-size: 4rem;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.services-empty h3,
.empty-state h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent-gold, #d4af37);
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.services-empty p,
.empty-state p {
  color: var(--text-secondary, rgba(255, 255, 255, 0.8));
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.retry-btn {
  background: linear-gradient(135deg, var(--accent-electric, #00d4ff), var(--accent-purple, #af52de));
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* ======================================================================================== */
/* 🎪 MODAL SYSTEM - ENHANCED SERVICE DETAILS */
/* ======================================================================================== */

.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-container {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px) saturate(200%);
  border-radius: var(--border-radius-lg, 16px);
  max-width: 900px;
  max-height: 90vh;
  width: 90%;
  overflow-y: auto;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth, 0.3s ease);
  color: #333;
}

.modal-close:hover {
  background: rgba(255, 59, 48, 0.9);
  color: white;
  transform: scale(1.1);
}

/* Continue with remaining modal styles... */

/* ======================================================================================== */
/* 📱 MOBILE RESPONSIVE - PROGRESSIVE ENHANCEMENT */
/* ======================================================================================== */

/* === ENHANCED MOBILE EXPERIENCE === */
@media (max-width: 768px) {
  .services-container {
    padding: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem; /* Add padding for better mobile spacing */
  }
  
  .service-card {
    min-height: 450px; /* OPTIMIZED for mobile */
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .service-header {
    padding: 1.5rem 1.5rem 1rem;
    gap: 1rem;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .service-name {
    font-size: 1.1rem;
  }

  .service-image,
  .enhanced-image {
    height: 160px; /* OPTIMIZED for 3/2 ratio on mobile */
    aspect-ratio: 3/2; /* MAINTAIN 3/2 ratio */
    margin: 0 0.75rem;
  }

  .service-info {
    padding: 1.5rem;
    gap: 1rem;
  }

  .service-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .service-btn {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .services-container {
    padding: 1rem;
  }
  
  .services-grid {
    padding: 0 0.5rem; /* Tighter padding for small screens */
  }

  .service-card {
    min-height: 400px; /* FURTHER OPTIMIZED for small mobile */
  }

  .service-header {
    padding: 1.25rem 1.25rem 0.75rem;
  }

  .service-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .service-name {
    font-size: 1rem;
  }

  .service-image,
  .enhanced-image {
    height: 140px; /* OPTIMIZED for small mobile */
    aspect-ratio: 3/2; /* MAINTAIN 3/2 ratio */
    margin: 0 0.5rem;
  }

  .service-info {
    padding: 1.25rem;
  }

  .service-description {
    font-size: 0.85rem;
  }
}

/* === MOBILE LAYOUT FIXES === */
@media (max-width: 600px) {
  .service-card {
    margin: 0;
    width: 100%;
  }
  
  .service-image,
  .enhanced-image {
    margin: 0 0.5rem;
    border-radius: 8px;
  }
  
  .service-info {
    flex: 1;
    justify-content: space-between;
  }
  
  .service-actions {
    margin-top: auto;
  }
}

/* ======================================================================================== */
/* ♿ ACCESSIBILITY - INCLUSIVE DESIGN */
/* ======================================================================================== */

/* High contrast mode */
@media (prefers-contrast: high) {
  .service-card {
    border-width: 3px;
    background: rgba(255, 255, 255, 0.25);
  }
  
  .service-name {
    color: var(--accent-electric, #00d4ff);
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  }

  .service-btn {
    border-width: 3px;
    font-weight: 800;
  }

  .feature-tag {
    border-width: 2px;
    font-weight: 700;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .service-card::before,
  .service-btn::before {
    transition: none !important;
    animation: none !important;
  }

  .service-card:hover {
    transform: none !important;
  }

  .service-icon {
    transition: none !important;
  }

  .service-card:hover .service-icon {
    transform: none !important;
  }

  .loading-dot {
    animation: none !important;
  }
}

/* Focus management */
.service-card:focus-visible,
.service-btn:focus-visible,
.modal-close:focus-visible {
  outline: 3px solid var(--accent-electric, #00d4ff);
  outline-offset: 2px;
}

/* ======================================================================================== */
/* 🚀 PERFORMANCE OPTIMIZATIONS */
/* ======================================================================================== */

.service-image img,
.enhanced-image img {
  will-change: transform, filter;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.service-card {
  will-change: transform, box-shadow;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.service-icon {
  will-change: transform;
  backface-visibility: hidden;
}