/* ─── CONTACT GRID WIDGET ─── */
.da-contact-section {
  background: var(--dark);
  padding: 80px 0;
}
.da-contact-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.da-contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.da-contact-section .section-label {
  display: inline-block;
  margin-bottom: 12px;
}
.da-contact-section .section-title {
  margin-bottom: 28px;
  color: #ffffff;
}
.da-contact-section .contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.da-contact-section .contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--green-light);
  border: 1px solid rgba(97,206,112,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--green);
}
.da-contact-section .contact-item-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.da-contact-section .contact-item-val {
  font-size: 0.88rem;
  color: #d1d5db;
  line-height: 1.6;
}
.da-contact-section .contact-item-val a {
  color: #d1d5db;
  transition: color 0.2s;
  text-decoration: none;
}
.da-contact-section .contact-item-val a:hover {
  color: var(--green);
}
.da-contact-section .map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(97,206,112,0.2);
}
.da-contact-section .map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* Responsive */
@media (max-width: 991px) {
  .da-contact-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .da-contact-section .map-placeholder {
    min-height: 300px;
  }
  .da-contact-section .map-placeholder iframe {
    min-height: 300px;
  }
}

/* Elementor Editor Viewport Compatibility */
.elementor-editor-active .da-contact-section .fade-up {
  opacity: 1 !important;
  transform: none !important;
}
