/* PeakPC.Pro Custom Styles - Mobile First */
/* ======================================== */

:root {
  /* Main Brand Colors - Tech-inspired palette */
  --primary-color: #0f172a; /* Deep navy for trust and professionalism */
  --primary-light: #1e293b; /* Lighter navy */
  --secondary-color: #0ea5e9; /* Electric blue for tech feel */
  --secondary-light: #38bdf8; /* Lighter electric blue */
  --accent-color: #f97316; /* Vibrant orange for energy and CTAs */
  --accent-light: #fb923c; /* Lighter orange */
  --success-color: #059669; /* Emerald green */
  --warning-color: #d97706; /* Amber */
  
  /* Topic-Based Colors */
  --tech-color: #0ea5e9; /* Blue for IT Support/Tech */
  --tech-light: #38bdf8;
  --repair-color: #f97316; /* Orange for Repairs/Technical */
  --repair-light: #fb923c;
  --training-color: #8b5cf6; /* Purple for Training/AI */
  --training-light: #a78bfa;
  --location-color: #059669; /* Green for Areas/Location */
  --location-light: #10b981;
  --neutral-color: #6b7280; /* Warm gray for neutral */
  --neutral-light: #9ca3af;
  
  /* Text Colors */
  --text-dark: #0f172a;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  
  /* Background Colors */
  --bg-primary: #f1f5f9; /* Light slate */
  --bg-secondary: #e2e8f0; /* Lighter slate */
  --bg-white: #ffffff;
  --bg-dark: #0f172a;
  
  /* Border and Effects */
  --border-color: #cbd5e1;
  --border-light: #e2e8f0;
  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.15);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.15);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--secondary-color) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  
  /* Topic-Based Gradients */
  --gradient-tech: linear-gradient(135deg, var(--tech-color) 0%, var(--tech-light) 100%);
  --gradient-repair: linear-gradient(135deg, var(--repair-color) 0%, var(--repair-light) 100%);
  --gradient-training: linear-gradient(135deg, var(--training-color) 0%, var(--training-light) 100%);
  --gradient-location: linear-gradient(135deg, var(--location-color) 0%, var(--location-light) 100%);
  --gradient-neutral: linear-gradient(135deg, var(--neutral-color) 0%, var(--neutral-light) 100%);
}

/* Base Typography - Mobile First */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 1.875rem; /* 30px */
  font-weight: 800;
}

/* Hero section h1 gets the gradient effect */
.hero h1 {
  background: none;
  color: white;
  -webkit-text-fill-color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Regular section h1 gets gradient text */
.section h1:not(.hero h1) {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* On dark backgrounds, use white text */
.hero h1,
.contact-info h1,
.footer h1,
[class*="bg-dark"] h1,
[class*="bg-primary"] h1 {
  background: none !important;
  color: white !important;
  -webkit-text-fill-color: white !important;
}

h2 {
  font-size: 1.5rem; /* 24px */
  font-weight: 700;
  color: var(--text-dark);
}

h3 {
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  color: var(--text-dark);
}

/* Ensure headings are visible on dark backgrounds */
.hero h2,
.hero h3,
.contact-info h2,
.contact-info h3,
.footer h2,
.footer h3,
[class*="bg-dark"] h2,
[class*="bg-dark"] h3,
[class*="bg-primary"] h2,
[class*="bg-primary"] h3 {
  color: white !important;
}

/* Card headers are handled by their own specific rules above */

/* Add subtle color to section headings */
.section h2:not(.card-header h2) {
  color: var(--primary-color);
}

.section-alt h2:not(.card-header h2) {
  color: var(--secondary-color);
}

/* Tablet styles */
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem; /* 40px */
  }
  
  h2 {
    font-size: 2rem; /* 32px */
  }
  
  h3 {
    font-size: 1.5rem; /* 24px */
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  h1 {
    font-size: 3rem; /* 48px */
  }
  
  h2 {
    font-size: 2.25rem; /* 36px */
  }
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.navbar-brand:hover {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
  transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
  color: var(--secondary-color);
  font-weight: 600;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--gradient-secondary);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
  left: 10%;
}

/* Fixed navbar spacing - prevents content overlap */
body {
  padding-top: 76px; /* Default navbar height on mobile */
}

@media (min-width: 768px) {
  body {
    padding-top: 82px; /* Slightly taller navbar on larger screens */
  }
}

@media (min-width: 992px) {
  body {
    padding-top: 88px; /* Full navbar height on desktop */
  }
}

/* Hero Section */
.hero {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content .lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero {
    padding: 3rem 0;
    min-height: 70vh;
  }
  
  .hero-content .lead {
    font-size: 1.25rem;
  }
}

/* Buttons */
.btn {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.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 ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-repair);
  border-color: var(--repair-color);
  color: white;
}

