:root {
  --brand-gold: #b08e3b;
  --brand-orange: #f59e0b;
  --hero-radius: 1rem;
  --header-h: 78px; /* used for hero full-height math */
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: #ffffff;
  color: #111827;
}

/* Global heading system: keep h1-h6 consistent across all pages/sections */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: inherit !important;
  text-shadow: none !important;
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem) !important;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem) !important;
}

h4 {
  font-size: 1.25rem !important;
}

h5 {
  font-size: 1.1rem !important;
}

h6 {
  font-size: 1rem !important;
}

/* Global page padding (20px each side) */
.page-pad {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* Header styling to match screenshot */
.site-navbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.header-announcement {
  background: #e89200;
  color: #000000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.header-announcement-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
}

.header-announcement-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding-right: 1.5rem;
}

.header-announcement-item {
  white-space: nowrap;
}

.header-announcement-divider {
  width: 1px;
  height: 14px;
  background: rgba(0, 0, 0, 0.35);
}

.header-announcement-close {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #000000;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.1rem 0.3rem;
  cursor: pointer;
}

.header-announcement-close:hover,
.header-announcement-close:focus-visible {
  opacity: 0.7;
}

@media (max-width: 767.98px) {
  .header-announcement {
    display: none;
  }
}

.navbar .nav-link {
  color: #4b5563; /* dark gray */
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #111827;
}

.navbar .dropdown-toggle::after {
  margin-left: 0.35rem;
  vertical-align: 0.15rem;
}

/* Modern dropdown styling */
.navbar .dropdown-menu {
  border-radius: 0.85rem;
  padding: 0.5rem;
  min-width: 14rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.navbar .dropdown-item {
  border-radius: 0.65rem;
  padding: 0.6rem 0.75rem;
  font-weight: 500;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: rgba(245, 158, 11, 0.12);
}

@media (min-width: 1200px) {
  /* Desktop-only: hover open + smooth transition without breaking mobile layout */
  .navbar .dropdown-menu {
    /* transition-ready state (override Bootstrap's display:none) */
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar .dropdown-menu {
    transition: none;
  }
}

.btn-brand {
  --bs-btn-bg: var(--brand-orange);
  --bs-btn-border-color: var(--brand-orange);
  --bs-btn-hover-bg: #e89200;
  --bs-btn-hover-border-color: #e89200;
  --bs-btn-active-bg: #d98600;
  --bs-btn-active-border-color: #d98600;
  --bs-btn-color: #111827;
  --bs-btn-hover-color: #111827;
  --bs-btn-active-color: #111827;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.7rem 1.4rem;
}

/* Brand mark */
.brand-logo {
  width: 150px;
  height: auto;
  display: block;
}

@media (max-width: 767.98px) {
  .brand-logo {
    width: 150px;
  }
}

@media (min-width: 1200px) {
  .brand-logo {
    width: 250px;
  }
}

/* Hero */
.hero-card {
  border-radius: var(--hero-radius);
  min-height: calc(85vh - var(--header-h) - 2rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.38) 55%, rgba(0, 0, 0, 0.12) 100%);
}

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

.hero-eyebrow {
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: #fff;
  margin-bottom: 0.6rem;
  opacity: 0.95;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 600;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  color: #fff !important;
}

.hero-bottom-copy {
  max-width: 560px;
  color: #fff;
  opacity: 0.7;
  font-size: 0.95rem;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  padding-right: 180px; /* helps avoid overlapping the bottom-right CTA */
}

.hero-bottom-phone {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.1;
  text-decoration: none;
}

.hero-bottom-phone:hover,
.hero-bottom-phone:focus-visible {
  color: #f59e0b;
}

.hero-cta {
  border-radius: 0.6rem;
  padding: 0.75rem 1.55rem;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .hero-card {
    min-height: 860px;
  }

  .hero-bg {
    transform: scale(1);
    background-position: center top;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.72) 100%);
  }

  .hero-card > .position-relative.p-4.p-md-5 {
    padding-top: 2.45rem !important;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-eyebrow {
    font-size: 0.86rem;
    letter-spacing: 0.11em;
    margin-bottom: 0.9rem;
    font-weight: 600;
  }

  .hero-title {
    font-size: clamp(2.55rem, 10vw, 3.35rem);
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: 0;
  }

  .hero-bottom-copy {
    left: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 6.3rem !important;
    margin: 0 !important;
    max-width: none;
    padding-right: 0;
    text-align: center;
    font-size: 1.12rem;
    line-height: 1.45;
    opacity: 0.9;
  }

  .hero-bottom-phone {
    margin-bottom: 0.55rem;
  }

  .hero-cta {
    left: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.3rem !important;
    margin: 0 !important;
    width: auto;
    display: block;
    text-align: center;
  }
}

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0.75rem;
  padding: 0.95rem 1.05rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: #111827;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
}

