:root {
  --brand: #d30b12;
  --brand-dark: #a80007;
  --ink: #0d1017;
  --muted: #5d6675;
  --line: #e7e9ee;
  --soft: #fff5f5;
}

* {
  box-sizing: border-box;
}

body {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #fff;
}

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

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

.topbar {
  color: #fff;
  background: #050505;
  font-size: 0.9rem;
  padding: 0.55rem 0;
}

.topbar i,
.footer i {
  color: var(--brand);
}

.follow-label {
  font-weight: 700;
}

.social {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}

.social:hover {
  color: #fff;
  background: var(--brand);
}

.navbar {
  min-height: 104px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand img {
  width: min(260px, 54vw);
  height: auto;
}

.brand-mark {
  display: inline-grid;
  width: 52px;
  height: 58px;
  place-items: center;
  color: #fff;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand) 0 55%, #20232b 55% 100%);
  clip-path: polygon(45% 0, 100% 100%, 68% 100%, 54% 68%, 29% 100%, 0 100%);
}

.navbar-brand strong {
  display: block;
  color: var(--brand);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.navbar-brand small {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25;
}

.navbar-brand em {
  display: block;
  color: var(--brand);
  font-style: normal;
  font-size: 0.72rem;
}

.navbar-nav .nav-link {
  color: #181b22;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  padding-inline: 0.85rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--brand);
}

.call-btn,
.btn-primary {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: none;
}

.call-btn {
  display: none;
  align-items: center;
  gap: 0.55rem;
  min-height: 54px;
  padding-inline: 1.25rem;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 8px;
}

.btn {
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.btn-primary:hover,
.btn-primary:focus,
.call-btn:hover {
  color: #fff;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-outline-brand {
  color: var(--brand);
  background: #fff;
  border: 1px solid rgba(211, 11, 18, 0.35);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.hero {
  position: relative;
  padding: 0.75rem 0 5rem;
  overflow: hidden;
  background: #f6f6f6;
}

.hero::after {
  content: none;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 18, 28, 0.14);
}

.hero-frame img {
  width: 100%;
  height: auto;
}

.hero-actions {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero .btn-lg {
  min-width: 170px;
  padding: 0.88rem 1.25rem;
  border-radius: 16px;
}

.hero .btn-light {
  color: #181b22;
  background: #fff;
  border-color: #fff;
}

.quick-services {
  position: relative;
  margin-top: -3rem;
  z-index: 3;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.quick-item {
  display: grid;
  place-items: center;
  gap: 0.35rem;
  min-height: 150px;
  padding: 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item i,
.service-card i {
  color: var(--brand);
  font-size: 2.8rem;
  line-height: 1;
}

.service-icon-img {
  width: 64px;
  height: 54px;
  object-fit: contain;
}

.quick-item strong,
.service-card h3 {
  font-size: 0.93rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-item span,
.service-card p,
.image-card p {
  color: #21242b;
  font-size: 0.86rem;
  margin: 0;
}

.section-space {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.eyebrow,
.contact-person span,
.branch-card strong {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.2;
}

.lead-copy {
  max-width: 680px;
  color: #28303b;
  font-size: 1rem;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 2rem;
}

.icon-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.icon-row i,
.why-box i,
.branch-card > i {
  color: var(--brand);
  font-size: 1.45rem;
}

.why-box,
.branch-card,
.contact-person,
.contact-journey,
.contact-info-item,
.service-card,
.image-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.why-box {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: #fff url("../img/why-pattern.jpg") right bottom / min(58%, 360px) auto no-repeat;
}

.why-box::after {
  content: none;
}

.why-box h3 {
  position: relative;
  margin-bottom: 1.7rem;
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
}

.why-box h3::after,
.section-title h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 0.55rem;
  background: var(--brand);
}

.why-box .row {
  position: relative;
  z-index: 1;
}

.why-box .col-sm-6 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 42px;
  font-size: 0.92rem;
  font-weight: 700;
}

.section-title {
  display: flex;
  justify-content: center;
  margin-bottom: 1.65rem;
  text-align: center;
}

.section-title h2 {
  display: inline-grid;
  justify-items: center;
  text-transform: uppercase;
}

.section-title h2::after {
  width: 48px;
  margin-inline: auto;
}

.service-card {
  display: grid;
  place-items: center;
  gap: 0.35rem;
  min-height: 150px;
  padding: 1.2rem 0.85rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.image-card {
  overflow: hidden;
  height: 100%;
  text-align: center;
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f3f4f6;
}

.image-card img.thumb-contain {
  object-fit: contain;
  padding: 0.35rem;
  background: #fff;
}

.image-card h3 {
  margin: 0.75rem 0 0.2rem;
  padding-inline: 0.45rem;
  font-size: 0.86rem;
  font-weight: 900;
}

.image-card p {
  padding: 0 0.45rem 0.85rem;
}

.service-card:hover,
.image-card:hover {
  transform: translateY(-3px);
  border-color: rgba(211, 11, 18, 0.35);
  box-shadow: 0 14px 34px rgba(18, 20, 28, 0.08);
}

.split-section {
  background: linear-gradient(90deg, transparent 0 49.95%, var(--line) 49.95% 50.05%, transparent 50.05% 100%);
}

.branch-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  min-height: 245px;
  padding: clamp(1.3rem, 3vw, 2.3rem);
}

.contact-journey {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.97), rgba(255,255,255,0.9)),
    url("../img/why-pattern.jpg") right bottom / min(42%, 360px) auto no-repeat;
  box-shadow: 0 14px 34px rgba(18, 20, 28, 0.06);
}

.contact-intro h2 {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.contact-intro p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.35rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-info-item {
  min-height: 185px;
  padding: 1.3rem;
}

.contact-info-item i {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.contact-info-item span {
  display: block;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.contact-info-item a,
.contact-info-item strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.45;
}

.contact-info-links {
  display: grid;
  gap: 0.25rem;
}

.contact-info-links a:last-child {
  color: var(--brand);
  font-size: 0.92rem;
}

.contact-person-card p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.branch-map {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.branch-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.branch-card h3 {
  margin: 0.5rem 0 0.6rem;
  font-size: 1.25rem;
  font-weight: 900;
}

.branch-card p {
  max-width: 430px;
  margin-bottom: 1.2rem;
  color: #252a33;
  font-weight: 600;
}

.contact-person {
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr) repeat(3, auto);
  align-items: center;
  gap: 1.2rem 2rem;
  margin-top: 2rem;
  padding: 1.25rem clamp(1rem, 3vw, 2.3rem);
  border-color: rgba(211, 11, 18, 0.65);
}

.avatar {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--brand);
}

.avatar i {
  font-size: 3rem;
}

.contact-person h3 {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 900;
}

.contact-person p {
  margin: 0;
}

.contact-person a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.contact-person a i {
  color: #111;
  font-size: 1.35rem;
}

.contact-person a img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer {
  color: #fff;
  background: linear-gradient(135deg, #05080d, #111822);
}

.footer .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer h2 {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.footer ul {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer li::before {
  content: "›";
  color: var(--brand);
  margin-right: 0.35rem;
}

.footer .contact-list li {
  display: flex;
  gap: 0.55rem;
}

.footer .contact-list li::before {
  content: none;
}

.enquiry-form .form-control {
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  font-size: 0.86rem;
}

.copyright {
  padding: 0.8rem;
  text-align: center;
  background: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (min-width: 992px) {
  .call-btn {
    display: inline-flex;
  }
}

@media (max-width: 1199.98px) {
  .service-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-item:nth-child(3) {
    border-right: 0;
  }

  .quick-item:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

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

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

@media (max-width: 991.98px) {
  .navbar {
    min-height: auto;
  }

  .hero {
    padding-bottom: 4.5rem;
  }

  .split-section {
    background: transparent;
  }

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

@media (max-width: 767.98px) {
  .topbar {
    font-size: 0.78rem;
  }

  .navbar-brand {
    max-width: 230px;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .hero-actions {
    position: static;
    margin-top: 1rem;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .quick-services {
    margin-top: 0;
  }

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

  .quick-item {
    min-height: 132px;
    border-top: 1px solid var(--line);
  }

  .quick-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .quick-item:nth-child(even) {
    border-right: 0;
  }

  .quick-item:nth-child(1),
  .quick-item:nth-child(2) {
    border-top: 0;
  }

  .contact-person {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 430px) {
  .hero .btn-lg {
    width: 100%;
  }

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

  .quick-item i,
  .service-card i {
    font-size: 2.25rem;
  }
}
