/* =========================================================
   GRAVITY CARGO PACKERS AND MOVERS — GLOBAL STYLESHEET
   Design tokens derived from brand logo (red + navy)
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --red: #E6222A;
  --red-dark: #C21820;
  --red-tint: #FCEBEC;
  --navy: #164E7C;
  --navy-dark: #0F3A5C;
  --navy-deep: #0A2540;
  --navy-tint: #EAF1F7;
  --ink: #182430;
  --ink-soft: #57636F;
  --ink-faint: #87929C;
  --line: #E4E9EE;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FA;
  --bg-soft-2: #F1F4F7;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 3px rgba(15, 38, 60, .06);
  --shadow-md: 0 8px 24px rgba(15, 38, 60, .10);
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: var(--navy-deep);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

p {
  color: var(--ink-soft);
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color .18s ease;
}

a:hover {
  color: var(--red);
}

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

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.container-xl {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Section rhythm ---------- */
.section {
  padding: 72px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-navy {
  background: var(--navy-deep);
  color: #fff;
}

.section-navy h2,
.section-navy h3 {
  color: #fff;
}

.section-navy p {
  color: #C7D3DE;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: .86rem;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  margin-bottom: 14px;
}

.section-lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 680px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all .18s ease;
  cursor: pointer;
  line-height: 1;
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--navy-dark);
  color: #fff;
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--navy-deep);
}

.btn-sm {
  padding: 9px 18px;
  font-size: .85rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.top-strip {
  background: var(--navy-deep);
  color: #cfdbe6;
  font-size: .82rem;
}

.top-strip .container-xl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
}

.top-strip a {
  color: #e7edf3;
}

.top-strip a:hover {
  color: #fff;
}

.top-strip .ts-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 22px;
}

.top-strip i {
  color: var(--red);
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .navbar {
  padding: 10px 0;
}

.site-header .container-xl {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.navbar-brand {
  flex-shrink: 0;
}

.navbar-collapse {
  min-width: 0;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-deep) !important;
  padding: 10px 12px !important;
  font-size: .9rem;
  white-space: nowrap;
}

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

.navbar .dropdown {
  position: relative;
}

.navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 8px;
  margin-top: 12px;
  left: 0;
  right: auto;
  overflow: visible;
  overscroll-behavior: contain;
}

.dropdown-item {
  font-weight: 500;
  font-size: .92rem;
  border-radius: 6px;
  padding: 9px 12px;
}

.dropdown-item:hover {
  background: var(--red-tint);
  color: var(--red);
}

.mega-dropdown {
  width: min(520px, calc(100vw - 40px));
  padding: 12px;
  overflow: visible;
}

.navbar .dropdown:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

.mega-col-title {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.mega-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 8px;
}

.mega-link-grid .dropdown-item {
  white-space: normal;
  line-height: 1.3;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-bar {
  background: var(--navy-tint);
  padding: 14px 0;
  font-size: .86rem;
}

.breadcrumb-bar a {
  color: var(--navy);
  font-weight: 600;
}

.breadcrumb-bar span {
  color: var(--ink-faint);
}

/* ---------- Hero (home) ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1A5C8F 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 56px 0 0;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(230, 34, 42, .18), transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.hero .hero-lede {
  color: #D5E1EC;
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 26px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E4ECF3;
  font-size: .92rem;
  font-weight: 500;
}

.hero-points i {
  color: var(--red);
}

.home-hero-img {
  width: 100%;
  display: block;
  height: auto;
  margin-top: 28px;
  border-radius: 12px;
  aspect-ratio: 16 / 5;
}

/* Compact enquiry form (hero) */
.enquiry-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
  color: var(--ink);
  position: relative;
  z-index: 3;
}

.enquiry-card h2,
.enquiry-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.enquiry-card .ec-sub {
  color: var(--ink-faint);
  font-size: .82rem;
  margin-bottom: 16px;
}

.service-pick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.service-pick label {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 10px 4px;
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  display: block;
  transition: .15s;
}

.service-pick input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-pick input:checked+label {
  border-color: var(--red);
  background: var(--red-tint);
  color: var(--red);
}

.service-pick i {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.enquiry-card .form-control {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .9rem;
  margin-bottom: 10px;
}

.enquiry-card .form-control:focus {
  border-color: var(--navy);
  box-shadow: none;
}

.enquiry-card .form-note {
  font-size: .72rem;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 10px;
}

.gc-captcha {
  display: grid;
  grid-template-columns: auto minmax(86px, 120px);
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  margin: 2px 0 10px;
}

.gc-captcha-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0;
}

.gc-captcha .form-control {
  margin: 0 !important;
  padding: 8px 10px;
  text-align: center;
}

.hero-bottom-wave {
  position: relative;
  height: 46px;
  margin-top: 40px;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy));
  padding: 64px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(230, 34, 42, .20), transparent 40%);
  pointer-events: none;
}

