/* =========================================================
   Plumber QZZ
   Clean scalable stylesheet

   Main width control:
   Change only --page-width to resize the whole site layout.
   ========================================================= */

:root {
  --page-width: 1060px;

  --navy: #0D2B55;
  --navy-2: #0f2f4f;
  --steel: #304c6f;
  --red: #dc2626;
  --red-dark: #b91c1c;
  --gold: #ffd700;
  --green: #10b981;
  --text: #111827;
  --muted: #64748b;
  --border: #d7dee8;
  --white: #ffffff;
  --body-bg: #f7f9fc;

  --shadow-soft: 0 -2px 10px rgba(13, 43, 85, 0.05), 0 8px 24px rgba(13, 43, 85, 0.07);
  --shadow-card: 0 8px 22px rgba(13, 43, 85, 0.08);
  --radius-card: 12px;
  --radius-image: 20px;
}

/* =========================================================
   Reset / base
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 135px;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--body-bg);
  line-height: 1.55;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* =========================================================
   Layout helpers
   ========================================================= */

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

.section-spacing {
  margin-top: 30px;
  margin-bottom: 18px;
}

.text-card {
  width: min(100% - 28px, var(--page-width));
  margin: 18px auto;
  padding: 22px 24px;
  background: var(--white);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.text-card h2 {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1.08;
}

.text-card p {
  color: #475569;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.3px;
  line-height: 1.45em;
  margin: 0 0 14px;
}

.text-card p:last-child {
  margin-bottom: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 24px;
  color: var(--navy);
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  line-height: 1.08;
}

.section-subtitle {
  max-width: 760px;
  margin: -12px auto 28px;
  text-align: center;
  color: var(--muted);
  font-size: 17px;
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 10px rgba(13, 43, 85, 0.04);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.site-logo__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 10px;
  border-bottom: 3px solid var(--gold);
}

.site-logo-img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #4b5563;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--navy);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--gold);
  border: 0;
  border-radius: 10px;
  border-bottom: 3px solid var(--gold);
  font-size: 20px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.headerphone,
.cta-button-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--red);
  color: #ffffff !important;
  border: 1px solid var(--red);
  border-radius: 10px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.headerphone {
  font-size: 17px;
  letter-spacing: 0.2px;
  padding: 15px 24px;
  box-shadow: 0 8px 20px rgba(239, 43, 45, 0.28);
}

.headerphone:hover {
  background: linear-gradient(135deg, #0bd18a 0%, #04a66a 100%);
  border-color: #0bd18a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 209, 138, 0.30);
}

/* =========================================================
   Homepage hero
   ========================================================= */

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 540px;
  display: flex;
  align-items: center;
  padding: 78px 0;
  background:
    linear-gradient(rgba(13, 43, 85, 0.78), rgba(13, 43, 85, 0.72)),
    url("/assets/slide.jpg") center/cover;
  border-bottom: 5px solid var(--gold);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(13, 43, 85, 0.22));
  z-index: -1;
}

.header-intro {
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  background: rgba(255, 215, 0, 0.94);
  color: var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.home-hero h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.65);
  line-height: .98;
  margin-bottom: 16px;
  letter-spacing: -1.8px;
}

.home-hero h2 {
  color: #fff;
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.65);
  max-width: 760px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.click-to-call,
.secondary-cta {
  min-width: 210px;
  text-align: center;
  border-radius: 10px;
  padding: 15px 24px;
  font-size: 20px;
  line-height: 1.2em;
  font-weight: 900;
  font-family: inherit;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.click-to-call {
  background-color: var(--red);
  color: #fff !important;
  border: 1px solid var(--red);
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.32);
}

.click-to-call:hover {
  color: #fff;
  background-color: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.secondary-cta {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(255,255,255,.65);
}

.secondary-cta:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* =========================================================
   City page title bar
   ========================================================= */

.service-title {
  display: block;
  position: relative;
  margin: 0;
  padding: 22px 18px 24px !important;
  text-align: center;
  font-family: "Oswald", sans-serif;
  background: linear-gradient(180deg, #31506f 0%, var(--navy-2) 100%);
  box-shadow: 0 10px 22px rgba(15, 47, 79, 0.18);
  border-bottom: 4px solid var(--gold);
  overflow: hidden;
}

.service-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.service-title h1 {
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 1px;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.42);
}

/* =========================================================
   Service intro block
   Used by homepage and city pages
   ========================================================= */

.service-section {
  text-align: center;
}

.service-section h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.4px;
  text-align: center;
}

.ctafirst {
  color: var(--red) !important;
  font-weight: 700;
  white-space: nowrap;
}

.ctafirst i,
.click-to-call i,
.local-final-cta__button i {
  animation: phone-ring 1.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg) scale(1); }
  10% { transform: rotate(-14deg) scale(1.12); }
  20% { transform: rotate(12deg) scale(1.12); }
  30% { transform: rotate(-10deg) scale(1.1); }
  40% { transform: rotate(8deg) scale(1.08); }
  50% { transform: rotate(0deg) scale(1); }
}

.aligncenter {
  clear: both;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}

