/* CONTACTS DANA SMART BLUE STYLE */

.dana-contact-section,
.dana-delivery-partners-section,
.dana-contact-trust-row {
  box-sizing: border-box;
}

.dana-contact-section *,
.dana-delivery-partners-section *,
.dana-contact-trust-row * {
  box-sizing: border-box;
}

/* FIX SVG ICONS */
.dana-contact-icon,
.dana-delivery-icon,
.dana-trust-icon {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  border-radius: 16px;
  background: rgba(29,127,255,.14);
  color: #1d7fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  margin-bottom: 18px;
  flex: 0 0 56px !important;
}

.dana-contact-icon svg,
.dana-delivery-icon svg,
.dana-trust-icon svg {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  max-width: 26px !important;
  min-height: 26px !important;
  max-height: 26px !important;
  display: block !important;
  flex: 0 0 26px !important;
  color: #1d7fff !important;
  stroke: currentColor;
}

.dana-contact-icon svg path,
.dana-delivery-icon svg path,
.dana-trust-icon svg path,
.dana-contact-icon svg circle,
.dana-delivery-icon svg circle,
.dana-trust-icon svg circle,
.dana-contact-icon svg rect,
.dana-delivery-icon svg rect,
.dana-trust-icon svg rect {
  vector-effect: non-scaling-stroke;
}

/* MAIN CONTACT SECTION */
.dana-contact-section {
  background:
    radial-gradient(circle at top right, rgba(0,102,255,.18), transparent 30%),
    #071019;
  padding: 60px 40px;
  border-radius: 28px;
  color: white;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}

.dana-contact-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.dana-contact-badge {
  display: inline-block;
  background: rgba(0,102,255,.14);
  color: #4da3ff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 18px;
}

.dana-contact-left h1 {
  font-size: 58px;
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: 800;
  color: #fff;
}

.dana-contact-left h1 span {
  color: #1d7fff;
}

.dana-contact-subtitle {
  color: #a7b7c9;
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
}

.dana-contact-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-top: 40px;
}

.dana-contact-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 26px;
  transition: .3s;
}

.dana-contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29,127,255,.5);
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

.dana-contact-card h3 {
  font-size: 22px;
  margin: 0 0 14px;
  color: #fff;
}

.dana-contact-card p {
  color: #c2cfdb;
  line-height: 1.6;
  margin-bottom: 12px;
}

.dana-contact-card span {
  display: block;
  color: #6f8498;
  margin-bottom: 16px;
  font-size: 13px;
}

.dana-contact-card a {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg,#0066ff,#0052cc);
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
}

.dana-contact-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,102,255,.4);
}

/* RIGHT IMAGE */
.dana-smart-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #0d1a29;
  border: 1px solid rgba(255,255,255,.08);
  padding: 20px;
}

.dana-smart-box img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

.dana-smart-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: 18px;
}

.dana-smart-overlay strong {
  display: block;
  font-size: 20px;
  color: #fff;
}

.dana-smart-overlay span {
  color: #b3c4d8;
  font-size: 14px;
}

.dana-smart-status {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: #fff;
}

.online-dot {
  width: 10px;
  height: 10px;
  background: #00ff66;
  border-radius: 50%;
}

/* BOTTOM CONTACT */
.dana-contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.dana-contact-info,
.dana-contact-cta {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 32px;
}

.dana-contact-info h2,
.dana-contact-cta h2 {
  color: #fff;
  margin-top: 0;
}

.dana-contact-info p,
.dana-contact-cta p {
  color: #a7b7c9;
  line-height: 1.6;
}

