/* Modern Styles for Lux Corp IT Division */

/* CSS Custom Properties for consistent theming */
:root {
  --primary-color: #333333;
  --primary-dark: #000000;
  --primary-light: #555555;
  --secondary-color: #666666;
  --accent-color: #888888;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --text-muted: #777777;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  --border-radius: 0.75rem;
  --border-radius-lg: 1rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography improvements */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  letter-spacing: -0.025em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--text-dark);
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Modern card styling */
.modern-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.modern-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Hero section modernization */
.modern-hero {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-section {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.05) 0%, rgba(85, 85, 85, 0.05) 100%);
  border-radius: var(--border-radius);
  border: 1px solid rgba(51, 51, 51, 0.1);
}

.cta-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.highlight {
  color: var(--primary-color);
  font-weight: 700;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Button modernization */
.btn {
  border-radius: var(--border-radius);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

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

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Services list modernization */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(51, 51, 51, 0.03);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.service-item:hover {
  background: rgba(51, 51, 51, 0.08);
  transform: translateX(4px);
}

.service-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 0.1rem;
  min-width: 20px;
}

.service-item span {
  color: var(--text-dark);
  font-weight: 500;
}

/* Service icon wrapper */
.service-icon-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}

.tm-section-icon {
  color: var(--primary-color);
  filter: drop-shadow(0 4px 6px rgba(37, 99, 235, 0.3));
}

/* Company info styling */
.company-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-section h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.company-data {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-data li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.company-data li:last-child {
  border-bottom: none;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.75rem;
  background: rgba(51, 51, 51, 0.05);
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-weight: 500;
}

.contact-link:hover {
  background: rgba(51, 51, 51, 0.1);
  color: var(--primary-dark);
  text-decoration: none;
  transform: translateX(4px);
}

/* About section features */
.highlight-box {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  margin-bottom: 2rem;
}

.highlight-box h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-box {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--border-radius);
  background: rgba(51, 51, 51, 0.02);
  border: 1px solid rgba(51, 51, 51, 0.1);
  transition: var(--transition);
  height: 100%;
}

.feature-box:hover {
  background: rgba(51, 51, 51, 0.05);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.feature-box h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.feature-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-about {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(102, 102, 102, 0.05) 0%, rgba(136, 136, 136, 0.1) 100%);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(102, 102, 102, 0.2);
}

/* Pricing cards */
.pricing-card {
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.02) 0%, rgba(85, 85, 85, 0.02) 100%);
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.pricing-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.pricing-item.special {
  background: linear-gradient(135deg, rgba(102, 102, 102, 0.05) 0%, rgba(136, 136, 136, 0.1) 100%);
  border-color: var(--secondary-color);
}

.service-name {
  font-weight: 500;
  color: var(--text-dark);
  flex: 1;
}

.service-price {
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}

.service-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.25rem;
}

.pricing-category {
  margin-bottom: 2rem;
}

.pricing-category h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

/* Contact section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(51, 51, 51, 0.03);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.contact-item strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.quick-contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Form styling */
.form-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-align: center;
  font-style: italic;
}

.modern-input {
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  width: 100%;
}

.modern-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.modern-submit {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  background: var(--gradient-primary);
  border: none;
  color: white;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.modern-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Section background improvements */
.bg-light {
  background: var(--bg-light);
}

/* Responsive design improvements */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .modern-card {
    padding: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .feature-box {
    margin-bottom: 1.5rem;
  }
  
  .pricing-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .service-price {
    align-self: flex-end;
  }
  
  .quick-contact-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .modern-hero {
    padding: 2rem 1.5rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .modern-card {
    padding: 1rem;
  }
  
  .cta-section {
    padding: 1.5rem;
  }
}

/* Animation improvements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus improvements for accessibility */
.btn:focus,
.modern-input:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .modern-card {
    box-shadow: none;
    border: 1px solid var(--border-light);
  }
  
  .btn {
    background: white !important;
    color: var(--text-dark) !important;
    border: 1px solid var(--text-dark) !important;
  }
}

/* Loading state for forms */
.modern-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Enhanced sidebar for modern look */
.tm-sidebar {
  backdrop-filter: blur(10px);
}

.nav-link {
  transition: var(--transition);
  border-radius: var(--border-radius);
  margin: 0.25rem 0;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.15);
}

/* Modern color overrides */
.tm-color-primary {
  color: var(--primary-color) !important;
}

.tm-section-title {
  position: relative;
  padding-bottom: 1rem;
}

.tm-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Modern footer styling */
.footer-content {
  padding: 1rem 0;
}

.footer-links {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-link:hover {
  color: white;
  text-decoration: underline;
}

.separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .separator {
    display: none;
  }
}