.btn-primary:hover {
  background: var(--gradient-repair);
  border-color: var(--repair-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
  }
}

/* Cards */
.card {
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  height: 100%;
  background: white;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-light);
}

.card-header {
  background: var(--gradient-secondary) !important;
  color: white !important;
  border-bottom: none;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
}

/* Override bg-primary-custom in card headers to ensure consistency */
.card-header.bg-primary-custom,
.bg-primary-custom.card-header {
  background: var(--gradient-secondary) !important;
}

/* Also target any card header with text-white class */
.card-header.text-white {
  background: var(--gradient-secondary) !important;
}

/* Ensure all text in card headers is white and visible */
.card-header h1,
.card-header h2, 
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6,
.card-header p,
.card-header span,
.card-header *,
.card-header.bg-primary-custom h1,
.card-header.bg-primary-custom h2,
.card-header.bg-primary-custom h3,
.card-header.bg-primary-custom h4,
.card-header.bg-primary-custom h5,
.card-header.bg-primary-custom h6,
.card-header.text-white h1,
.card-header.text-white h2,
.card-header.text-white h3,
.card-header.text-white h4,
.card-header.text-white h5,
.card-header.text-white h6 {
  color: white !important;
  background: none !important;
  -webkit-text-fill-color: white !important;
}

/* Override any gradient text effects in card headers */
.card-header .text-primary-custom,
.card-header.bg-primary-custom .text-primary-custom,
.card-header.text-white .text-primary-custom {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: white !important;
  background-clip: initial !important;
  color: white !important;
}

/* Topic-Based Card Header Styles */
.card-header.tech-theme {
  background: var(--gradient-tech) !important;
}

.card-header.repair-theme {
  background: var(--gradient-repair) !important;
}

.card-header.training-theme {
  background: var(--gradient-training) !important;
}

.card-header.location-theme {
  background: var(--gradient-location) !important;
}

.card-body {
  padding: 1.5rem;
}

/* Sections */
.section {
  padding: 4rem 0;
  position: relative;
}

.section-alt {
  background: var(--bg-primary);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(14,165,233,0.1)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.section-alt > .container {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

/* Service Icons */
.service-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-secondary);
  color: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.service-icon:hover {
  transform: rotate(5deg) scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* Topic-Based Service Icons */
.service-icon.tech-theme {
  background: var(--gradient-tech);
}

.service-icon.repair-theme {
  background: var(--gradient-repair);
}

.service-icon.training-theme {
  background: var(--gradient-training);
}

.service-icon.location-theme {
  background: var(--gradient-location);
}

@media (min-width: 768px) {
  .service-icon {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }
  
  .section {
    padding: 6rem 0;
  }
}

/* Contact Section */
.contact-info {
  background: var(--gradient-primary);
  color: white;
  padding: 2.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-info .list-unstyled li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-info .list-unstyled li i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
  color: var(--accent-light);
}

.contact-info .list-unstyled a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info .list-unstyled a:hover {
  color: var(--accent-light);
  text-decoration: none;
  transform: translateX(5px);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 3rem 0 1.5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--accent-light);
  text-decoration: none;
  transform: translateX(3px);
}

/* Utilities */
.text-primary-custom {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-primary-custom {
  background: var(--gradient-primary);
}

.border-primary-custom {
  border-color: var(--secondary-color);
}

/* Topic-Based Utility Classes */
.text-tech {
  color: var(--tech-color) !important;
}

.text-repair {
  color: var(--repair-color) !important;
}

.text-training {
  color: var(--training-color) !important;
}

.text-location {
  color: var(--location-color) !important;
}

.bg-tech {
  background: var(--gradient-tech) !important;
}

.bg-repair {
  background: var(--gradient-repair) !important;
}

.bg-training {
  background: var(--gradient-training) !important;
}

.bg-location {
  background: var(--gradient-location) !important;
}

/* Testimonial Slider Styles */
.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  margin: 0 1rem;
}

.quote-icon {
  font-size: 3rem;
  color: var(--repair-color);
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.author-image {
  flex-shrink: 0;
}

.author-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 4px solid var(--bg-primary);
  box-shadow: var(--shadow-md);
}

.author-info {
  text-align: left;
}

.author-info h5 {
  margin-bottom: 0.25rem;
  color: var(--text-dark);
  font-weight: 600;
}

.author-info p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.rating {
  color: #fbbf24;
  font-size: 0.9rem;
}

/* Carousel Controls */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 60px;
  height: 60px;
  background: var(--gradient-repair);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

#testimonialCarousel .carousel-control-prev {
  left: -30px;
}

#testimonialCarousel .carousel-control-next {
  right: -30px;
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 20px 20px;
}