.page-hero .container-xl {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: #D5E1EC;
  max-width: 640px;
  font-size: 1.02rem;
}

.page-hero .ph-crumb {
  color: #AFC2D3;
  font-size: .85rem;
  margin-bottom: 14px;
}

.page-hero .ph-crumb a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.page-hero .ph-crumb a:hover {
  color: #fff;
  text-decoration-thickness: 2px;
}

/* ---------- Stats strip ---------- */
.stat-strip {
  background: var(--navy-deep);
  color: #fff;
  padding: 30px 0;
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-item .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
}

.stat-item .lbl {
  color: #B9C9D8;
  font-size: .85rem;
}

/* ---------- Icon list rows ---------- */
.feature-row {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row .fr-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy-tint);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-row h2,
.feature-row h3 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.feature-row p {
  margin: 0;
  font-size: .92rem;
}

/* ---------- Service cards (used sparingly) ---------- */
.svc-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 0 24px;
  height: 100%;
  transition: .2s ease;
  background: #fff;
  overflow: hidden;
}

.svc-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.svc-card .svc-img-link {
  display: block;
  overflow: hidden;
}

.svc-card .svc-img {
  width: 100%;
  aspect-ratio: 16 / 12;
  display: block;
  transition: transform .25s ease;
}

.svc-card:hover .svc-img {
  transform: scale(1.04);
}

.svc-card .svc-body {
  padding: 22px 24px 0;
}

.svc-card h2,
.svc-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.svc-card p {
  font-size: .9rem;
  margin-bottom: 14px;
}

.svc-card a {
  font-weight: 700;
  font-size: .87rem;
  color: var(--navy);
}

.svc-card .svc-title-link {
  color: var(--navy-deep);
  font-size: inherit;
  text-decoration: none;
}

.svc-card .svc-title-link:hover {
  color: var(--red);
}

/* ---------- Process / timeline ---------- */
.process-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  counter-reset: step;
}

.process-step {
  flex: 1 1 220px;
  position: relative;
  padding: 0 18px 18px 0;
}

.process-step .ps-num {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--red);
  font-size: .82rem;
  border: 2px solid var(--red);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: .88rem;
}

.process-step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 17px;
  right: 0;
  width: calc(100% - 40px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}

/* ---------- Split section ---------- */
.split-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.check-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .95rem;
  color: var(--ink);
  align-items: flex-start;
}

.check-list i {
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--red) 0%, #B71822 100%);
  border-radius: 18px;
  padding: 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 8px;
}

.cta-band p {
  color: #FBE2E3;
  margin-bottom: 0;
}

/* ---------- Location / route chip lists ---------- */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 10px;
  align-items: stretch;
}

.chip-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 100%;
  text-align: center;
  line-height: 1.25;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
}

.chip-grid a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.coverage-chip-grid {
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.home-location-grid {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
}

.route-pill {
  display: block;
  padding: 10px 14px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .07);
  color: #E4ECF3;
  font-weight: 700;
  font-size: .9rem;
  border: 1px solid rgba(255, 255, 255, .05);
}

.route-pill:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.loc-list-col a {
  display: block;
  padding: 8px 0;
  font-size: .92rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
  font-weight: 500;
}

.loc-list-col a:hover {
  color: var(--red);
}

/* ---------- Blog cards ---------- */
.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  background: #fff;
  transition: .2s;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card-img {
  display: block;
  overflow: hidden;
  background: var(--navy);
}

.blog-card-img img {
  transition: transform .25s ease;
}

.blog-card-img:hover img {
  transform: scale(1.035);
}

.blog-card img {
  height: 200px;
  width: 100%;
}

.blog-card .bc-body {
  padding: 20px;
}

.blog-card .bc-date {
  color: var(--ink-faint);
  font-size: .78rem;
  margin-bottom: 8px;
}

.blog-card h2,
.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card h2 a,
.blog-card h3 a {
  color: var(--navy-deep);
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
  color: var(--red);
}

.blog-card p {
  font-size: .88rem;
}

.blog-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
}

.blog-share span {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy-deep);
  margin-right: 4px;
}

.blog-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  padding: 8px 12px;
  font-size: .84rem;
  font-weight: 700;
}

.blog-share-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.blog-share-status {
  color: var(--red);
  font-weight: 700;
  min-height: 18px;
}

/* ---------- Reviews ---------- */
.review-card,
.review-form-card,
.review-empty {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: #F5A400;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-card p {
  font-size: .92rem;
  margin-bottom: 16px;
  color: var(--ink-soft);
}

.review-card strong {
  display: block;
  color: var(--navy-deep);
  font-family: var(--font-head);
}

.review-card span {
  display: block;
  color: var(--ink-faint);
  font-size: .82rem;
  margin-top: 2px;
}

.review-form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.review-form-card>p {
  font-size: .88rem;
  margin-bottom: 16px;
}

