/* ============================================
   ELECTROSHOP - Services & Contact Styles
   ============================================ */

/* ---- Services ---- */
.services-hero {
  background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 72px 0;
  position: relative; overflow: hidden; text-align: center;
}
.services-hero::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}
.services-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); position: relative; z-index: 1; }
.services-hero p { color: var(--text-secondary); font-size: 1.1rem; max-width: 560px; margin: 12px auto 0; position: relative; z-index: 1; }

/* Service Cards */
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; transition: var(--transition);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0; transition: var(--transition);
}
.service-card:hover { border-color: var(--border-accent); transform: translateY(-6px); box-shadow: var(--shadow-accent); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 64px; height: 64px; border-radius: 18px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.icon-blue { background: rgba(0, 212, 255, 0.1); color: var(--accent); border: 1px solid rgba(0, 212, 255, 0.25); }
.icon-purple { background: rgba(124, 58, 237, 0.1); color: #a78bfa; border: 1px solid rgba(124, 58, 237, 0.25); }
.icon-green { background: rgba(34, 197, 94, 0.1); color: var(--success); border: 1px solid rgba(34, 197, 94, 0.25); }
.icon-orange { background: rgba(245, 158, 11, 0.1); color: var(--warning); border: 1px solid rgba(245, 158, 11, 0.25); }
.icon-red { background: rgba(239, 68, 68, 0.1); color: var(--danger); border: 1px solid rgba(239, 68, 68, 0.25); }
.icon-teal { background: rgba(20, 184, 166, 0.1); color: #14b8a6; border: 1px solid rgba(20, 184, 166, 0.25); }

.service-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.service-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-secondary);
}
.service-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 600; color: var(--accent);
  transition: var(--transition); cursor: pointer;
}
.service-link:hover { gap: 10px; }

/* Plans */
.plan-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; text-align: center;
  transition: var(--transition); position: relative;
}
.plan-card.featured {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
  box-shadow: var(--shadow-accent);
}
.plan-card:hover { transform: translateY(-4px); }
.plan-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  padding: 4px 16px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.plan-price-wrap { margin: 20px 0; }
.plan-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--text-primary); }
.plan-period { font-size: 0.85rem; color: var(--text-secondary); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0; text-align: left; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-secondary); }
.plan-features li .feat-icon { color: var(--success); }
.plan-features li.disabled { opacity: 0.4; }
.plan-features li.disabled .feat-icon { color: var(--text-muted); }

/* Stats Row */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
}
.stat-card { text-align: center; }
.stat-num2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--accent); }
.stat-label2 { font-size: 0.875rem; color: var(--text-secondary); margin-top: 4px; }

/* ---- Contact ---- */
.contact-hero { padding: 72px 0; text-align: center; background: var(--bg-secondary); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.contact-hero::before {
  content: ''; position: absolute; bottom: -60px; right: -60px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; padding: 64px 0; align-items: start; }

.contact-info h2 { font-size: 1.8rem; margin-bottom: 12px; }
.contact-info > p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px; transition: var(--transition);
}
.contact-item:hover { border-color: var(--border-accent); }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--accent-glow); border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.contact-item-info p:first-child { font-weight: 600; font-size: 0.875rem; color: var(--text-primary); margin-bottom: 2px; }
.contact-item-info p:last-child { font-size: 0.8rem; color: var(--text-secondary); }

.contact-hours { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.contact-hours h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; }
.hours-row .day { color: var(--text-secondary); }
.hours-row .time { color: var(--text-primary); font-weight: 500; }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
}
.contact-form-wrap h3 { font-size: 1.5rem; margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em; }
.form-label span { color: var(--danger); }
.form-input, .form-select, .form-textarea {
  padding: 12px 16px; background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text-primary); font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: var(--transition); width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent); background: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-secondary); }

.form-submit { width: 100%; }

/* Map placeholder */
.map-placeholder {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  aspect-ratio: 16/6; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text-muted); margin-top: 64px;
}
.map-placeholder .map-icon { font-size: 48px; color: var(--accent); opacity: 0.4; }

/* FAQ */
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; transition: var(--transition);
}
.faq-item.open { border-color: var(--border-accent); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; transition: var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-question h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.faq-icon { color: var(--accent); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.35s ease; }
.faq-item.open .faq-answer { padding: 0 24px 20px; max-height: 300px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .contact-form-wrap { padding: 24px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