.trust-item i {
  color: #f59e0b;
  font-size: 1.08rem;
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .trust-bar {
    grid-template-columns: 1fr;
    padding: 0.85rem 0.9rem;
  }

  .trust-item {
    font-size: 0.92rem;
  }
}

/* Why Choose Us */
.why-choose-section {
  background: #f1f2f4;
}

@media (min-width: 992px) {
  .why-choose-section .page-pad {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
}

.why-choose-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.why-choose-kicker {
  color: #b08e3b;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.why-choose-title {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.06;
  font-weight: 600;
  color: #111827;
  max-width: 760px;
}

.why-choose-description {
  color: #4b5563;
  font-size: 1.18rem;
  line-height: 1.55;
  max-width: 650px;
  padding-top: 1.8rem;
}

.why-choose-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 1.15rem;
  align-items: stretch;
}

.why-choose-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem;
}

.why-choose-card {
  background: #ece6d9;
  border-radius: 0.35rem;
  padding: 1.25rem 1.1rem 1.15rem;
  min-height: 245px;
}

.why-choose-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.45rem;
  background: #f59e0b;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.why-choose-card-title {
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.65rem;
}

.why-choose-card p {
  color: #4b5563;
  font-size: 1.04rem;
  line-height: 1.45;
}

.why-choose-media {
  border-radius: 0.35rem;
  overflow: hidden;
  background: #d1d5db;
  min-height: 100%;
}

.why-choose-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 1199.98px) {
  .why-choose-title {
    font-size: clamp(2rem, 4.8vw, 3.3rem);
  }

  .why-choose-card-title {
    font-size: 1.55rem;
  }

  .why-choose-card {
    min-height: 225px;
  }
}

@media (max-width: 991.98px) {
  .why-choose-top,
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .why-choose-description {
    padding-top: 0;
    font-size: 1.02rem;
    max-width: none;
  }

  .why-choose-media {
    min-height: 380px;
  }
}

