/**
 * PradhiCA — Contact page (contact-us.html)
 */
.pg-contact {
  background: #f8fafc;
}

/* Hero */
.pg-contact-hero {
  position: relative;
  padding: 3rem 0 3.25rem;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #064e3b 0%,
    #047857 38%,
    #059669 72%,
    #10b981 100%
  );
  color: #fff;
}

.pg-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 100% 0%,
    rgba(255, 255, 255, 0.12),
    transparent 55%
  );
  pointer-events: none;
}

.pg-contact-hero .container {
  position: relative;
  z-index: 1;
}

.pg-contact-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: 0.5rem;
}

.pg-contact-hero__title {
  font-family: "Maven Pro", sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: #fff;
}

.pg-contact-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.94;
  max-width: 36rem;
  margin: 0;
}

.pg-contact-hero .breadcrumb {
  margin: 0;
  padding: 0;
}

.pg-contact-hero .breadcrumb-item,
.pg-contact-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.875rem;
}

.pg-contact-hero .breadcrumb-item.active {
  color: #fff !important;
  font-weight: 600;
}

/* Main band */
.pg-contact-main {
  padding: 2.5rem 0 3.5rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.pg-contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  height: 100%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pg-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.12);
  border-color: rgba(5, 150, 105, 0.25);
}

.pg-contact-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(16, 185, 129, 0.1));
  color: #047857;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.pg-contact-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.pg-contact-card__value {
  font-family: "Maven Pro", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
  color: #0f172a;
  margin: 0;
}

.pg-contact-card__value a {
  color: #047857;
  text-decoration: none;
}

.pg-contact-card__value a:hover {
  color: #059669;
  text-decoration: underline;
}

.pg-contact-card__hint {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

.pg-contact-card__address {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #334155;
  margin: 0 0 1rem;
}

/* Map panel */
.pg-contact-map-panel {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.pg-contact-map-panel__head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pg-contact-map-panel__head h3 {
  font-family: "Maven Pro", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0;
  color: #0f172a;
}

.pg-contact-map-panel__frame-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  min-height: 320px;
  background: #e2e8f0;
}

.pg-contact-map-panel__frame-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 992px) {
  .pg-contact-map-panel__frame-wrap {
    padding-bottom: 52%;
    min-height: 380px;
  }
}

/* CTA strip */
.pg-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pg-contact-cta .btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
}

.pg-contact-cta .btn-outline-primary {
  border-color: #047857;
  color: #047857;
}

.pg-contact-cta .btn-outline-primary:hover {
  background: #047857;
  color: #fff;
}

.pg-contact-cta .btn-success {
  background: #25d366;
  border-color: #25d366;
}

.pg-contact-cta .btn-success:hover {
  background: #1eb855;
  border-color: #1eb855;
}

/* Quick strip */
.pg-contact-strip {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(90deg, rgba(4, 120, 87, 0.06), rgba(16, 185, 129, 0.04));
  border-radius: 14px;
  border: 1px solid rgba(4, 120, 87, 0.12);
}

.pg-contact-strip p {
  margin: 0;
  font-size: 0.95rem;
  color: #334155;
}

.pg-contact-strip a {
  font-weight: 700;
  color: #047857;
}
