:root {
  --bg: #f4f1ea;
  --bg-soft: #fbfaf6;
  --bg-dark: #171717;

  /* Main brand colors you can change */
  --primary-bg: #2f2f2f;        /* dark concrete gray */
  --secondary-bg: #4a463f;      /* warm gray */
  --accent-bg: #d79a28;         /* gold/orange */
  --section-bg: #eee8dc;        /* light concrete */
  --section-alt-bg: #ded7ca;    /* darker concrete */
  --card-bg: #fffaf0;

  --black: #111111;
  --white: #ffffff;
  --gold: #d79a28;
  --orange: #c76a24;
  --green: #2d6a4f;

  --text: #222222;
  --muted: #666666;

  --border: rgba(17, 17, 17, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.09);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --container: 1180px;
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(215, 154, 40, 0.12), transparent 35%),
    linear-gradient(180deg, #f7f3eb 0%, #ece7dc 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(215, 154, 40, 0.18);
  color: #ffe0a1;
  border: 1px solid rgba(215, 154, 40, 0.35);
  font-weight: 700;
}

.topbar-link {
  color: var(--white);
  font-weight: 700;
  transition: color 0.2s ease;
}

.topbar-link:hover {
  color: var(--gold);
}

.dot {
  color: var(--gold);
}

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-mark {
  display: inline-flex;
  width: fit-content;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--black);
  position: relative;
}

.brand-mark::after {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 99px;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.brand-sub,
.footer-sub {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 800;
  color: #303030;
  position: relative;
}

.nav-link::after {
  content: "";
  height: 3px;
  width: 0;
  background: var(--gold);
  border-radius: 99px;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  margin: 5px auto;
  border-radius: 99px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solid {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black);
  box-shadow: 0 12px 24px rgba(199, 106, 36, 0.25);
}

.btn-solid:hover {
  box-shadow: 0 16px 32px rgba(199, 106, 36, 0.35);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-full {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  color: var(--white);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.78)),
    url("../img/Background4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.357), transparent 28%),
    linear-gradient(180deg, transparent 70%, rgba(244, 241, 234, 1) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 44px;
  padding: 82px 0;
}

.hero-content {
  max-width: 720px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-title {
  font-size: clamp(2.65rem, 6vw, 5.9rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
  font-weight: 950;
  max-width: 850px;
}

.hero-accent {
  display: block;
  color: #ffd173;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero-subtitle {
  margin-top: 24px;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-highlights {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight-card {
  min-height: 150px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.942);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: black;
  backdrop-filter: blur(12px);
}

.icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(215, 154, 40, 0.22);
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.highlight-title {
  font-weight: 950;
  margin-bottom: 5px;
}

.highlight-text {
  color: rgba(0, 0, 0, 0.75);
  font-size: 0.9rem;
}

/* ---------- Quote Card ---------- */
.quote-card,
.panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 243, 236, 0.98));
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.quote-card {
  position: relative;
  overflow: hidden;
}

.quote-card::before,
.panel::before {
  content: "";
  display: block;
  height: 8px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--black));
  position: absolute;
  left: 0;
  top: 0;
}

.quote-title,
.panel h3 {
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 950;
  color: var(--black);
}

.quote-sub,
.panel-sub {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

/* ---------- Forms ---------- */
.form {
  margin-top: 22px;
}

.form-row {
  margin-bottom: 15px;
}

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

label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.86rem;
  color: var(--black);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: var(--white);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 154, 40, 0.18);
}

input[type="file"] {
  padding: 12px;
  background: #fff8ec;
  border-style: dashed;
}

.fineprint {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---------- Trust Strip ---------- */
.trust {
  margin-top: -34px;
  position: relative;
  z-index: 4;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-icon {
  font-size: 1.5rem;
}

.trust-title {
  font-weight: 950;
}

.trust-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 94px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.1)),
    repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.025),
      rgba(0, 0, 0, 0.025) 1px,
      transparent 1px,
      transparent 14px
    );
}

.section-head {
  max-width: 790px;
  margin-bottom: 36px;
}

.kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.section h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--black);
  font-weight: 950;
}

.lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 20px;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.card::after {
  content: "";
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: rgba(215, 154, 40, 0.14);
  position: absolute;
  top: -28px;
  right: -25px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(215, 154, 40, 0.55);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(215, 154, 40, 0.28), rgba(199, 106, 36, 0.15));
  font-size: 1.65rem;
}

