/* css/contact.css */

/* =========================================
   1. CONTACT INFO CARDS (White Section)
   ========================================= */
.contact-info-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Tech Hover Line */
.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0%; height: 4px;
  background: var(--tanics-primary-red);
  transition: width 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: #ddd;
}
.contact-info-card:hover::after {
  width: 100%;
}

.contact-icon-wrapper {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem auto;
  background: #f8f9fa;
  border-radius: 50%; /* Circular for contrast */
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--tanics-primary-red);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
  background: var(--tanics-primary-red);
  color: #fff;
  border-color: var(--tanics-primary-red);
}

.contact-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #000;
}

.contact-text {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* =========================================
   2. DARK FORM STYLING
   ========================================= */
.tech-dark-form-wrapper {
  background: var(--tanics-bg-card, #121212);
  border: 1px solid #333;
  padding: 3rem;
  position: relative;
}

/* Corner Accents */
.tech-dark-form-wrapper::before {
  content: ''; position: absolute; top: -1px; left: -1px; width: 20px; height: 20px;
  border-top: 2px solid var(--tanics-primary-red); border-left: 2px solid var(--tanics-primary-red);
}
.tech-dark-form-wrapper::after {
  content: ''; position: absolute; bottom: -1px; right: -1px; width: 20px; height: 20px;
  border-bottom: 2px solid var(--tanics-primary-red); border-right: 2px solid var(--tanics-primary-red);
}

.form-label-dark {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* Dark Input Fields */
.tech-input-dark {
  background: #050505;
  border: 1px solid #333;
  color: #fff;
  border-radius: 0;
  padding: 12px 15px;
}
.tech-input-dark:focus {
  background: #000;
  border-color: var(--tanics-primary-red);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 46, 46, 0.2);
}
.tech-input-dark::placeholder {
  color: #555;
}

/* =========================================
   3. MAP CONTAINER (HUD Style)
   ========================================= */
.tech-map-wrapper {
  height: 100%;
  min-height: 500px;
  border: 1px solid #333;
  position: relative;
  overflow: hidden;
}

/* Scanline Effect */
.tech-map-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.2));
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 400; /* Above map tiles but below controls */
  opacity: 0.3;
}

/* Targeting Overlay */
.map-overlay-ui {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 500;
  background: rgba(0,0,0,0.8);
  padding: 5px 15px;
  border: 1px solid var(--tanics-primary-red);
  color: var(--tanics-primary-red);
  font-family: monospace;
  font-size: 0.8rem;
  pointer-events: none;
}