:root {
  --sts-blue: #0b3d91;
  --sts-blue-dark: #072d6b;
  --sts-yellow: #ffc107;
  --sts-yellow-dark: #e0a800;
  --sts-black: #111827;
  --sts-gray: #6b7280;
  --sts-light: #f3f4f6;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--sts-black);
  background: #fff;
}

.site-header .navbar {
  background: linear-gradient(90deg, var(--sts-blue-dark), var(--sts-blue));
  box-shadow: 0 8px 24px rgba(11, 61, 145, 0.18);
}

.site-header--branded .header-top {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.site-header--branded .header-nav.navbar {
  background: linear-gradient(90deg, var(--sts-blue-dark), var(--sts-blue));
  box-shadow: 0 8px 24px rgba(11, 61, 145, 0.15);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  overflow: visible;
}

.header-top-tagline {
  color: var(--sts-blue-dark);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.header-top-call {
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  text-decoration: none;
  max-width: 100%;
  overflow: visible;
}

.brand-block--footer {
  align-items: flex-start;
}

.site-header .navbar-brand.brand-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  height: auto;
  max-height: none;
  opacity: 1 !important;
  filter: none !important;
}

.brand-block__logo-wrap,
.header-logo,
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
  flex-shrink: 0;
  overflow: visible;
  height: auto;
  max-height: none;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.logo img,
.header-logo img,
.site-header .brand-block__logo {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  display: block;
  height: auto;
  max-height: 85px;
  width: auto;
  max-width: min(100%, 300px);
  object-fit: contain;
  background: transparent;
  flex-shrink: 0;
}

.logo-box {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.brand-block__logo--full {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  max-height: 72px;
  max-width: min(100%, 240px);
}

.brand-block__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-block__title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.brand-block__subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.68rem;
  margin-top: 0.15rem;
}

.header-nav .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  padding-left: 0.65rem;
  padding-right: 0.65rem;
}

.header-nav-actions .btn-warning {
  color: var(--sts-black);
}

@media (max-width: 991.98px) {
  .header-top-tagline {
    font-size: 0.8rem;
  }

  .logo img,
  .header-logo img,
  .site-header .brand-block__logo {
    max-height: 72px;
    max-width: min(100%, 250px);
  }

  .brand-block__logo--full {
    max-height: 64px;
    max-width: min(100%, 200px);
  }

  .brand-block__title {
    font-size: 0.9rem;
  }

  .brand-block__subtitle {
    font-size: 0.62rem;
  }
}

@media (max-width: 575.98px) {
  .header-top-tagline {
    font-size: 0.72rem;
  }

  .logo img,
  .header-logo img,
  .site-header .brand-block__logo {
    max-height: 58px;
    max-width: min(100%, 190px);
  }

  .brand-block__logo--full {
    max-height: 56px;
    max-width: min(100%, 180px);
  }
}

.navbar-brand .brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--sts-yellow);
  color: var(--sts-black);
  font-size: 1.25rem;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-brand small {
  font-size: 0.65rem;
  opacity: 0.85;
}

.nav-link.active,
.nav-link:hover {
  color: var(--sts-yellow) !important;
}

.hero-section {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(7, 45, 107, 0.92), rgba(11, 61, 145, 0.78)),
    var(--hero-bg, url("../image/12.jpg")) center/cover no-repeat;
  z-index: 0;
}

.hero-carousel .hero-slide {
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-carousel .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(7, 45, 107, 0.88), rgba(11, 61, 145, 0.72));
}

.hero-carousel .container {
  position: relative;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 193, 7, 0.15);
  color: var(--sts-yellow);
  border: 1px solid rgba(255, 193, 7, 0.35);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 1rem 0;
}

.hero-title span {
  color: var(--sts-yellow);
}

.section-padding {
  padding: 5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
}

.section-heading .eyebrow {
  color: var(--sts-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.service-card,
.review-card,
.blog-card,
.area-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.blog-card:hover,
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
}

.service-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(11, 61, 145, 0.08);
  color: var(--sts-blue);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.cta-band {
  background: linear-gradient(135deg, var(--sts-blue-dark), var(--sts-blue));
  color: #fff;
}

.cta-band .btn-warning {
  color: var(--sts-black);
  font-weight: 700;
}

.trust-strip {
  background: var(--sts-black);
  color: #fff;
}

.trust-item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.trust-item i {
  color: var(--sts-yellow);
  font-size: 1.5rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--sts-blue-dark), var(--sts-blue));
  color: #fff;
  padding: 5.5rem 0 3.5rem;
}

.page-hero h1 {
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.breadcrumb-nav {
  --bs-breadcrumb-divider: "›";
}

.breadcrumb-nav .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item.active {
  color: var(--sts-yellow);
}

.site-footer {
  background: var(--sts-black);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer h5,
.site-footer h6 {
  color: #fff;
}

.site-footer .footer-links a,
.site-footer .contact-info a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer .footer-links a:hover,
.site-footer .contact-info a:hover {
  color: var(--sts-yellow);
}

.form-card .contact-info a {
  color: var(--sts-black);
  text-decoration: none;
  font-weight: 600;
}

.form-card .contact-info a:hover {
  color: var(--sts-blue);
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--sts-yellow);
  color: var(--sts-black);
}

.contact-info li {
  margin-bottom: 0.75rem;
}

.contact-info i {
  color: var(--sts-yellow);
  margin-right: 0.5rem;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 56px;
  min-height: 56px;
  padding: 0 1rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  animation: pulse 2s infinite;
}

.float-btn--emergency {
  background: #dc2626;
}

.float-btn--whatsapp {
  background: #25d366;
  animation: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.review-stars {
  color: var(--sts-yellow);
}

.form-card,
.content-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  overflow: visible;
}

.places-address-field,
.places-autocomplete-wrap {
  position: relative;
  overflow: visible;
}

.places-suggestions-list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 10050;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.12);
  max-height: 280px;
  overflow-y: auto;
}

.places-suggestions-list.is-open {
  display: block;
}

.places-suggestion-item {
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  line-height: 1.4;
}

.places-suggestion-item:hover,
.places-suggestion-item.is-active {
  background: #f3f4f6;
}

.places-search-status {
  min-height: 1.25rem;
  font-size: 0.875rem;
  margin-top: 0.35rem;
}

.places-address-field .invalid-feedback {
  display: none;
}

.places-address-field .invalid-feedback.d-block {
  display: block;
}

.places-autocomplete-input.is-valid {
  border-color: #198754;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  padding-right: 2.25rem;
}

.hero-section .form-card {
  color: var(--sts-black);
}

.hero-section .form-card h3,
.hero-section .form-card .h4 {
  color: var(--sts-black);
}

.hero-section .form-card p,
.hero-section .form-card li {
  color: var(--sts-gray);
}

.hero-section .form-card .text-muted {
  color: var(--sts-gray) !important;
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 18px;
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

@media (max-width: 991px) {
  .float-btn span {
    display: none;
  }
}