.review-form-card .form-control {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .9rem;
}

@media (min-width: 992px) {
  .review-form-sidebar {
    position: sticky;
    top: 96px;
    align-self: flex-start;
  }
}

/* ---------- FAQ accordion ---------- */
.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: .98rem;
  padding: 16px 20px;
}

.accordion-button:not(.collapsed) {
  background: var(--red-tint);
  color: var(--red-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: .92rem;
  color: var(--ink-soft);
  padding: 6px 20px 18px;
}

/* ---------- Gallery ---------- */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 100%;
}

.gallery-item img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  transition: .3s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 37, 64, .75), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: .25s;
}

.gallery-item:hover .gi-overlay {
  opacity: 1;
}

.gallery-item .gi-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
}

#lightboxModal .modal-content {
  background: transparent;
  border: none;
}

#lightboxModal img {
  width: 100%;
  border-radius: 10px;
}

#lightboxModal .btn-close {
  filter: invert(1);
  opacity: 1;
  background-color: rgba(0, 0, 0, .4);
  border-radius: 50%;
  padding: 10px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #B9C9D8;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  box-shadow: inset 0 12px 0 rgba(255, 255, 255, .025);
}

.site-footer h3 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 18px;
}

.site-footer a {
  color: #B9C9D8;
  font-size: .88rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-logo {
  height: 46px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 40px;
  padding: 18px 0;
  font-size: .82rem;
  color: #8FA3B6;
}

.footer-credit {
  color: #D5E1EC;
}

.footer-credit a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(230, 34, 42, .7);
  text-underline-offset: 4px;
}

.footer-credit a:hover {
  color: var(--red);
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: #fff;
}

.social-icons a:hover {
  background: var(--red);
}

/* ---------- Floating contact buttons ---------- */
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc-btn {
  min-width: 132px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .88rem;
  box-shadow: 0 12px 28px rgba(10, 37, 64, .20);
}

.fc-btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

.fc-btn i {
  font-size: 1.1rem;
}

.fc-call {
  background: var(--red);
}

.fc-whatsapp {
  background: #1FAF5A;
}

/* ---------- Misc ---------- */
.section-tag {
  display: inline-block;
  background: var(--navy-tint);
  color: var(--navy);
  font-weight: 700;
  font-size: .78rem;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.divider-red {
  width: 56px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 14px 0 20px;
}

.table-cost-factors td,
.table-cost-factors th {
  padding: 12px 14px;
  font-size: .9rem;
}

.table-cost-factors th {
  background: var(--navy-tint);
  color: var(--navy-deep);
  font-family: var(--font-head);
}

[data-aos] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-aos].aos-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .site-header .container-xl {
    align-items: flex-start;
  }

  .navbar-toggler {
    margin-top: 6px;
    margin-left: auto;
  }

  .navbar-collapse {
    width: 100%;
    max-height: calc(100vh - 132px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .navbar-nav {
    align-items: stretch;
    padding-top: 10px;
  }

  .navbar-nav .nav-link {
    padding: 8px 0 !important;
  }

  .navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    max-height: none;
    margin-top: 0;
    box-shadow: none;
    border: 1px solid var(--line);
    overflow: visible;
  }

  .mega-dropdown {
    width: 100%;
  }

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

  .header-cta {
    padding: 12px 0 4px;
  }
}

@media (max-width: 991.98px) {
  .service-pick {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 30px;
  }

  .home-hero-img {
    margin-top: 22px;
  }

  .process-step:after {
    display: none;
  }

  .top-strip {
    font-size: .72rem;
  }

  .top-strip .container-xl {
    gap: 8px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .top-strip .ts-item {
    margin-right: 10px;
  }

  .brand-logo {
    height: 46px;
  }
}

@media (max-width: 575.98px) {

  .section {
    padding: 48px 0;
  }
    .home-hero-img {
  aspect-ratio: 16 / 7;
  }
  .cta-band {
    padding: 30px 22px;
  }

  .enquiry-card {
    padding: 20px;
  }

  .chip-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .chip-grid a {
    min-height: 40px;
    padding: 9px 10px;
    font-size: .8rem;
  }

  .home-location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: 430px;
    overflow-y: auto;
    padding: 12px;
    margin: 0;
    border-radius: 10px;
    overscroll-behavior: contain;
  }

  .home-location-grid a {
    width: 100%;
    min-height: 38px;
    padding: 8px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .76rem;
    line-height: 1.25;
  }

  .mega-link-grid {
    grid-template-columns: 1fr;
  }

  .floating-contact {
    right: 10px;
    bottom: 16px;
  }

  .fc-btn {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
  }

  .fc-btn span {
    display: none;
  }

  .gc-captcha {
    grid-template-columns: 1fr;
  }

  .gc-captcha .form-control {
    text-align: left;
  }
}
