/* TV Electronics Repair - Professional Styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Roboto+Mono:wght@400;500&display=swap');

:root {
  --primary-blue: #0066CC;
  --tech-gray: #2C3E50;
  --accent-orange: #FF6B35;
  --success-green: #27AE60;
  --warning-yellow: #F39C12;
  --error-red: #E74C3C;
  --light-bg: #F8F9FA;
  --medium-gray: #6C757D;
  --dark-text: #212529;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: #ffffff;
}

/* Custom Bulma Overrides */
.primary-bg {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #004499 100%);
}

.tech-gradient {
  background: linear-gradient(45deg, var(--tech-gray) 0%, #34495E 100%);
}

.hero-tech {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--tech-gray) 100%);
  position: relative;
  overflow: hidden;
}

.hero-tech::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="circuit" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/><line x1="2" y1="2" x2="18" y2="2" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><line x1="2" y1="2" x2="2" y2="18" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>') repeat;
  opacity: 0.3;
}

.service-card {
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card:hover {
  border-left-color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,102,204,0.15);
}

.repair-btn {
  background: var(--accent-orange);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-width: 140px;
}

.repair-btn:hover {
  background: #E55A2B;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.3);
  color: white;
  text-decoration: none;
}

.tech-section {
  padding: 80px 0;
  position: relative;
}

.tech-section:nth-child(even) {
  background-color: var(--light-bg);
}

.team-member {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #E9ECEF;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,102,204,0.12);
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--tech-gray);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E9ECEF;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.price-highlight {
  background: linear-gradient(45deg, var(--accent-orange), #FF8C42);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  margin-top: 10px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 4px solid var(--primary-blue);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  max-width: 500px;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--success-green);
  color: white;
}

.cookie-decline {
  background: var(--medium-gray);
  color: white;
}

.cookie-settings {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tech-section {
    padding: 50px 0;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .repair-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
}

/* Animation utilities */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

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

.pulse-icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Navigation */
.nav-link {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-blue);
  background-color: rgba(0,102,204,0.1);
  text-decoration: none;
}

.nav-link.active {
  color: var(--primary-blue);
  background-color: rgba(0,102,204,0.15);
}

.emergency-badge {
  background: var(--error-red);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.tech-icon {
  background: linear-gradient(45deg, var(--primary-blue), #0080FF);
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-bottom: 15px;
}