@media (max-width: 767.98px) {
  .why-choose-kicker {
    font-size: 0.8rem;
  }

  .why-choose-title {
    font-size: 2.4rem;
    line-height: 1.08;
  }

  .why-choose-cards {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .why-choose-card {
    min-height: 0;
    padding: 1rem;
  }

  .why-choose-card-title {
    font-size: 1.45rem;
  }

  .why-choose-card p {
    font-size: 0.98rem;
  }

  .why-choose-media {
    min-height: 320px;
  }
}

/* Footer */
.footer-wrap {
  margin-top: 1rem;
}

.footer-card {
  background: #191a1f;
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 1.5rem 1.75rem 1rem;
}

.footer-newsletter {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.4rem;
}

.footer-newsletter-title {
  color: #f8fafc;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  font-weight: 600;
  max-width: 480px;
  line-height: 1.25;
}

.footer-subscribe {
  width: 100%;
  max-width: 370px;
}

.footer-subscribe-group {
  display: flex;
  background: #ffffff;
  border-radius: 0.4rem;
  border: 2px solid #f59e0b;
  overflow: hidden;
}

.footer-input {
  border: 0;
  outline: 0;
  width: 100%;
  padding: 0.62rem 0.75rem;
  font-size: 0.875rem;
}

.footer-subscribe-btn {
  border: 0;
  background: #f59e0b;
  color: #111827;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 0.62rem 1rem;
  white-space: nowrap;
}

.footer-main {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand {
  margin-bottom: 0.55rem;
}

.footer-logo {
  width: 250px;
  height: auto;
  display: block;
}

.footer-copy {
  max-width: 285px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-heading {
  color: #f8fafc;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-list a:hover {
  color: #f59e0b;
}

.footer-list-social i,
.footer-list-contact i {
  color: #f59e0b;
  margin-right: 0.35rem;
  font-size: 0.9rem;
}

.footer-bottom {
  padding-top: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.footer-credit-link {
  color: var(--brand-orange);
  text-decoration: none;
}

.footer-credit-link:hover,
.footer-credit-link:focus-visible {
  color: #ffb01f;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-legal a:hover {
  color: #f59e0b;
}

@media (max-width: 991.98px) {
  .footer-card {
    padding: 1.25rem 1rem 0.9rem;
  }

  .footer-heading {
    font-size: 1.2rem;
  }

}

@media (max-width: 767.98px) {
  .footer-newsletter {
    margin-bottom: 1.2rem;
  }

  .footer-subscribe {
    max-width: none;
  }

  .footer-subscribe-group {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 0.5rem;
    padding: 0.35rem;
    gap: 0.35rem;
    background: #f3f4f6;
  }

  .footer-input {
    background: transparent;
    border-radius: 0.35rem;
    min-height: 54px;
  }

  .footer-subscribe-btn {
    width: 100%;
    border-radius: 0.35rem;
    min-height: 46px;
  }

  .footer-main {
    gap: 0.35rem !important;
  }

  .footer-heading {
    margin-top: 0.35rem;
  }

  .footer-bottom {
    padding-top: 1rem;
  }
}

/* About */
.about-section {
  background: #f1f2f4;
}

@media (min-width: 992px) {
  .about-section .page-pad {
    padding-left: 200px !important;
    padding-right: 200px !important;
  }
}

.about-top {
  margin-bottom: 0.5rem;
}

.about-top-copy {
  max-width: 980px;
}

.about-kicker {
  color: #f59e0b;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.about-title,
.services-title {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.1;
  font-weight: 600;
  color: #111827;
  max-width: 980px;
}

.about-description {
  color: #4b5563;
  font-size: 1.06rem;
  line-height: 1.45;
  max-width: 920px;
}

.about-top-action {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-btn {
  min-width: 130px;
  border-radius: 0.5rem;
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 0.95fr);
  gap: 1rem;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-image {
  border-radius: 0.5rem;
  overflow: hidden;
  background: #d1d5db;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image-main {
  aspect-ratio: 16 / 10;
}

.about-image-main img {
  object-position: center 35%;
}

.about-image-tall {
  height: 100%;
  min-height: 100%;
}

.about-image-tall img {
  object-position: 35% center;
}

.about-right {
  min-height: 100%;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-stat-card {
  background: #ece6d9;
  border-radius: 0.5rem;
  padding: 1.55rem 1.3rem;
}

.about-stat-number {
  color: #f59e0b;
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.about-stat-title {
  color: #111827;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}

.about-stat-card p {
  color: #4b5563;
  font-size: 1.04rem;
  line-height: 1.45;
}

@media (max-width: 991.98px) {
  .about-title,
  .services-title {
    font-size: clamp(1.95rem, 7.8vw, 2.9rem);
  }

  .about-description {
    font-size: 1.08rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .about-right {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .about-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .about-kicker {
    font-size: 0.88rem;
    margin-bottom: 0.65rem !important;
  }

  .about-title,
  .services-title {
    font-size: 2.6rem;
    line-height: 1.08;
    margin-bottom: 0.95rem !important;
  }

  .about-description {
    font-size: 1.15rem;
    line-height: 1.45;
  }

  .about-top-action {
    width: 100%;
  }

  .services-top-action {
    width: 100%;
  }

  .about-btn {
    width: 100%;
    font-size: 1.05rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .about-grid {
    margin-top: 1.25rem !important;
    gap: 1rem;
  }

  .about-image-main {
    aspect-ratio: 0.91 / 1;
  }

  .about-image-main img {
    object-position: 47% center;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .about-stat-card {
    padding: 1.2rem 1.2rem;
  }

  .about-stat-number {
    font-size: 2.9rem;
    margin-bottom: 0.75rem;
  }

  .about-stat-title {
    font-size: 2rem;
  }

  .about-stat-card p {
    font-size: 1.05rem;
  }
}

/* Services */
.services-section {
  background: #f1f2f4;
  padding-top: 0 !important;
}

@media (min-width: 992px) {
  .services-section .page-pad {
    padding-left: 200px !important;
    padding-right: 200px !important;
  }
}

.services-top-copy {
  max-width: 620px;
}

.services-top-action {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-kicker {
  color: #f59e0b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.services-btn {
  min-width: 126px;
  border-radius: 0.5rem;
  font-weight: 600;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-card {
  position: relative;
  border-radius: 0.45rem;
  overflow: hidden;
  min-height: 380px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card:nth-child(1) img {
  object-position: 20% center;
}

.service-card:nth-child(2) img {
  object-position: 52% center;
}

.service-card:nth-child(3) img {
  object-position: 80% center;
}

.service-card:nth-child(4) img {
  object-position: 62% center;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 38%, rgba(0, 0, 0, 0.74) 100%);
  transition: background 0.3s ease;
}

.service-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1rem 0.95rem;
  color: #ffffff;
  z-index: 1;
  transform: translateY(34px);
  transition: transform 0.3s ease;
}

.service-card-title {
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 600;
}

.service-card-content p {
  font-size: 1rem;
  line-height: 1.35;
  opacity: 0.95;
  max-width: 270px;
  margin-bottom: 0;
}

.service-card-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-card-content,
.service-card:focus-visible .service-card-content {
  transform: translateY(0);
}

.service-card:hover .service-card-learn-more,
.service-card:focus-visible .service-card-learn-more {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-card-overlay,
.service-card:focus-visible .service-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 34%, rgba(0, 0, 0, 0.78) 100%);
}

.service-card:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

/* Service area badges */
.service-area-badge {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.5rem 1rem !important;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.service-area-badge:hover,
.service-area-badge:focus-visible {
  background-color: var(--brand-orange) !important;
  border-color: var(--brand-orange) !important;
  color: #111827 !important;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.26);
}

@media (max-width: 991.98px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .service-card {
    min-height: 430px;
  }

  .service-card-content {
    transform: translateY(0);
  }

  .service-card-learn-more {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ */
.blog-section {
  background: #f1f2f4;
}

@media (min-width: 992px) {
  .blog-section .page-pad {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
}

.blog-kicker {
  color: #b08e3b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.blog-title {
  font-size: clamp(2rem, 3.35vw, 3.15rem);
  line-height: 1.12;
  font-weight: 600;
  color: #111827;
}

.blog-btn {
  min-width: 124px;
  border-radius: 0.5rem;
  font-weight: 600;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.blog-top-action {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-cta-phone {
  display: block;
  margin-top: 20px;
  color: var(--brand-orange);
  font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.section-cta-phone:hover,
.section-cta-phone:focus-visible {
  color: #e89200;
}

.section-cta-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.section-cta-btn {
  min-width: 130px;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
}

.service-area-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  background: #ece6d9;
  border-radius: 0.5rem;
  padding: 0.9rem 0.9rem 0.95rem;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-card-media {
  border-radius: 0.35rem;
  overflow: hidden;
  background: #d1d5db;
  aspect-ratio: 16 / 9;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card:nth-child(1) .blog-card-media img {
  object-position: 40% center;
}

.blog-card:nth-child(2) .blog-card-media img {
  object-position: 55% center;
}

.blog-card:nth-child(3) .blog-card-media img {
  object-position: 70% center;
}

.blog-card:nth-child(4) .blog-card-media img {
  object-position: 85% center;
}

.blog-card-title {
  font-size: 2.4rem;
  line-height: 1.14;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.65rem;
}

.blog-card-excerpt {
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.45;
}

.blog-card-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #374151;
  font-size: 0.96rem;
  line-height: 1.2;
}

.blog-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: #f59e0b;
  flex: 0 0 auto;
}

.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.blog-card:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

@media (max-width: 1199.98px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .blog-title {
    font-size: 2.6rem;
    line-height: 1.08;
  }

  .blog-top-action {
    width: auto;
  }

  .blog-btn {
    width: auto;
  }

  .section-cta-stack {
    width: 100% !important;
    align-items: stretch;
  }

  .section-cta-btn {
    width: 100% !important;
    font-size: 1.05rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .blog-card-title {
    font-size: 1.85rem;
  }

  .blog-card-meta {
    font-size: 0.9rem;
  }
}

.faq-section {
  background: #f1f2f4;
  padding-top: 1.1rem !important;
}

/* Blog post page */
.blog-post-page {
  background: #ffffff;
}

.blog-post-section {
  background: #ffffff;
}

.blog-post-shell {
  max-width: none;
  margin: 0;
}

.blog-post-shell > .contact-hero-card {
  margin-bottom: 2.75rem;
}

.blog-post-hero {
  border-radius: 0.45rem;
  overflow: hidden;
  position: relative;
  margin: 0 0 2.4rem;
  min-height: 360px;
}

.blog-post-hero img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.5) 78%);
}

.blog-post-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 1.5rem;
}

.blog-post-title {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 0.65rem;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.blog-post-submeta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #f59e0b;
  font-size: 0.74rem;
  font-weight: 600;
}

.blog-post-submeta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f59e0b;
  display: inline-block;
}

.blog-post-content {
  max-width: 820px;
  margin: 0 auto;
}

.blog-post-cta {
  max-width: 820px;
  margin: 2.1rem auto 0;
  background: #ece6d9;
  border: 1px solid #ddd3bf;
  border-radius: 0.6rem;
  padding: 1.3rem 1.15rem;
  text-align: center;
}

.blog-post-cta-title {
  color: #111827;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.blog-post-cta-copy {
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.45;
  margin-bottom: 0.9rem;
}

.blog-post-cta-phone {
  display: block;
  margin-top: 0.95rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: var(--brand-orange);
  text-decoration: none;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.15;
}

.blog-post-cta-phone:hover,
.blog-post-cta-phone:focus-visible {
  color: #e89200;
}

.blog-post-content p {
  color: #4b5563;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.blog-post-feature-media {
  margin: 0 0 1.55rem;
  border-radius: 0.35rem;
  overflow: hidden;
}

.blog-post-feature-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.blog-post-content h2 {
  color: #1f2937;
  font-size: clamp(1.8rem, 2.2vw, 2.7rem);
  line-height: 1.15;
  font-weight: 600;
  margin: 0.55rem 0 1rem;
}

.blog-post-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.blog-post-meta-row {
  max-width: 820px;
  margin: 2rem auto 0;
  padding: 1rem 0 0;
  border-top: 1px solid #d8d9dd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.blog-post-meta-label {
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: none;
}

.blog-post-tags,
.blog-post-share {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.blog-post-tags a {
  color: #f59e0b;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
}

.blog-post-tags a:hover {
  color: #da8c06;
}

.blog-post-share a {
  color: #f59e0b;
  text-decoration: none;
  font-size: 0.78rem;
  line-height: 1;
}

.blog-post-share a:hover {
  color: #da8c06;
}

@media (max-width: 991.98px) {
  .blog-post-hero,
  .blog-post-hero img {
    min-height: 280px;
  }

  .blog-post-content h2 {
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
  }
}

@media (max-width: 767.98px) {
  .blog-post-shell > .contact-hero-card {
    margin-bottom: 1.8rem;
  }

  .blog-post-hero {
    margin-bottom: 1.5rem;
  }

  .blog-post-title {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .blog-post-content p {
    font-size: 0.92rem;
  }

  .blog-post-two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .blog-post-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .blog-post-cta {
    margin-top: 1.65rem;
    padding: 1.15rem 0.95rem;
  }

  .blog-post-cta-copy {
    font-size: 0.94rem;
  }
}

@media (min-width: 992px) {
  .faq-section .page-pad {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
}

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: start;
}

.faq-copy {
  padding-top: 0.1rem;
  max-width: 560px;
}

.faq-kicker {
  color: #f59e0b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.faq-title {
  font-size: clamp(2rem, 3.1vw, 3.05rem);
  line-height: 1.12;
  font-weight: 600;
  color: #111827;
  max-width: 520px;
}

.faq-description {
  font-size: 1.05rem;
  line-height: 1.45;
  color: #4b5563;
  max-width: 500px;
}

.faq-all-btn {
  border-radius: 0.5rem;
  font-weight: 600;
}

.faq-page {
  background: #ffffff;
}

.faq-page-main {
  background: #efefef;
  padding-top: 2.1rem !important;
}

.faq-page-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.faq-page-intro {
  margin-bottom: 1.8rem;
}

.faq-page-intro .faq-title {
  max-width: 760px;
}

.faq-page-intro .faq-description {
  max-width: 920px;
}

.faq-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.faq-category-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
}

.faq-category-nav a:hover {
  border-color: #f59e0b;
  color: #111827;
}

.faq-category-section + .faq-category-section {
  margin-top: 1.15rem;
}

.faq-wrap-category {
  background: #f4f4f5;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  padding: 1.1rem;
  gap: 1.8rem;
}

.faq-category-copy {
  max-width: 540px;
}

.faq-category-title {
  color: #111827;
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
  line-height: 1.18;
  font-weight: 700;
}

.faq-page-cta {
  margin-top: 1.2rem;
  border-radius: 0.6rem;
  background: #111827;
  color: #f9fafb;
  padding: 1.5rem 1.25rem;
}

.faq-page-cta-title {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.faq-page-cta-copy {
  color: rgba(255, 255, 255, 0.83);
  max-width: 640px;
}

.faq-page-cta-btn {
  border-radius: 0.5rem;
  font-weight: 600;
}

.faq-accordion {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 0.4rem;
  overflow: hidden;
  background: #ece6d9;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: #2d2d2d;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.9rem 1.25rem;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
}

.faq-panel {
  padding: 0 1.25rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.34s ease, opacity 0.24s ease, padding 0.34s ease;
}

.faq-panel p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.45;
  max-width: 650px;
}

.faq-icon {
  font-size: 1.3rem;
  transition: transform 0.18s ease;
  flex: 0 0 auto;
}

.faq-item.is-open {
  background: #f59e0b;
}

.faq-item.is-open .faq-trigger {
  color: #fff;
}

.faq-item.is-open .faq-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.faq-item.is-open .faq-panel {
  padding: 0 1.25rem 1rem;
  max-height: 24rem;
  opacity: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-trigger:focus-visible {
  outline: 2px solid #111827;
  outline-offset: -2px;
}

@media (max-width: 991.98px) {
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .faq-page-main {
    padding-top: 1.5rem !important;
  }

  .faq-page-intro {
    margin-bottom: 1.15rem;
  }

  .faq-wrap-category {
    padding: 0.85rem;
    gap: 1.2rem;
  }

  .faq-title {
    max-width: none;
    font-size: clamp(2rem, 8.2vw, 2.9rem);
  }

  .faq-description {
    max-width: none;
  }

  .faq-trigger {
    font-size: 1.05rem;
    padding: 0.8rem 0.95rem;
  }

  .faq-panel {
    padding: 0 0.95rem;
  }

  .faq-panel p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .faq-item.is-open .faq-panel {
    padding: 0 0.95rem 0.9rem;
  }

  .faq-page-cta {
    padding: 1.2rem 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-panel {
    transition: none;
  }
}

/* Google Testimonials */
.google-testimonials {
  background: #f6f6f7;
}

@media (min-width: 992px) {
  .google-testimonials .page-pad {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
}

.google-testimonials-shell {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.google-score {
  text-align: center;
  color: #111827;
}

.google-score-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.google-score-stars {
  color: #f59e0b;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0.2rem 0 0.35rem;
}

.google-score-meta {
  color: #374151;
  font-size: 1.2rem;
  line-height: 1.25;
}

.google-score-meta a {
  color: var(--brand-orange);
  text-decoration: none;
}

.google-score-meta a:hover,
.google-score-meta a:focus-visible {
  color: #e89200;
  text-decoration: none;
}

.google-wordmark {
  display: block;
  width: 120px;
  height: auto;
  margin: 0.15rem auto 0;
}

.google-cards-area {
  position: relative;
}

.google-cards-track {
  --google-cards-gap: 0.95rem;
  display: flex;
  gap: var(--google-cards-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 0.3rem 0.1rem;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.google-cards-track::-webkit-scrollbar {
  display: none;
}

.google-cards-track.is-dragging {
  cursor: grabbing;
}

.google-review-card {
  flex: 0 0 calc((100% - (var(--google-cards-gap) * 2)) / 3);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.65rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 0.85rem 0.9rem 0.8rem;
  scroll-snap-align: start;
}

.google-review-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}

.google-review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #d1d5db;
  color: #374151;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.google-review-author {
  min-width: 0;
}

.google-review-author h3 {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.google-review-author p {
  font-size: 0.8rem;
  line-height: 1.2;
  color: #6b7280;
}

.google-badge-icon {
  margin-left: auto;
  width: 16px;
  height: 16px;
  display: block;
}

.google-review-stars {
  color: #f59e0b;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.google-review-stars i {
  color: #3b82f6;
  font-size: 0.78rem;
  margin-left: 0.2rem;
}

.google-review-text {
  color: #1f2937;
  font-size: 0.9rem;
  line-height: 1.35;
  margin-bottom: 0.45rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.google-review-more {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.86rem;
}

.google-review-more:hover {
  color: #111827;
}

.google-testimonials-prev,
.google-testimonials-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.google-testimonials-prev {
  left: -0.75rem;
}

.google-testimonials-next {
  right: -0.75rem;
}

@media (max-width: 991.98px) {
  .google-testimonials-shell {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .google-score {
    text-align: left;
  }

  .google-score-title {
    font-size: 1.5rem;
  }

  .google-score-stars {
    font-size: 1.35rem;
    margin: 0.1rem 0 0.2rem;
  }

  .google-score-meta {
    font-size: 0.95rem;
  }

  .google-wordmark {
    width: 105px;
    margin-left: 0;
    margin-right: 0;
  }

  .google-review-card {
    flex-basis: min(86vw, 320px);
  }

  .google-cards-track {
    cursor: auto;
    user-select: auto;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .google-testimonials-prev,
  .google-testimonials-next {
    display: none;
  }
}

/* 404 page */
.error-404-page {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
}

.error-404-shell {
  min-height: 100vh;
  padding: 10px;
}

.error-404-card {
  position: relative;
  min-height: calc(100vh - 20px);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
}

.error-404-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.error-404-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 680px;
  padding: 1.5rem;
}

.error-404-code {
  margin: 0;
  font-size: clamp(4.7rem, 11vw, 8.4rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.error-404-title {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.05;
  font-weight: 700;
}

.error-404-copy {
  margin: 1.1rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 640px;
}

.error-404-home {
  margin-top: 1.2rem;
  border-radius: 10px;
  padding: 0.55rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  min-width: 150px;
}

@media (max-width: 767.98px) {
  .error-404-shell {
    padding: 8px;
  }

  .error-404-card {
    min-height: calc(100vh - 16px);
  }

  .error-404-copy {
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 95%;
  }
}

/* Contact page */
.contact-page {
  background: #ffffff;
}

.contact-hero {
  padding-top: 0.65rem;
}

.contact-hero-card {
  position: relative;
  border-radius: 0.45rem;
  overflow: hidden;
  min-height: 360px;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-hero-copy {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 1.5rem;
}

.contact-hero-title {
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.contact-breadcrumb {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #f59e0b;
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.contact-breadcrumb i {
  font-size: 0.6rem;
}

.contact-main {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.contact-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-kicker {
  text-align: center;
  color: #f59e0b;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.contact-title {
  text-align: center;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.08;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.85rem;
}

.contact-support-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: #4b5563;
  font-size: 1.03rem;
  line-height: 1.55;
}

.contact-support-phone {
  display: block;
  width: fit-content;
  margin: 0.95rem auto 2.25rem;
  color: var(--brand-orange);
  text-decoration: none;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.contact-support-phone:hover,
.contact-support-phone:focus-visible {
  color: #e89200;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.contact-left {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  order: 2;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-info-card {
  background: #ece6d9;
  border-radius: 0.35rem;
  padding: 1.2rem 1rem 1rem;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.35rem;
  background: #f59e0b;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.95rem;
}

.contact-info-title {
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.45rem;
}

.contact-info-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-map-wrap {
  border-radius: 0.35rem;
  overflow: hidden;
  background: #d1d5db;
  min-height: 255px;
}

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

.contact-form-box {
  background: #ece6d9;
  border-radius: 0.35rem;
  padding: 1.25rem 1rem;
  order: 1;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
}

.contact-field {
  position: relative;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-label {
  display: block;
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.3rem;
  background: #ffffff;
  color: #111827;
  font-size: 0.9rem;
  line-height: 1.35;
}

.contact-input {
  min-height: 36px;
  padding: 0.45rem 0.78rem;
}

.contact-textarea {
  min-height: 92px;
  resize: vertical;
  padding: 0.55rem 0.78rem;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #a3a3a3;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.17);
  outline: none;
}

.contact-required-marker {
  position: absolute;
  right: 0.6rem;
  top: 2rem;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #ef4444;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  line-height: 1;
}

.contact-submit {
  margin-top: 1rem;
  border-radius: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 1.6rem;
}

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

  .contact-main {
    padding-top: 2.2rem;
  }
}

@media (max-width: 767.98px) {
  .contact-hero-card,
  .contact-hero-copy {
    min-height: 290px;
  }

  .contact-main {
    padding-top: 1.8rem;
  }

  .contact-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
    margin-bottom: 0.75rem;
  }

  .contact-support-copy {
    font-size: 0.98rem;
  }

  .contact-support-phone {
    margin-bottom: 1.4rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