.dana-contact-main-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(135deg,#0066ff,#0052cc);
  color: white;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

/* DELIVERY */
.dana-delivery-partners-section {
  margin-top: 32px;
}

.dana-delivery-card {
  background:
    radial-gradient(circle at top right, rgba(0,102,255,.16), transparent 35%),
    #071019;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 42px;
  color: white;
}

.dana-delivery-card h2 {
  font-size: 38px;
  margin: 18px 0 14px;
  font-weight: 800;
  color: #fff;
}

.dana-delivery-intro {
  color: #a7b7c9;
  font-size: 17px;
  line-height: 1.7;
  max-width: 760px;
}

.dana-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.dana-delivery-item {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 28px;
  overflow: hidden;
}

.dana-delivery-item h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: #fff;
}

.dana-delivery-item p {
  color: #a7b7c9;
  line-height: 1.65;
}

.dana-delivery-cta {
  margin-top: 30px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(29,127,255,.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.dana-delivery-cta strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
  color: #fff;
}

.dana-delivery-cta span {
  color: #9fb1c5;
}

.dana-delivery-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#0066ff,#0052cc);
  color: #fff;
  text-decoration: none;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  white-space: nowrap;
}

/* TRUST ROW */
.dana-contact-trust-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.dana-trust-item {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 24px 18px;
  color: #fff;
  min-height: auto !important;
  overflow: hidden;
}

.dana-trust-item strong {
  display: block;
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}

.dana-trust-item span {
  display: block;
  color: #9fb1c5;
  line-height: 1.45;
  font-size: 14px;
}

/* MOBILE */
@media(max-width: 900px) {
  .dana-contact-hero,
  .dana-contact-bottom,
  .dana-contact-grid,
  .dana-delivery-grid,
  .dana-contact-trust-row {
    grid-template-columns: 1fr;
  }

  .dana-contact-section {
    padding: 30px 20px;
  }

  .dana-contact-left h1 {
    font-size: 40px;
  }

  .dana-delivery-card {
    padding: 26px 20px;
  }

  .dana-delivery-card h2 {
    font-size: 30px;
  }

  .dana-delivery-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .dana-delivery-cta a {
    width: 100%;
  }
}
/* MOBILE FIXES */

@media (max-width: 768px) {

    .dana-contact-section {
        padding: 18px 14px !important;
        border-radius: 18px;
    }

    .dana-contact-left h1 {
        font-size: 34px !important;
        line-height: 1.1 !important;
        word-break: break-word;
    }

    .dana-contact-subtitle {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    .dana-contact-card,
    .dana-contact-info,
    .dana-contact-cta,
    .dana-delivery-item,
    .dana-trust-item {
        padding: 18px !important;
        border-radius: 18px !important;
    }

    .dana-contact-card h3,
    .dana-delivery-item h3 {
        font-size: 20px !important;
    }

    .dana-contact-info h2,
    .dana-contact-cta h2,
    .dana-delivery-card h2 {
        font-size: 28px !important;
        line-height: 1.15 !important;
        word-break: break-word;
    }

    .dana-contact-info p,
    .dana-contact-cta p,
    .dana-delivery-item p,
    .dana-delivery-intro,
    .dana-trust-item span {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .dana-contact-main-btn,
    .dana-delivery-cta a,
    .dana-contact-card a {
        width: 100%;
        text-align: center;
        justify-content: center;
        min-height: 48px;
        font-size: 14px;
    }

    .dana-smart-overlay {
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        padding: 12px 14px !important;
    }

    .dana-smart-overlay strong {
        font-size: 16px !important;
    }

    .dana-smart-overlay span {
        font-size: 12px !important;
    }

    .dana-smart-status {
        top: 12px !important;
        right: 12px !important;
        font-size: 12px;
        padding: 8px 12px !important;
    }

    .dana-delivery-card {
        padding: 22px 16px !important;
    }

    .dana-delivery-cta {
        padding: 18px !important;
    }

    .dana-trust-item strong {
        font-size: 18px !important;
    }

    .dana-contact-grid,
    .dana-delivery-grid,
    .dana-contact-bottom,
    .dana-contact-trust-row {
        gap: 14px !important;
    }

}