/* Custom Styles for the Contact Us Page */

.contact-hero-banner {
  background: var(--hero-bg-gradient);
  border-bottom: 1px solid var(--hero-border-color);
  padding: 80px 0;
  text-align: center;
  color: var(--hero-text-main);
  position: relative;
  overflow: hidden;
}

.contact-hero-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Office Location Card */
.contact-office-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  transition: var(--transition-smooth);
  height: 100%;
}

.contact-office-card:hover {
  transform: translateY(-5px);
  border-color: rgba(180, 83, 9, 0.25);
  box-shadow: 0 20px 40px rgba(180, 83, 9, 0.06);
}

.office-badge {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-delhi {
  background: var(--primary-glow);
  color: var(--primary);
}

.badge-hyderabad {
  background: var(--secondary-glow);
  color: var(--secondary);
}

.office-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.contact-info-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-info-list li i {
  margin-top: 4px;
  font-size: 1rem;
}

.contact-info-list .fa-location-dot { color: #ef4444; }
.contact-info-list .fa-phone { color: var(--accent-blue); }
.contact-info-list .fa-envelope { color: var(--primary); }

.map-premium-container {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.map-premium-container:hover {
  border-color: rgba(0, 104, 55, 0.2);
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.map-wrapper {
  border: none;
  border-radius: 0;
  height: 250px;
  width: 100%;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-premium-footer {
  padding: 14px 20px;
  background: #fafaf9;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
}

.map-footer-label {
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.map-footer-link {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.map-footer-link:hover {
  color: var(--secondary);
}

/* Contact Message Form Panel */
.contact-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.contact-form-success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
