/* ── Header Compact ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=DM+Sans:wght@300;400;500&display=swap');

.header-style3-area {
  padding: 0;
  margin: 0;
}

.hc-wrap {
  background: linear-gradient(135deg, #0a1628cf 0%, #4a34e5 100%);
  font-family: 'DM Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

.hc-wrap::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,179,237,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hc-inner {
  display: flex;
  align-items: center;
  padding: 0 28px;
  height: 62px;
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* Logo */
.hc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.hc-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2b6cb0, #63b3ed);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(99,179,237,0.3);
  overflow: hidden;
}

.hc-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.hc-logo-sub {
  font-size: 9px;
  font-weight: 300;
  color: rgba(147,197,253,0.65);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

/* Separator */
.hc-sep {
  width: 1px;
  height: 32px;
  background: rgba(99,179,237,0.2);
  flex-shrink: 0;
}

/* Contact items */
.hc-contacts {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  flex-wrap: wrap;
}

.hc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(99,179,237,0.15);
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: default;
}

.hc-item:hover {
  background: rgba(99,179,237,0.1);
  border-color: rgba(99,179,237,0.32);
}

.hc-icon {
  font-size: 15px;
  color: #90cdf4;
  flex-shrink: 0;
}

.hc-item-text {
  line-height: 1.2;
}

.hc-item-text strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #e2e8f0;
}

.hc-item-text span {
  font-size: 9.5px;
  font-weight: 300;
  color: rgba(147,197,253,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Bottom accent line */
.hc-bottom {
  height: 2px;
  background: linear-gradient(90deg, transparent, #3182ce 20%, #63b3ed 50%, #3182ce 80%, transparent);
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
  .hc-inner {
    height: auto;
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .hc-contacts {
    gap: 6px;
  }
  .hc-item {
    padding: 5px 10px;
  }
}

@media (max-width: 576px) {
  .hc-item-text strong {
    font-size: 11px;
  }
  .hc-logo-main {
    font-size: 16px;
  }
}