.card h3 {
  font-size: 1.32rem;
  line-height: 1.2;
  color: var(--black);
  font-weight: 950;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.list {
  list-style: none;
  margin-top: 18px;
}

.list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #424242;
  font-weight: 700;
  font-size: 0.93rem;
}

.list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 950;
  position: absolute;
  left: 0;
  top: 0;
}

/* ---------- CTA Slab ---------- */
.cta-slab {
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--black), #2b2b2b),
    var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-slab::before {
  content: "";
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(215, 154, 40, 0.19);
  position: absolute;
  right: -90px;
  top: -110px;
}

.cta-slab h3 {
  font-size: 1.45rem;
  font-weight: 950;
}

.cta-slab p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
  position: relative;
}

/* ---------- Feature Grid ---------- */
.feature-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.feature-num {
  font-weight: 950;
  color: var(--gold-dark);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.feature h4 {
  font-size: 1.08rem;
  font-weight: 950;
  color: var(--black);
}

.feature p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.shot {
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  background: var(--black);
}

.shot:first-child {
  grid-row: span 2;
}

.shot img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.shot:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.shot figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--white);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

/* ---------- Reviews ---------- */
.reviews {
  grid-template-columns: repeat(3, 1fr);
}

.review {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.stars {
  color: var(--gold-dark);
  font-size: 1.2rem;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.review-text {
  color: var(--text);
  font-weight: 800;
}

.review-meta {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 900;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.step-num {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--gold);
  border-radius: 15px;
  font-weight: 950;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.12rem;
  font-weight: 950;
}

.step p {
  margin-top: 10px;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-cards {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.contact-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(215, 154, 40, 0.18);
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.contact-label {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-value {
  color: var(--black);
  font-weight: 950;
}

.contact-value:hover {
  color: var(--gold-dark);
}

.note {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: #fff5df;
  border: 1px solid rgba(215, 154, 40, 0.35);
  color: #4b3718;
}

.panel {
  position: relative;
  overflow: hidden;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 42px 0;
}

.footer-inner {
  display: grid;
  gap: 24px;
}

.footer .brand-mark {
  color: var(--white);
}

.footer-sub {
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
}

.backtop {
  color: var(--gold);
  font-weight: 950;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 200;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Mobile ---------- */
@media (max-width: 1050px) {
  .hero-inner,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .quote-card {
    max-width: 720px;
  }

  .hero-highlights,
  .trust-inner,
  .cards,
  .reviews,
  .steps,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .shot:first-child {
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-right {
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: 12px 10px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-menu .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 64px 0 82px;
  }

  .hero-highlights,
  .trust-inner,
  .cards,
  .reviews,
  .steps,
  .feature-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .cta-slab {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-slab .btn {
    width: 100%;
  }

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

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .navbar {
    min-height: 72px;
  }

  .brand-mark {
    font-size: 1.2rem;
  }

  .brand-sub,
  .footer-sub {
    font-size: 0.68rem;
  }

  .hero-title {
    font-size: 2.55rem;
  }

  .hero-subtitle,
  .lead {
    font-size: 1rem;
  }

  .quote-card,
  .panel,
  .card,
  .review,
  .step,
  .feature {
    padding: 22px;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .topbar-left {
    justify-content: center;
  }

  .pill {
    font-size: 0.75rem;
  }
}

/* ---------- Contact Map ---------- */
.service-map-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.map-card-header {
  margin-bottom: 14px;
}

.map-card-header .kicker {
  margin-bottom: 6px;
}

.map-card-header h3 {
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 950;
  color: var(--black);
}

.map-card-header p {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

#serviceMap {
  width: 100%;
  height: 310px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #ded7ca, #f8f3e8);
  border: 1px solid rgba(17, 17, 17, 0.12);
}

/* Fix section anchors hiding behind sticky nav */
#contact,
#concrete,
#haul-off,
#trailer,
#service-area {
  scroll-margin-top: 0px;
}

@media (max-width: 820px) {
  #serviceMap {
    height: 280px;
  }
}

.contact-wrap {
  align-items: start;
}

.contact-right {
  padding-top: 120px;
}

.contact-right .panel {
  position: sticky;
  top: 105px;
}

/* Keep mobile normal */
@media (max-width: 1050px) {
  .contact-right {
    padding-top: 0;
  }

  .contact-right .panel {
    position: relative;
    top: auto;
  }
}