/* ICT Support Hero Section Styles */
.ict-hero-container {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #1e40af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ict-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.ict-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ict-hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: bold;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeInUp 1s ease-out forwards;
}

.ict-hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #bfdbfe;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.ict-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.ict-service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ict-service-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.ict-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeInUp 1s ease-out 0.7s forwards;
}

@media (min-width: 640px) {
  .ict-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.ict-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  background: #f97316;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.ict-btn-primary:hover {
  background: #ea580c;
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.ict-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #bfdbfe;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.ict-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

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

/* Modal Styles */
.ict-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.ict-modal-content {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 28rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

/* Live Chat Styles */
.ict-chat-button {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.ict-chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.ict-chat-widget {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 1000;
  width: 20rem;
  height: 24rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ict-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .ict-service-card {
    padding: 1rem;
  }

  .ict-chat-widget {
    width: calc(100vw - 2rem);
    right: 1rem;
    left: 1rem;
  }

  .ict-modal-content {
    margin: 1rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .ict-services-grid {
    grid-template-columns: 1fr;
  }

  .ict-cta-buttons {
    flex-direction: column;
  }

  .ict-btn-primary,
  .ict-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
.ict-btn-primary:focus,
.ict-btn-secondary:focus,
.ict-service-card:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .ict-chat-button,
  .ict-chat-widget,
  .ict-modal {
    display: none !important;
  }
}
