.dr1060contactbrief {
  position: relative;
  padding: 100px 20px;
  background: radial-gradient(circle at top, #070b18, #04050a);
  color: #fff;
  overflow: hidden;
  font-family: system-ui, sans-serif;
}

/* HERO */
.dr1060contact-hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 60px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  overflow: hidden;
}

.dr1060contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0,255,255,0.15), transparent 60%),
              radial-gradient(circle at 80% 40%, rgba(0,140,255,0.15), transparent 60%);
}

.dr1060contact-hero-content {
  position: relative;
  z-index: 2;
}

.dr1060contact-hero h2 {
  font-size: 42px;
  background: linear-gradient(90deg, #00e5ff, #6c63ff, #00ffa8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dr1060contact-hero p {
  margin-top: 15px;
  opacity: 0.85;
  max-width: 800px;
}

.dr1060contact-badges {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dr1060contact-badges span {
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
}

/* GLOW */
.dr1060contact-hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,255,255,0.25), transparent 70%);
  filter: blur(40px);
  top: -100px;
  right: -100px;
  animation: floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}

/* GRID */
.dr1060contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT */
.dr1060contact-info h3 {
  font-size: 28px;
}

.dr1060contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.dr1060contact-info li {
  margin: 10px 0;
  opacity: 0.8;
}

/* FLOW */
.dr1060contact-mini-flow {
  margin-top: 30px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ACTION CARDS */
.dr1060contact-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dr1060action-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  transition: 0.3s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.dr1060action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0,255,255,0.15);
}

.dr1060action-card h4 {
  margin-bottom: 10px;
}

.dr1060action-card p {
  font-size: 14px;
  opacity: 0.8;
}

.dr1060action-card button {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #00e5ff, #6c63ff);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.dr1060action-card button:hover {
  transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .dr1060contact-wrapper {
    grid-template-columns: 1fr;
  }

  .dr1060contact-hero h2 {
    font-size: 28px;
  }
}