/* ─── CONTACT MAP WIDGET ─── */
.da-contact-map-section {
  padding: 90px 0;
  background-color: var(--dark, #0a0f1a);
}
.da-contact-map-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.da-contact-map-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.da-contact-map-section .tag {
  display: inline-block;
  background: rgba(97,206,112,0.18);
  color: var(--green, #61CE70);
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(97,206,112,0.3);
  margin-bottom: 18px;
}
.da-contact-map-section .section-title {
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
}
.da-contact-map-section .section-title span {
  color: var(--green, #61CE70);
}
.da-contact-map-section .section-subtitle {
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-size: 15px;
  color: #8a9ab5;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.da-contact-map-section .map-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.da-contact-map-section .map-container {
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
  height: 480px;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  background-color: var(--dark-card, #151e2d);
}
.da-contact-map-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.da-contact-map-section .map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: #8a9ab5;
}
.da-contact-map-section .map-placeholder span {
  font-size: 48px;
}
.da-contact-map-section .map-placeholder p {
  font-size: 14px;
  font-family: var(--font-body, 'Poppins', sans-serif);
}

.da-contact-map-section .map-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.da-contact-map-section .map-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--dark-card, #151e2d);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.da-contact-map-section .map-detail-item:hover {
  border-color: rgba(97,206,112,0.15);
}
.da-contact-map-section .md-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.da-contact-map-section .map-detail-item h5 {
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.da-contact-map-section .map-detail-item p {
  font-size: 13px;
  color: #c8d4e8;
  line-height: 1.6;
  font-family: var(--font-body, 'Poppins', sans-serif);
  margin: 0;
}
.da-contact-map-section .map-detail-item p a {
  color: var(--green, #61CE70);
  text-decoration: none;
}
.da-contact-map-section .map-detail-item p a:hover {
  text-decoration: underline;
}

.da-contact-map-section .btn-primary {
  background: var(--green, #61CE70);
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius, 12px);
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.da-contact-map-section .btn-primary:hover {
  background: #4db85c;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(97,206,112,0.20);
}

/* Responsive */
@media (max-width: 900px) {
  .da-contact-map-section .map-grid { 
    grid-template-columns: 1fr; 
  }
}
@media (max-width: 600px) {
  .da-contact-map-section {
    padding: 60px 0;
  }
  .da-contact-map-section .map-container {
    height: 350px;
  }
}