.city-image-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto 18px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.city-image-wrap .aligncenter {
  height: 260px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}

.service-section p {
  max-width: var(--page-width);
  margin: 0 auto;
  color: #666666;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: .3px;
  line-height: 1.3;
}

.service-section p a {
  color: var(--red);
  font-weight: 900;
}

/* =========================================================
   Premium service cards
   ========================================================= */

.premium-services-section h2 {
  text-align: center;
  margin-bottom: 24px;
  color: var(--navy);
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  line-height: 1.08;
}

.premium-services-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.premium-services-cards li {
  position: relative;
  min-height: 86px;
  padding: 18px 18px 18px 22px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #dbe3ee;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.premium-services-cards li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--navy);
}

.premium-services-cards li::after {
  content: "";
  position: absolute;
  top: -28px;
  right: -28px;
  width: 76px;
  height: 76px;
  background: rgba(13, 43, 85, 0.06);
  border-radius: 50%;
}

.premium-services-cards li:hover {
  transform: translateY(-3px);
  border-color: var(--navy);
  box-shadow: 0 14px 30px rgba(13, 43, 85, 0.13);
}

.premium-service-title {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.premium-service-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.premium-service-label::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

/* =========================================================
   Process
   ========================================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: process;
}

.process-card {
  position: relative;
  min-height: 170px;
  padding: 22px;
  background: linear-gradient(180deg, #31506f 0%, var(--navy-2) 100%);
  color: var(--white);
  border-radius: 12px;
  border-bottom: 4px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(15, 47, 79, 0.18);
}

.process-card::before {
  counter-increment: process;
  content: "0" counter(process);
  position: absolute;
  right: 16px;
  top: 8px;
  color: rgba(255,255,255,.16);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.process-card h3 {
  margin-top: 58px;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.15;
}

.process-card p {
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

/* =========================================================
   Map
   ========================================================= */

.map-box {
  margin: 18px auto;
  padding: 10px 10px 5px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border-left: 0;
  border-bottom: 3px solid var(--navy);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 12px;
}

/* =========================================================
   Location links
   ========================================================= */

.service-locations-list {
  width: min(100% - 28px, var(--page-width));
  display: grid;
  gap: 12px;
  margin: 30px auto;
  padding: 0;
  list-style: none;
}

.states-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.nearby-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-locations-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--steel);
  border-radius: 5px;
  color: var(--steel);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.service-locations-list li:hover {
  background: var(--navy);
  border-color: var(--navy);
  border-left-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.service-locations-list li a.service-location {
  color: var(--steel);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.service-locations-list li:hover a.service-location {
  color: #ffffff;
  text-decoration: none;
}

/* =========================================================
   Final CTA
   ========================================================= */

.local-final-cta {
  width: min(100% - 28px, var(--page-width));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 34px auto 38px;
  padding: 24px;
  background: #ffffff;
  border-radius: var(--radius-card);
  border-left: 4px solid var(--navy);
  box-shadow: var(--shadow-soft);
}

.local-final-cta__content {
  flex: 1 1 auto;
}

.local-final-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--red) !important;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.local-final-cta__eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  animation: emergency-pulse 1.5s infinite;
}

@keyframes emergency-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.local-final-cta h2 {
  color: var(--navy);
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 8px;
}

.local-final-cta__content p {
  margin: 0;
  color: #475569;
  letter-spacing: .2px;
}

.local-final-cta__action {
  flex: 0 0 auto;
}

.local-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  background: var(--red);
  color: #ffffff !important;
  border: 1px solid var(--red);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.local-final-cta__button:hover,
.local-final-cta__button:focus {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

/* =========================================================
   Footer
   ========================================================= */

footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  border-top: 4px solid var(--gold);
  padding: 26px 0;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.footer-disclaimer {
  display: block;
  max-width: 470px;
  width: 100%;
}

.footer-disclaimer img {
  display: block;
  width: 100%;
  max-width: 470px;
  height: auto;
  margin-inline: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

/* =========================================================
   Mobile floating call button
   ========================================================= */

.mobile-floating-call {
  display: none;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .premium-services-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .states-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nearby-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .map-box {
    padding: 10px 10px 5px;
  }
}

@media (max-width: 720px) {
  [id] {
    scroll-margin-top: 100px;
  }
  

  .header-inner {
    min-height: 74px;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: center;
    gap: 10px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    grid-column: 1;
    justify-self: start;
  }

  .site-logo {
    grid-column: 2;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
  }

  .site-logo__icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .site-logo-img {
  width: 165px;
}

.headerphone {
  grid-column: 3;
  justify-self: end;
  width: 46px;
  height: 46px;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 10px;
  font-size: 18px;
  animation: headerphone-pulse 1.6s ease-in-out infinite;
}

@keyframes headerphone-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(239, 43, 45, 0.28);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 10px 26px rgba(239, 43, 45, 0.46);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(239, 43, 45, 0.28);
  }
}

  .headerphone span {
    display: none;
  }

  .mobile-nav {
    display: none;
    width: min(100% - 28px, var(--page-width));
    margin: 0 auto 12px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--navy);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .mobile-nav a {
    display: block;
    padding: 12px 14px;
    color: var(--navy);
    background: #f7f9fc;
    border-radius: 8px;
    font-weight: 800;
    text-align: center;
  }

  .mobile-nav a:hover {
    background: var(--navy);
    color: #ffffff;
  }

  .footer-inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
  }

