.contact-page {
  overflow: hidden;
}

.navigation a.active::after {
  width: 100%;
}

.contact-hero {
  position: relative;
  isolation: isolate;
  padding: 105px 0 112px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 16% 22%, rgba(201, 151, 46, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 30%, rgba(23, 136, 70, 0.12) 0 2px, transparent 3px),
    linear-gradient(135deg, #fffdf8 0%, #f4eee0 100%);
  background-size: 48px 48px, 58px 58px, auto;
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.contact-hero::before {
  width: 340px;
  height: 340px;
  top: -190px;
  right: -85px;
  border: 1px solid rgba(201, 151, 46, 0.35);
  box-shadow:
    0 0 0 35px rgba(201, 151, 46, 0.04),
    0 0 0 70px rgba(201, 151, 46, 0.025);
}

.contact-hero::after {
  width: 280px;
  height: 280px;
  left: -150px;
  bottom: -185px;
  background: rgba(23, 136, 70, 0.07);
}

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

.contact-hero h1 {
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--green-dark);
  font-family:"Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.06;
  letter-spacing: -2px;
}

.contact-hero p {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: stretch;
}

.contact-info-card,
.contact-form-card {
  border: 1px solid rgba(18, 63, 43, 0.09);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.contact-info-card {
  position: relative;
  overflow: hidden;
  padding: 52px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 8%, rgba(201, 151, 46, 0.26), transparent 28%),
    linear-gradient(145deg, #123f2b 0%, #0d3222 100%);
}

.contact-info-card::after {
  content: "";
  position: absolute;
  right: -85px;
  bottom: -95px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.contact-info-card h2,
.contact-form-card h2,
.contact-social-card h2 {
  font-family:"Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.18;
}

.contact-info-card h2 {
  max-width: 430px;
  font-size: clamp(36px, 4vw, 50px);
}

.contact-intro {
  max-width: 500px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.contact-info-list {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.contact-info-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

a.contact-info-item:hover {
  transform: translateX(5px);
  border-color: rgba(201, 151, 46, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.contact-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--gold);
  border-radius: 14px;
  font-size: 21px;
  font-weight: 700;
}

.contact-info-item small,
.contact-info-item strong {
  display: block;
}

.contact-info-item small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-info-item strong {
  margin-top: 3px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.35;
}

.contact-note {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-note strong {
  color: var(--gold);
}

.contact-note p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.contact-form-card {
  padding: 52px;
  background: var(--white);
}

.contact-form-card h2 {
  color: var(--green-dark);
  font-size: clamp(36px, 4vw, 50px);
}

.contact-form-card > p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-form {
  margin-top: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.form-group label span {
  color: var(--muted);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dfe5df;
  border-radius: 13px;
  outline: none;
  color: var(--text);
  background: #fcfdfb;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input,
.form-group select {
  min-height: 54px;
  padding: 0 16px;
}

.form-group textarea {
  min-height: 154px;
  padding: 15px 16px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #96a099;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23, 136, 70, 0.1);
}

.contact-submit-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.contact-map-section {
  padding: 100px 0;
  background: var(--cream);
}

.contact-map-section .section-heading {
  max-width: 750px;
  margin: 0 auto 42px;
  text-align: center;
}

.contact-map-section .section-heading h2 {
  margin-top: 20px;
  color: var(--green-dark);
  font-family:"Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.15;
}

.contact-map-section .section-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.contact-map-placeholder {
  min-height: 250px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 40px;
  border: 1px solid rgba(18, 63, 43, 0.1);
  border-radius: var(--radius-large);
  background:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
    repeating-linear-gradient(45deg, #e9eee6 0 1px, transparent 1px 20px),
    repeating-linear-gradient(-45deg, #edf1e9 0 1px, transparent 1px 20px);
  box-shadow: 0 20px 50px rgba(28, 61, 42, 0.08);
}

.map-pin {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 24px;
  box-shadow: 0 18px 35px rgba(23, 136, 70, 0.22);
  font-size: 40px;
}

.contact-map-placeholder h3 {
  color: var(--green-dark);
  font-family:"Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 30px;
}

.contact-map-placeholder p {
  margin-top: 5px;
  color: var(--muted);
}

.contact-social-section {
  padding: 0 0 100px;
  background: var(--cream);
}

.contact-social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 58px 62px;
  border-radius: var(--radius-large);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(201, 151, 46, 0.28), transparent 33%),
    var(--green-dark);
  box-shadow: var(--shadow);
}

.contact-kicker-light {
  color: #f4cc75;
}

.contact-social-card h2 {
  font-size: clamp(36px, 4vw, 50px);
}

.contact-social-card p {
  max-width: 630px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-social-actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-light-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.contact-light-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-gold-button {
  color: var(--green-dark);
  background: var(--gold);
}

.contact-gold-button:hover {
  background: #ddb04d;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 44px;
  }

  .contact-map-placeholder {
    grid-template-columns: auto 1fr;
  }

  .contact-map-placeholder .button {
    grid-column: 1 / -1;
  }

  .contact-social-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-social-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .contact-hero {
    padding: 78px 0 82px;
  }

  .contact-hero h1 {
    font-size: 46px;
    letter-spacing: -1px;
  }

  .contact-hero p {
    font-size: 17px;
  }

  .contact-section,
  .contact-map-section {
    padding: 72px 0;
  }

  .contact-social-section {
    padding-bottom: 72px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 30px 24px;
    border-radius: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-map-placeholder {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 32px 24px;
    text-align: center;
  }

  .contact-social-card {
    padding: 40px 28px;
    border-radius: 22px;
  }

  .contact-social-actions,
  .contact-social-actions .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 40px;
  }

  .contact-info-card h2,
  .contact-form-card h2,
  .contact-social-card h2 {
    font-size: 36px;
  }

  .contact-info-item {
    padding: 13px;
  }

  .contact-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .contact-info-item strong {
    font-size: 14px;
  }

  .contact-map-placeholder h3 {
    font-size: 27px;
  }
}


/* ===== August contact polish ===== */
.contact-hero-rich {
  padding: 48px 0 56px;
  background:
    radial-gradient(circle at 10% 22%, rgba(201,151,46,.12) 0 3px, transparent 4px),
    radial-gradient(circle at 92% 28%, rgba(23,136,70,.09) 0 2px, transparent 3px),
    linear-gradient(135deg, #fffdf8 0%, #f4eee0 100%);
}
.contact-hero-shell {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: 34px;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255,255,255,.95), transparent 24%),
    linear-gradient(120deg, rgba(74,43,22,.95) 0%, rgba(126,77,42,.82) 37%, rgba(246,231,205,.88) 74%, rgba(252,249,242,.96) 100%);
  box-shadow: 0 24px 64px rgba(18,63,43,.12);
}
.contact-hero-copy { color: #fff; }
.contact-hero-copy h1 { margin: 18px 0 0; color: #fff; max-width: 580px; }
.contact-hero-copy p { margin: 18px 0 0; color: rgba(255,255,255,.88); max-width: 560px; }
.contact-hero-mini-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.contact-hero-mini-points span { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); color: #fff7d8; font-size: 13px; font-weight: 700; }
.contact-hero-visual-card {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.contact-hero-visual-card img { width: min(100%, 360px); filter: drop-shadow(0 18px 28px rgba(60,36,18,.22)); }
.contact-hero-float-card {
  position: absolute;
  right: 6%;
  bottom: 8%;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
  color: var(--green-dark);
}
.contact-hero-float-card small { display: block; color: #867a67; }
.contact-hero-float-card strong { display: block; margin-top: 3px; }
.compact-contact-grid { gap: 28px; }
.contact-section { padding: 72px 0; }
.contact-map-section.contact-banner-section { padding: 0 0 70px; background: #fffdf8; }
.contact-banner-box {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, #123f2b 0%, #0f3423 42%, #f6f0e3 100%);
  color: #fff;
}
.contact-banner-box .eyebrow { margin-bottom: 14px; }
.contact-banner-box h3 { font-family:"Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 38px; line-height: 1.1; }
.contact-banner-box p { margin-top: 10px; color: rgba(255,255,255,.86); max-width: 520px; }
.contact-banner-box img { width: 100%; border-radius: 24px; }
.contact-social-section { padding-top: 0; }
.contact-social-card { background: linear-gradient(135deg, #123f2b 0%, #0f3423 100%); }
@media (max-width: 980px) {
  .contact-hero-shell, .contact-banner-box { grid-template-columns: 1fr; }
  .contact-hero-copy { text-align: center; }
  .contact-hero-mini-points { justify-content: center; }
  .contact-hero-copy h1, .contact-hero-copy p { max-width: none; }
}
@media (max-width: 560px) {
  .contact-hero-rich { padding: 20px 0 32px; }
  .contact-hero-shell { padding: 20px; border-radius: 22px; }
  .contact-hero-copy h1 { font-size: 42px; }
  .contact-hero-copy p { font-size: 15px; }
  .contact-banner-box { padding: 20px; }
  .contact-banner-box h3 { font-size: 30px; }
}

/* ===== Final contact details and QR corrections ===== */
.contact-hero-copy p {
  max-width: 610px;
}
.contact-details-visual {
  overflow: hidden;
  border-radius: 30px;
  background: #f8f2e6;
  box-shadow: 0 22px 58px rgba(18,63,43,.12);
}
.contact-details-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f8f2e6;
}
.contact-qr-card {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 30px;
  padding: 28px 34px;
  border: 1px solid rgba(18,63,43,.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 10%, rgba(201,151,46,.14), transparent 24%),
    #fff;
  box-shadow: 0 18px 46px rgba(18,63,43,.08);
}
.contact-qr-card h3 {
  margin-top: 14px;
  color: var(--green-dark);
  font-family:"Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 40px;
  line-height: 1.12;
}
.contact-qr-card p {
  margin-top: 12px;
  color: var(--muted);
}
.contact-qr-card img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  border-radius: 20px;
}
.contact-info-list {
  grid-template-columns: 1fr;
}
.contact-info-item {
  min-height: 72px;
}
@media (max-width: 760px) {
  .contact-details-visual img {
    aspect-ratio: 16 / 9;
  }
  .contact-qr-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
  .contact-qr-card img {
    max-width: 260px;
    margin-inline: auto;
  }
  .contact-qr-card h3 {
    font-size: 32px;
  }
}
/* Keep the restored contact artwork proportional so clickable hotspots stay aligned. */
.dg-contact-banner-clickmap .dg-contact-banner-image{width:100%!important;height:auto!important;min-height:0!important;aspect-ratio:auto!important;object-fit:contain!important;object-position:center!important}

/* DeshiGram unified typography */
html, body, button, input, select, textarea {
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}
body {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0;
}
h1 { font-weight: 700; }
h2 { font-weight: 700; }
h3, h4 { font-weight: 600; }
nav a, .navigation a, .sidebar a, .button, button {
  font-weight: 600;
  letter-spacing: 0;
}
input, select, textarea {
  font-size: 14px;
  font-weight: 400;
}
small, .muted, .hint, .subtext {
  font-size: 13px;
  line-height: 1.45;
}
.price, .product-price, .amount, .metric-value {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
