/* Styles extracted from products.html */

/* Border and hover styles */
.border-primary {
  border-color: #0052cc;
}

.hover\:text-primary:hover {
  color: #0052cc;
}

.active\:scale-98:active {
  transform: scale(.98);
}

/* Body and text styles */
body {
  background: #f8fafc;
  color: #1e293b;
}

.text-primary {
  color: #0052cc;
}

.bg-primary {
  background-color: #0052cc;
}

/* Contact page specific styles */
.hero-gradient { background: linear-gradient(135deg, #003d99 0%, #0052cc 100%); }

.section-card { 
  background: white; 
  border: 1px solid #e2e8f0; 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
}

.contact-icon { 
  width: 3.5rem; 
  height: 3.5rem; 
  background: linear-gradient(135deg, #0052cc 0%, #003d99 100%); 
  border-radius: 0.75rem; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: white; 
  font-size: 1.25rem; 
}

.prefill-hint { 
  background: #e0f2fe; 
  padding: 0.75rem; 
  border-radius: 0.5rem; 
  border-left: 4px solid #0052cc; 
  margin-bottom: 1rem; 
}

/* Enhanced UI Elements */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-primary {
  background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
  color: white;
}
.btn-secondary {
  background: #f1f5f9;
  color: #475569;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.btn:active {
  transform: translateY(0);
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn:active::before {
  width: 300px;
  height: 300px;
}
.progress-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}
.progress {
  height: 100%;
  background: linear-gradient(90deg, #0052cc, #003d99);
  border-radius: 4px;
  transition: width 0.3s ease;
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.badge-success {
  background: #dcfce7;
  color: #16a34a;
}
.notification {
  padding: 16px 24px;
  border-radius: 8px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.notification-success {
  background: #dcfce7;
  border-left: 4px solid #22c55e;
  color: #16a34a;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.stat-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #0052cc;
  margin-bottom: 8px;
}
.stat-label {
  color: #64748b;
  font-size: 0.875rem;
}
.tilt-card {
  transition: transform 0.3s ease;
}
.tilt-card:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal-element {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0);
}
.loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Product card styles */
.product-card {
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  box-shadow: 0 8px 16px rgba(0, 52, 204, 0.2);
  transform: translateY(-4px);
}

/* Badge styles */
.badge {
  background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
  color: white;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Section header styles */
.section-header {
  border-bottom: 3px solid #0052cc;
  position: relative;
  padding-bottom: 1rem;
}

/* Spec table styles */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid #e2e8f0;
}

.spec-table td {
  padding: 0.75rem;
  font-size: 0.875rem;
}

.spec-table td:first-child {
  font-weight: 600;
  color: #003d99;
  width: 40%;
}

/* Feature list styles */
.feature-list {
  background: #f8fafc;
  border-left: 4px solid #0052cc;
  padding: 1rem;
  margin: 1rem 0;
}

/* CTA button styles */
.cta-button {
  background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 52, 204, 0.3);
}

.cta-button.secondary {
  background: white;
  color: #0052cc;
  border: 2px solid #0052cc;
}

.cta-button.secondary:hover {
  background: #f0f4f8;
}

/* Footer styles */
footer {
  background: #0f172a;
  color: #cbd5e1;
}

/* Comparison table styles */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
  background: #0052cc;
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Solutions grid styles */
.solutions-grid {
  display: grid;
  gap: 1.5rem;
}

.solutions-grid > div {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #0052cc;
}

/* Spare parts list styles */
.spare-parts-list {
  background: #fef3c7;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

/* Button primary class for consistency */
.btn-primary {
  background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 52, 204, 0.3);
}

/* Secondary button style */
.btn-secondary {
  background: white;
  color: #0052cc;
}

/* Google Translate element positioning */
.google-translate-element {
  position: fixed;
  top: -100px;
  left: -100px;
  opacity: 0.01;
  pointer-events: none;
}

/* Contact page specific styles */
.copy-toast-hidden {
  display: none;
}

.copy-toast-shown {
  display: block;
}

.prefill-hint-hidden {
  display: none;
}

.prefill-hint-shown {
  display: block;
}