:root {
  --dark-navy: #06172B;
  --royal-blue: #123A63;
  --premium-gold: #D4A62A;
  --light-gold: #F4D98B;
  --white: #FFFFFF;
  --ink: #172033;
  --muted: #667085;
  --soft-bg: #F8F4E7;
  --border: rgba(6, 23, 43, 0.12);
  --heading-font: "Poppins", sans-serif;
  --body-font: "Nunito Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
  overflow-x: hidden;
}

p {
  line-height: 1.7;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
.navbar-brand span {
  font-family: var(--heading-font);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  font-weight: 800;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
}

.section-padding {
  padding: 96px 0;
}

.site-navbar {
  background: rgba(6, 23, 43, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 217, 139, 0.2);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--light-gold);
}

.navbar-brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.site-navbar .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  font-size: 0.98rem;
  padding: 10px 14px;
}

.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--premium-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

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

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border-color: rgba(244, 217, 139, 0.45);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.btn {
  border-radius: 6px;
  font-weight: 800;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-sm {
  padding: 9px 15px;
}

.btn-gold {
  background: var(--premium-gold);
  border-color: var(--premium-gold);
  color: var(--dark-navy);
}

.btn-gold:hover,
.btn-gold:focus {
  background: var(--light-gold);
  border-color: var(--light-gold);
  color: var(--dark-navy);
}

.btn-navy {
  background: var(--dark-navy);
  border-color: var(--dark-navy);
  color: var(--white);
}

.btn-navy:hover,
.btn-navy:focus {
  background: var(--royal-blue);
  border-color: var(--royal-blue);
  color: var(--white);
}

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

.btn-outline-navy:hover,
.btn-outline-navy:focus {
  background: var(--dark-navy);
  color: var(--white);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 142px 0 76px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 23, 43, 0.97), rgba(18, 58, 99, 0.92)),
    url("../img/img3.jpg") center/cover no-repeat;
  color: var(--white);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(to top, var(--dark-navy), transparent);
}

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

.hero-glow {
  position: absolute;
  top: 16%;
  right: 8%;
  width: min(420px, 50vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 166, 42, 0.3), transparent 66%);
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--premium-gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-lead,
.page-hero p {
  max-width: 680px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-service-slider {
  position: relative;
  border: 1px solid rgba(244, 217, 139, 0.32);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  background: var(--dark-navy);
}

.hero-service-slider::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(244, 217, 139, 0.32);
  border-radius: 6px;
}

.hero-service-slider .carousel-item {
  min-height: 560px;
}

.hero-service-slider .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 23, 43, 0.08), rgba(6, 23, 43, 0.82)),
    linear-gradient(90deg, rgba(6, 23, 43, 0.76), rgba(6, 23, 43, 0.1));
}

.hero-service-slider .carousel-item img {
  height: 560px;
  object-fit: cover;
}

.hero-slider-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 4;
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 23, 43, 0.72);
  border: 2px solid var(--premium-gold);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
  animation: badgePulse 3.8s ease-in-out infinite;
}

.hero-slider-badge img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.hero-slide-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 48px;
  z-index: 3;
  max-width: 440px;
  color: var(--white);
}

.hero-slide-caption span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(212, 166, 42, 0.92);
  color: var(--dark-navy);
  font-weight: 900;
}

.hero-slide-caption h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
}

.hero-slide-caption p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.hero-service-slider .carousel-indicators {
  right: auto;
  left: 34px;
  bottom: 18px;
  z-index: 4;
  justify-content: flex-start;
  margin: 0;
}

.hero-service-slider .carousel-indicators [data-bs-target] {
  width: 32px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.hero-service-slider .carousel-indicators .active {
  background-color: var(--premium-gold);
}

.hero-service-slider .carousel-control-prev,
.hero-service-slider .carousel-control-next {
  top: auto;
  bottom: 22px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.hero-service-slider .carousel-control-prev {
  left: auto;
  right: 84px;
}

.hero-service-slider .carousel-control-next {
  right: 34px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.contact-strip a {
  color: var(--white);
  font-weight: 900;
  word-break: break-word;
}

.contact-strip i {
  color: var(--light-gold);
}

.service-band {
  padding: 28px 0;
  background: var(--dark-navy);
}

.mini-service {
  height: 100%;
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(244, 217, 139, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.mini-service i {
  color: var(--premium-gold);
  font-size: 1.8rem;
}

.mini-service span {
  font-weight: 900;
}

.rounded-media {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(6, 23, 43, 0.16);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-list div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.feature-list i {
  color: var(--premium-gold);
  font-size: 1.2rem;
}

.navy-section {
  background: var(--dark-navy);
  color: var(--white);
}

.navy-section .section-heading h2 {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.service-card,
.value-card {
  height: 100%;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(244, 217, 139, 0.22);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--premium-gold);
  box-shadow: 0 20px 45px rgba(6, 23, 43, 0.16);
}

.service-card i,
.value-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--premium-gold);
  color: var(--dark-navy);
  font-size: 1.55rem;
}

.service-card h3,
.value-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
}

.service-card p,
.value-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.service-card.light,
.value-card {
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 16px 34px rgba(6, 23, 43, 0.08);
}

.service-card.light p,
.value-card p {
  color: var(--muted);
}

.testimonial-section {
  background: linear-gradient(180deg, var(--white), var(--soft-bg));
}

.testimonial-carousel {
  position: relative;
  padding: 0 58px 54px;
}

.testimonial-card {
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(6, 23, 43, 0.1);
}

.testimonial-card::before {
  content: "\F6B0";
  font-family: "bootstrap-icons";
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--dark-navy);
  color: var(--premium-gold);
  font-size: 1.5rem;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--premium-gold);
}

.testimonial-card p {
  flex: 1;
  color: var(--muted);
  font-weight: 700;
}

.testimonial-card h3 {
  margin: 8px 0 0;
  color: var(--dark-navy);
  font-size: 1.05rem;
}

.testimonial-carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(6, 23, 43, 0.25);
  opacity: 1;
}

