:root {
  --brand: #5e624e;
  --brand-dark: #4b4f3d;
  --brand-soft: rgba(94, 98, 78, .06);
  --brand-border: rgba(94, 98, 78, .15);
  --ink: #1a1a1a;
  --text: #4b5563;
  --muted: #6b7280;
  --bg: #fafaf8;
  --card: #ffffff;
  --border: rgba(0, 0, 0, .06);
  --shadow: 0 8px 30px rgba(0, 0, 0, .05);
  --radius: 18px;
}

body {
  color: var(--text);
  background: var(--bg);
}

/* ── Hero ── */
.contact-hero {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1rem;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, .45), rgba(26, 26, 26, .3)),
    url('../images/candle-Images/contact-us-banner.webp') center / cover no-repeat;
}

.contact-hero h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: .5rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
}

.contact-hero p {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .78);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* ── Info Cards ── */
.info-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px 20px;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .08);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  color: var(--brand);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.info-title {
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  font-size: .95rem;
  letter-spacing: -0.01em;
}

.info-text {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: .9rem;
  line-height: 1.4;
}

/* ── Map ── */
.map-wrap {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--card);
}

.map-wrap iframe {
  width: 100%;
  height: 272px;
  border: 0;
  display: block;
}

/* ── Form Card ── */
.form-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
}

.form-card h3 {
  font-weight: 800;
  margin-bottom: .35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: 1.4rem;
}

.form-card .sub {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: .95rem;
  line-height: 1.5;
}

.form-label {
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: .35rem;
}

.form-control {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .1);
  padding: .7rem .9rem;
  background: #fff;
  font-size: .95rem;
  transition: border-color .15s, box-shadow .15s;
}

.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 .2rem rgba(94, 98, 78, .15);
}

.form-control::placeholder {
  color: #b5b5b5;
}

.btn-candle {
  background: var(--brand);
  border: none;
  border-radius: 999px;
  padding: .85rem 2rem;
  font-weight: 700;
  font-size: .95rem;
  width: 100%;
  color: #fff;
  letter-spacing: .01em;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 8px 24px rgba(94, 98, 78, .2);
}

.btn-candle:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(94, 98, 78, .28);
  color: #fff;
}

.btn-candle:active {
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .contact-hero {
    min-height: 220px;
    padding: 2rem 1rem;
  }

  .map-wrap iframe {
    height: 240px;
  }
}

@media (max-width: 575.98px) {
  .contact-hero {
    min-height: 180px;
    padding: 1.5rem 1rem;
  }

  .form-card {
    padding: 20px 16px;
  }

  .info-card {
    padding: 16px;
  }
}
