/* ===============================
   CONTACT PAGE — contact.css
================================ */

/* ===== HERO BANNER ===== */

.contact-hero {
  height: 260px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1d4ed8 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/dsc-38.jpg') center/cover no-repeat;
  opacity: 0.08;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 72px; /* offset for fixed navbar */
}

.contact-hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 12px;
}

.contact-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  position: relative;
}

.contact-hero-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: #60a5fa;
  border-radius: 2px;
  margin-top: 14px;
}

/* ===== CONTACT SECTION ===== */

.contact-section {
  padding: 80px 0 100px;
  background: #f8fafc;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 0 60px;
  align-items: start;
}

/* ===== LEFT: INFO ===== */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 32px;
  margin-top: 4px;
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.85;
  margin-top: 4px;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-email {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s;
}

.contact-email:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* ===== RIGHT: MAP ===== */

.contact-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.contact-map {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .contact-grid {
    padding: 0 32px;
    gap: 40px;
  }
  .contact-hero {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 200px;
    padding: 0 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 36px;
  }
  .contact-map {
    height: 320px;
  }
  .contact-section {
    padding: 52px 0 72px;
  }
}