.testimonial-carousel .carousel-indicators .active {
  background-color: var(--premium-gold);
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
  top: 42%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark-navy);
  opacity: 1;
}

.testimonial-carousel .carousel-control-prev {
  left: 0;
}

.testimonial-carousel .carousel-control-next {
  right: 0;
}

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

.gallery-preview img,
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(6, 23, 43, 0.14);
}

.gallery-preview img {
  height: 260px;
}

.gallery-grid {
  column-count: 4;
  column-gap: 18px;
}

.gallery-grid img {
  display: block;
  margin-bottom: 18px;
  break-inside: avoid;
  background: var(--soft-bg);
}

.cta-section {
  padding: 84px 0;
  background:
    linear-gradient(135deg, rgba(6, 23, 43, 0.96), rgba(18, 58, 99, 0.88)),
    url("../img/img10.jpg") center/cover no-repeat;
  color: var(--white);
}

.cta-section h2 {
  max-width: 900px;
  margin: 0 auto 28px;
}

.home-enquiry-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 23, 43, 0.94), rgba(18, 58, 99, 0.84)),
    url("../img/img3.jpg") center/cover fixed no-repeat;
  color: var(--white);
}

.home-enquiry-section h2 {
  color: var(--white);
}

.home-enquiry-section p {
  color: rgba(255, 255, 255, 0.82);
}

.enquiry-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.enquiry-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(244, 217, 139, 0.2);
  color: var(--white);
  font-weight: 900;
}

.enquiry-highlights i {
  color: var(--light-gold);
}

.enquiry-form-card {
  border-color: rgba(244, 217, 139, 0.24);
  background: rgba(255, 255, 255, 0.95);
}

.page-hero {
  padding: 158px 0 90px;
  background:
    linear-gradient(135deg, rgba(6, 23, 43, 0.97), rgba(18, 58, 99, 0.9)),
    url("../img/img3.jpg") center/cover no-repeat;
  color: var(--white);
}

.contact-panel,
.contact-form {
  height: 100%;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 38px rgba(6, 23, 43, 0.08);
}

.contact-panel {
  background: var(--dark-navy);
  color: var(--white);
}

.contact-panel img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 16px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-panel a {
  display: flex;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  word-break: break-word;
}

.contact-panel i {
  color: var(--light-gold);
}

.contact-form {
  background: var(--white);
}

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

.location-block {
  margin-top: 80px;
}

.map-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 45px rgba(6, 23, 43, 0.14);
  background: var(--white);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.form-control,
.form-select {
  border-radius: 6px;
  padding: 13px 14px;
  border-color: var(--border);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--premium-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 166, 42, 0.18);
}

.site-footer {
  padding: 58px 0 24px;
  background: var(--dark-navy);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  color: var(--light-gold);
  font-weight: 800;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--premium-gold);
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--white) !important;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.25rem;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a:hover,
.footer-links a:focus {
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--premium-gold);
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 217, 139, 0.18);
}

.footer-bottom p {
  margin: 0;
}

.floating-action {
  position: fixed;
  z-index: 1050;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  box-shadow: 0 12px 28px rgba(6, 23, 43, 0.28);
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.floating-action:hover,
.floating-action:focus {
  transform: translateY(-4px);
}

.floating-action i {
  font-size: 1.45rem;
}

.floating-whatsapp {
  left: 22px;
  bottom: 24px;
  background: #25D366;
  color: var(--white);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  color: var(--white);
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.36);
  animation: whatsappPulse 1.8s ease-out infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.86);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.floating-top {
  right: 22px;
  bottom: 24px;
  background: var(--premium-gold);
  color: var(--dark-navy);
  opacity: 0;
  visibility: hidden;
}