/* Carousel Indicators */
#testimonialCarousel .carousel-indicators {
  bottom: -50px;
}

#testimonialCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--text-muted);
  border: none;
  margin: 0 8px;
  transition: all 0.3s ease;
}

#testimonialCarousel .carousel-indicators button.active {
  background-color: var(--repair-color);
  transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem 1.5rem;
    margin: 0;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .author-info {
    text-align: center;
  }
  
  .author-image img {
    width: 60px;
    height: 60px;
  }
  
  .testimonial-quote {
    font-size: 1.1rem;
  }
  
  #testimonialCarousel .carousel-control-prev,
  #testimonialCarousel .carousel-control-next {
    display: none;
  }
}

/* Responsive spacing */
.py-mobile-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .py-mobile-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Quote page hero section - reduced height by 70% */
.hero.py-mobile-3 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  min-height: 18vh !important; /* Reduced from 60vh */
}

@media (min-width: 768px) {
  .hero.py-mobile-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    min-height: 21vh !important; /* Reduced from 70vh */
  }
}

/* Form Styles */
.form-control {
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  padding: 0.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-control:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Multi-Step Form Styles */
.progress-indicator {
  position: relative;
}

.progress-indicator::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 25%;
  right: 25%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--border-color);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.step-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.step.active .step-number {
  background-color: var(--primary-color);
  color: white;
}

.step.active .step-label {
  color: var(--primary-color);
  font-weight: 600;
}

.step.completed .step-number {
  background-color: var(--success-color);
  color: white;
}

.step.completed .step-label {
  color: var(--success-color);
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Service Option Cards */
.service-option {
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card {
  transition: all 0.3s ease;
  border-color: var(--border-color) !important;
}

.service-option:hover .service-card {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color) !important;
}

.service-option.selected .service-card {
  border-color: var(--primary-color) !important;
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-option.selected .service-card i {
  color: var(--primary-color) !important;
}

/* Problem Option Buttons */
.problem-option {
  margin-bottom: 0.75rem;
}

.problem-btn {
  width: 100%;
  text-align: left;
  padding: 1rem;
  border: 2px solid var(--border-color);
  background-color: white;
  color: var(--text-dark);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.problem-btn:hover {
  border-color: var(--primary-color);
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.problem-btn.selected {
  border-color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
}

.problem-btn .selected-icon {
  color: var(--success-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.problem-btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.problem-btn:hover i,
.problem-btn.selected i {
  transform: translateX(5px);
}

/* Device Type Cards */
.device-option {
  cursor: pointer;
  margin-bottom: 1rem;
}

.device-card {
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  padding: 1rem;
  text-align: center;
}

.device-option:hover .device-card {
  border-color: var(--primary-color);
  background-color: var(--bg-light);
}

.device-option.selected .device-card {
  border-color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
}

.device-option.selected .device-card i {
  color: var(--primary-color);
}

/* OS Selection Cards */
.os-option {
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.os-card {
  padding: 1rem 0.5rem;
  border: 2px solid var(--border-color);
  border-radius: 0.375rem;
  text-align: center;
  transition: all 0.3s ease;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.os-option:hover .os-card {
  border-color: var(--primary-color);
  background-color: var(--bg-light);
}

.os-option.selected .os-card {
  border-color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
}

/* Urgency Selection Cards */
.urgency-option {
  cursor: pointer;
  margin-bottom: 1rem;
}

.urgency-card {
  padding: 1.5rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.urgency-option:hover .urgency-card {
  border-color: var(--primary-color);
  background-color: var(--bg-light);
}

.urgency-option.selected .urgency-card {
  border-color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.1);
}

.urgency-option[data-urgency="urgent"].selected .urgency-card {
  border-color: var(--bs-danger);
  background-color: rgba(220, 38, 38, 0.1);
}

.urgency-option[data-urgency="same-day"].selected .urgency-card {
  border-color: var(--bs-warning);
  background-color: rgba(251, 191, 36, 0.1);
}

/* Contact Method Selection Cards */
.contact-method-option {
  cursor: pointer;
  margin-bottom: 1rem;
}

.contact-method-card {
  padding: 1.5rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.contact-method-option:hover .contact-method-card {
  border-color: var(--primary-color);
  background-color: var(--bg-light);
}

.contact-method-option.selected .contact-method-card {
  border-color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.1);
}

/* Form Navigation */
.form-navigation {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

/* Loading State */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  margin-top: -0.5rem;
  margin-left: -0.5rem;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive adjustments for form */
@media (max-width: 768px) {
  .step-label {
    font-size: 0.75rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
  }
  
  .service-card {
    margin-bottom: 1rem;
  }
  
  .problem-btn {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}