.home-hero {
  min-height: auto;
  padding: 58px 14px;
}

.hero-actions {
  width: 100%;
  padding: 0 14px;
}

.click-to-call,
.secondary-cta {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}

  .home-hero h1 {
    font-size: 36px;
  }

  .home-hero h2 {
    font-size: 18px;
  }

  .click-to-call,
  .secondary-cta {
    width: 100%;
  }

  .service-title {
    padding: 16px 12px 18px !important;
  }

  .service-title h1 {
    font-size: 30px;
  }

  .service-section h2 {
    font-size: 24px;
  } 

  .service-section p {
    font-size: 17px;    
  }

  .ctafirst {
    font-size: 24px;
    display: block;
    margin-top: 10px;
    color: #ffffff !important;
    background: var(--red);
    border: 1px solid var(--red);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.22);
  }

  .aligncenter,
  .city-image-wrap .aligncenter {
    width: 100%;
  height: auto;
  }

  .map-box {
    padding: 5px 5px 0;
  }

  .map-box iframe {
    height: 300px;
  }

  .text-card,
  .local-final-cta {
    padding: 18px;
  }

  .premium-services-cards,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .states-list,
  .nearby-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin: 18px auto;
  }

  .service-locations-list li {
    min-height: 40px;
    font-size: 14px;
    padding: 8px 5px;
  }

  .service-locations-list li a.service-location {
    font-size: 13px;
    line-height: 1.15;
  }

  .local-final-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .local-final-cta__eyebrow {
    justify-content: center;
  }

  .local-final-cta__button {
    width: 100%;
    white-space: normal;
    font-size: 18px;
  }
  .mobile-floating-call {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  background: var(--red);
  color: #ffffff !important;
  border: 1px solid var(--red);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.36);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
}

.mobile-floating-call i {
  animation: phone-ring 1.5s ease-in-out infinite;
  transform-origin: center;
}

body {
  padding-bottom: 84px;
}
}

/* =========================================================
   Contact page
   ========================================================= */

.contact-intro {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 18px;
}

.contact-intro p {
  max-width: 900px;
  margin: 0 auto;
  color: #475569;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.2px;
}

.contact-intro strong {
  color: var(--navy);
  font-weight: 900;
}

.contact-grid {
  width: min(100% - 28px, var(--page-width));
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 22px;
  margin: 18px auto 26px;
}

.contact-call-card,
.contact-info-card,
.contact-area-card {
  min-height: 330px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.contact-call-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
  color: #ffffff;
  text-align: center;
  border-bottom: 4px solid var(--gold);
}

.contact-call-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  font-size: 30px;
}

.contact-call-card h2,
.contact-info-card h2,
.contact-area-card h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.08;
}

.contact-call-card h2 {
  color: #ffffff;
}

.contact-call-card p {
  max-width: 280px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}

.contact-phone-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-decoration: none;
}

.contact-phone-number:hover {
  color: #ffffff;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.contact-info-card {
  background: #ffffff;
  border-bottom: 4px solid var(--navy);
}

.contact-info-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid #edf1f6;
}

.contact-info-row:last-child {
  border-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #fff7d1;
  color: var(--navy);
  border-radius: 12px;
  font-size: 20px;
}

.contact-info-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-info-row p {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
}

.contact-info-row a {
  color: var(--text);
  text-decoration: none;
}

.contact-info-row a:hover {
  color: var(--red);
}

.contact-area-card {
  background: #f3f7fb;
  border-color: #d8e2ef;
  border-bottom: 4px solid var(--navy);
}

.contact-area-card p {
  margin: 0 0 18px;
  color: #334155;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}

.contact-area-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.contact-area-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.contact-area-buttons a:hover {
  background: var(--gold);
  color: var(--navy);
}

.contact-area-buttons a:last-child {
  background: var(--red);
}

.contact-area-buttons a:last-child:hover {
  background: var(--red-dark);
  color: #ffffff;
}

.contact-area-note {
  margin: 0 !important;
  color: var(--navy) !important;
  font-weight: 800 !important;
}

.contact-map {
  margin-top: 22px;
  margin-bottom: 38px;
}

/* =========================================================
   Contact page responsive
   ========================================================= */

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

  .contact-call-card,
  .contact-info-card,
  .contact-area-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .contact-intro {
    margin-top: 16px;
    margin-bottom: 16px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 22px;
  }

  .contact-call-card,
  .contact-info-card,
  .contact-area-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .contact-call-icon {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

  .contact-call-card h2,
  .contact-info-card h2,
  .contact-area-card h2 {
    font-size: 24px;
  }

  .contact-phone-number {
    font-size: 24px;
  }

  .contact-area-buttons {
    justify-content: center;
  }

  .contact-area-buttons a {
    width: 100%;
  }

  .contact-map {
    margin-top: 18px;
    margin-bottom: 30px;
  }
}