.floating-top.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991.98px) {
  .site-navbar .navbar-collapse {
    padding: 18px 0;
  }

  .site-navbar .nav-link {
    display: inline-block;
  }

  .hero-section {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-service-slider .carousel-item,
  .hero-service-slider .carousel-item img {
    height: 520px;
    min-height: 520px;
  }

  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.14;
  }

  h3 {
    font-size: 1.08rem;
  }

  .section-padding {
    padding: 62px 0;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-kicker {
    margin-bottom: 10px;
    font-size: 0.78rem;
  }

  .btn {
    min-height: 46px;
    padding: 11px 16px;
    font-size: 0.96rem;
  }

  .navbar-brand img {
    width: 58px;
    height: 58px;
  }

  .navbar-brand span {
    font-size: 1.08rem;
  }

  .site-navbar .nav-link {
    padding: 9px 0;
    font-size: 1rem;
  }

  .site-navbar .nav-link::after {
    left: 0;
    right: 0;
    bottom: 3px;
    transform-origin: left;
  }

  .hero-section,
  .page-hero {
    padding-top: 108px;
  }

  .hero-section {
    padding-bottom: 52px;
  }

  .page-hero {
    padding-bottom: 58px;
  }

  .hero-lead,
  .page-hero p {
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

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

  .hero-service-slider .carousel-item,
  .hero-service-slider .carousel-item img {
    height: 390px;
    min-height: 390px;
  }

  .hero-slide-caption {
    left: 22px;
    right: 22px;
    bottom: 64px;
  }

  .hero-slide-caption span {
    font-size: 0.78rem;
    padding: 7px 10px;
  }

  .hero-slide-caption h2 {
    font-size: 1.65rem;
    line-height: 1.12;
  }

  .hero-slide-caption p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-slider-badge {
    width: 70px;
    height: 70px;
    top: 22px;
    right: 22px;
  }

  .hero-slider-badge img {
    width: 62px;
    height: 62px;
  }

  .hero-service-slider .carousel-indicators {
    left: 22px;
  }

  .hero-service-slider .carousel-control-prev {
    right: 74px;
  }

  .hero-service-slider .carousel-control-next {
    right: 24px;
  }

  .service-band {
    padding: 18px 0;
  }

  .mini-service {
    min-height: 82px;
    padding: 14px;
    gap: 8px;
  }

  .mini-service i {
    font-size: 1.42rem;
  }

  .mini-service span {
    font-size: 0.94rem;
  }

  .service-card,
  .value-card,
  .testimonial-card,
  .contact-panel,
  .contact-form {
    padding: 22px;
  }

  .service-card i,
  .value-card i {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    font-size: 1.35rem;
  }

  .service-card h3,
  .value-card h3 {
    font-size: 1.05rem;
  }

  .service-card p,
  .value-card p,
  .testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .testimonial-carousel {
    padding: 0 0 54px;
  }

  .testimonial-carousel .carousel-control-prev,
  .testimonial-carousel .carousel-control-next {
    display: none;
  }

  .gallery-grid {
    column-count: 2;
    column-gap: 12px;
  }

  .gallery-grid img {
    margin-bottom: 12px;
  }

  .gallery-preview img {
    height: 210px;
  }

  .cta-section {
    padding: 64px 0;
  }

  .home-enquiry-section {
    background-attachment: scroll;
  }

  .location-block {
    margin-top: 58px;
  }

  .map-frame iframe {
    height: 330px;
  }

  .site-footer {
    padding: 46px 0 22px;
  }

  .footer-brand img {
    width: 64px;
    height: 64px;
  }

  .footer-brand {
    font-size: 1.12rem;
  }

  .site-footer h3 {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer a {
    display: inline-block;
  }

  .floating-action {
    width: 48px;
    height: 48px;
  }

  .floating-action i {
    font-size: 1.25rem;
  }

  .floating-whatsapp {
    left: 16px;
    bottom: 18px;
  }

  .floating-top {
    right: 16px;
    bottom: 18px;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  body {
    font-size: 0.96rem;
  }

  .hero-section,
  .page-hero {
    padding-top: 100px;
  }

  .hero-service-slider::before {
    inset: 10px;
  }

  .contact-strip {
    gap: 10px;
    flex-direction: column;
  }

  .gallery-grid {
    column-count: 1;
  }

  .home-gallery {
    column-count: 2;
  }

  .testimonial-card {
    min-height: 260px;
  }

  .contact-panel img {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 420px) {
  .navbar-brand span {
    font-size: 1rem;
  }

  .navbar-brand img {
    width: 52px;
    height: 52px;
  }

  .mini-service {
    min-height: 96px;
  }

  .hero-service-slider .carousel-item,
  .hero-service-slider .carousel-item img {
    height: 360px;
    min-height: 360px;
  }

  .hero-slide-caption {
    bottom: 66px;
  }

  .hero-slide-caption h2 {
    font-size: 1.42rem;
  }

  .hero-service-slider .carousel-control-prev,
  .hero-service-slider .carousel-control-next {
    bottom: 18px;
  }

  .hero-service-slider .carousel-indicators [data-bs-target],
  .testimonial-carousel .carousel-indicators [data-bs-target] {
    width: 24px;
  }

  .map-frame iframe {
    height: 290px;
  }
}
