:root {
  --navy: #000038;
  --orange: #ff6400;
  --white: #ffffff;
  --ink: #151531;
  --soft: #f6f7fb;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: var(--soft);
}

.nav-main,
.site-footer {
  background: var(--navy);
}

.navbar .nav-link {
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 12px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  background: rgba(255, 100, 0, 0.18);
  color: #fff;
}

.site-footer,
.site-footer a {
  color: var(--white);
}

.hero {
  background: var(--navy);
  color: var(--white);
  padding: 90px 0;
}

.location-hero {
  min-height: 360px;
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.location-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 56, 0.62);
}

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

.section-title {
  color: var(--navy);
  font-weight: 700;
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card,
.glass-card {
  border: 1px solid #e8ebf4;
  border-radius: 14px;
}

.glass-card {
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(0, 0, 56, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 56, 0.12);
}

.btn-custom {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}

.btn-custom:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
  transition: 0.3s ease;
}

.badge-orange {
  background: var(--orange);
  color: #fff;
}

.service-thumb,
.location-thumb {
  height: 180px;
  object-fit: cover;
  width: 100%;
  border-radius: 12px 12px 0 0;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

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

.footer-links a {
  text-decoration: none;
  color: #d8ddff;
}

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

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #25D366;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  z-index: 1080;
}

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