/* ========================================
   SHARED BASE STYLES - Customer Solution 24x7
   ======================================== */

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

:root {
  --primary: #152952;
  --primary-dark: #0c1a36;
  --primary-light: #2a6bbf;
  --accent: #e0edf8;
  --accent-dark: #c5dcf0;
  --accent-light: #ffffff;
  --success: #2E7D32;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --light-gray: #F0F4FF;
  --mid-gray: #E0E8F5;
  --text-dark: #0D1B2A;
  --text-mid: #334E68;
  --text-light: #627D98;
  --gradient-primary: linear-gradient(135deg, #152952 0%, #0c1a36 100%);
  --gradient-accent: linear-gradient(135deg, #152952 0%, #0c1a36 100%);
  --gradient-hero: #ffffff;
  --shadow-sm: 0 2px 8px rgba(21, 41, 82, 0.08);
  --shadow-md: 0 8px 32px rgba(21, 101, 192, 0.12);
  --shadow-lg: 0 16px 48px rgba(21, 101, 192, 0.18);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: #21446E;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #21446E;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: #3B82F6;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #2563EB;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.55);
}

.btn-secondary {
  background: transparent;
  color: #3B82F6;
  border-color: #3B82F6;
}

.btn-secondary:hover {
  background: #3B82F6;
  color: #ffffff;
  border-color: #3B82F6;
}

.btn-outline {
  background: transparent;
  color: #3B82F6;
  border-color: #3B82F6;
}

.btn-outline:hover {
  background: #3B82F6;
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: #3B82F6;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ========================================
   STICKY NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  font-weight: 800;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  line-height: 1.2;
  transition: color 0.3s;
}

.logo-text span {
  color: var(--primary-light);
}

.navbar.scrolled .logo-text {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--text-mid);
}

.nav-link:hover {
  color: var(--primary);
  background: var(--light-gray);
}

.navbar.scrolled .nav-link:hover {
  color: var(--primary);
  background: var(--light-gray);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  padding: 8px;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition);
}

.nav-dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--primary);
}

.nav-dropdown-menu a span.menu-icon {
  font-size: 1.1rem;
}

.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #3B82F6;
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.nav-call-btn:hover {
  background: #2563EB;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px 30px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border-bottom: 1px solid var(--mid-gray);
}

.mobile-menu a:hover {
  background: var(--light-gray);
  color: var(--primary);
}

.mobile-menu .mobile-submenu a {
  padding-left: 32px;
  font-size: 0.9rem;
  border-bottom: none;
}

.mobile-call {
  margin-top: 16px;
  display: block;
  text-align: center;
  background: #3B82F6;
  color: var(--white) !important;
  border-radius: var(--radius-full);
  padding: 14px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border-bottom: none !important;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.wa-tooltip {
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7);
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #0A1628;
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 24px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  cursor: pointer;
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #4a9eed;
  border-radius: 2px;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(224, 237, 248, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, #152952 0%, #0c1a36 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   SECTION SPACING
   ======================================== */
.section {
  padding: 90px 24px;
}

.section-sm {
  padding: 60px 24px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  color: var(--primary-dark);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-call-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 60px 20px;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 22px;
    font-size: 0.875rem;
  }

  .btn-lg {
    padding: 14px 28px;
  }
}

/* ========================================
   MODERN HERO SYSTEM (Shared)
   ======================================== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float linear infinite;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(21, 41, 82, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(21, 41, 82, 0.1);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse-green 1.5s infinite;
  display: inline-block;
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
  }
}

.hero-heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.hero-heading span {
  color: #3B82F6;
}

.text-gradient {
  color: #3B82F6;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-badges img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
  transition: transform 0.3s ease;
}

.hero-badges img:hover {
  transform: translateY(-2px);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Swap the physical order: Call Now becomes first, Book Service becomes second */
.hero-cta>a:first-child {
  order: 2;
}

.hero-cta>a:last-child {
  order: 1;
}

/* Swap the designs for Mobile & Tablet */
/* Book Service (was primary) becomes outlined (secondary style) */
.hero-cta .btn-primary {
  background: transparent;
  border-color: #3B82F6;
  color: #3B82F6;
  box-shadow: none;
}

.hero-cta .btn-primary:hover {
  background: #3B82F6;
  color: var(--white);
}

/* Call Now (was secondary) becomes solid (primary style) */
.hero-cta .btn-secondary {
  background: #3B82F6;
  border-color: #3B82F6;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

.hero-cta .btn-secondary:hover {
  background: #2563EB;
  border-color: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.55);
}

/* Desktop Only CTA tweaks */
@media (min-width: 1025px) {
  .hero-cta .hide-on-desktop {
    display: none !important;
  }

  .hero-cta .btn-secondary {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .hero-cta .mobile-text {
    display: none;
  }
}

/* Mobile/Tablet CTA tweaks */
@media (max-width: 1024px) {
  .hero-cta .desktop-text {
    display: none;
  }
}

.hero-trust {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: 24px;
  width: 100%;
  gap: 0;
  --circle-size: 85px;
  --num-size: 1.1rem;
  --label-size: 0.75rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: var(--circle-size);
  flex-shrink: 0;
}

.trust-circle {
  width: var(--circle-size);
  height: var(--circle-size);
  border: 2px solid #21446E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.trust-circle:hover {
  transform: scale(1.05);
  border-color: #3B82F6;
  background-color: rgba(59, 130, 246, 0.03);
}

.trust-num {
  font-size: var(--num-size);
  font-weight: 800;
  color: #21446E;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
}

.trust-circle:hover .trust-num {
  color: #3B82F6;
}

.trust-label {
  font-size: var(--label-size);
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.3;
  min-height: 32px;
}

@media (max-width: 768px) {
  .hero-trust { --circle-size: 68px; --num-size: 0.9rem; --label-size: 0.68rem; }
}

@media (max-width: 480px) {
  .hero-trust { --circle-size: 58px; --num-size: 0.78rem; --label-size: 0.62rem; }
}

@media (max-width: 360px) {
  .hero-trust { --circle-size: 50px; --num-size: 0.68rem; --label-size: 0.58rem; }
}

/* Hero Visual & Cards */
.hero-visual {
  position: relative;
}

.hero-card-float {
  position: relative;
}

/* Service specific cards */
.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.sv-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.sv-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.sv-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
}

.sv-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}

.hero-rating-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.rating-stars {
  font-size: 1rem;
  margin-bottom: 8px;
}

.rating-text {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 8px;
}

.rating-author {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}

.hero-badge-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.badge-icon {
  font-size: 1.8rem;
}

.badge-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.badge-sub {
  font-size: 0.78rem;
  color: var(--text-mid);
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.hero-form-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #21446E;
  text-align: center;
}

.hero-booking-form .form-group {
  margin-bottom: 12px;
}

.hero-booking-form input,
.hero-booking-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--off-white);
}

.hero-booking-form input:focus,
.hero-booking-form select:focus {
  border-color: var(--primary);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Hero Breadcrumb (Overlay style) */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}

.hero-breadcrumb a:hover {
  color: var(--primary-light);
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 120px 24px 60px;
  }

  .hero-sub {
    margin: 0 0 24px;
  }

  .hero-badges {
    justify-content: flex-start;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-trust {
    justify-content: space-between;
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .hero-breadcrumb {
    justify-content: flex-start;
  }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s forwards;
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideInRight 0.8s 0.4s forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

/* Mobile Booking Modal */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-content {
  background: var(--white);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
  padding: 24px;
}

.booking-modal-overlay.active .booking-modal-content {
  transform: translateY(0);
}

.booking-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 10;
}


/* ===== GLOBAL SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #21446E;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--off-white);
  padding: 60px 24px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 6rem;
  color: rgba(21, 101, 192, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card.featured {
  background: var(--gradient-primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.featured .reviewer-name,
.testimonial-card.featured p {
  color: var(--white);
}

.testimonial-card.featured .reviewer-role {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card.featured::before {
  color: rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.reviewer-name-outer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card.featured .avatar {
  background: rgba(255, 255, 255, 0.25);
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

.review-stars {
  margin-left: auto;
  font-size: 0.85rem;
}

.testimonial-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.review-tag {
  display: inline-block;
  background: var(--light-gray);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.testimonial-card.featured .review-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* ===== MOBILE INTRO SECTION (Shared across all pages) ===== */
.mobile-only-intro {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only-intro {
    display: block;
    padding: 70px 0 20px;
    background: #fff;
  }

  .mobile-intro-slider-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 24px;
    overflow: hidden;
    background: #f8f9fa;
  }
  .mobile-intro-slider {
    position: relative;
    width: 100%;
  }
  .mobile-intro-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
  }
  .mobile-intro-slider .slide:first-child {
    position: relative;
  }
  .mobile-intro-slider .slide.active {
    opacity: 1;
    z-index: 1;
  }
  .mobile-intro-banner {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
  }

  .slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
  }

  .slider-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: 0.3s;
  }

  .slider-dots .dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
  }

  .mobile-intro-content {
    padding: 0 15px;
    text-align: center;
  }

  .mobile-intro-text {
    font-size: 0.85rem;
    color: #e84118;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .mobile-intro-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: #21446E;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .mobile-intro-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }

  .mobile-intro-trust .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .mobile-intro-trust .trust-circle {
    width: 15vw;
    height: 15vw;
    max-width: 60px;
    max-height: 60px;
    border: 2px solid #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6fa;
  }

  .testimonials-section {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonials-section .text-center {
    padding: 0 24px;
  }

  .testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px 24px 30px 24px;
    margin-top: 30px;
  }
  
  .testimonials-grid .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  
  .testimonial-card {
    flex: 0 0 85vw;
  }
  
  .testimonial-card.featured {
    transform: none;
  }

  .mobile-intro-trust .trust-num {
    color: #0f172a;
    font-size: clamp(0.7rem, 2.5vw, 1rem);
    font-weight: 700;
  }

  .mobile-intro-trust .trust-label {
    color: #0f172a;
    font-size: clamp(0.55rem, 2vw, 0.7rem);
    line-height: 1.2;
    text-align: center;
    font-weight: 600;
    word-break: break-word;
    hyphens: auto;
  }

  .mobile-intro-desc {
    font-size: 0.9rem;
    color: #4a6583;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  
  .mobile-intro-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
  }
  .mobile-intro-badges img {
    height: 40px;
    width: auto;
    object-fit: contain;
  }
  
  .mobile-intro-cta {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-bottom: 8px;
  }
  .mobile-intro-cta .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 12px 0;
    justify-content: center;
    border-radius: var(--radius-full, 9999px);
  }
  
  /* Hide the desktop hero section on mobile */
  .hero {
    display: none !important;
  }
}
/* ========================================
   SERVICE AREAS
   ======================================== */

.service-areas-section {
  background: var(--off-white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.area-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--mid-gray);
}

.area-card-head .area-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--light-gray);
  color: var(--primary);
  font-size: 1.05rem;
}

.area-card-head h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.area-card-head .area-count {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 2px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.area-list li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--light-gray);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  white-space: nowrap;
}

.areas-note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.areas-note a {
  color: var(--primary-light);
  font-weight: 600;
  text-decoration: none;
}

.areas-note a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .area-card {
    padding: 22px 18px;
  }

  .area-list li {
    font-size: 0.82rem;
    padding: 5px 12px;
  }
}

/* ========================================
   DISCLAIMER NOTICE (in-page + footer)
   ======================================== */

.disclaimer-notice {
  background: var(--light-gray);
  border-left: 4px solid var(--primary-light);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 0 auto;
  max-width: 960px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.disclaimer-notice .disc-icon {
  flex: 0 0 auto;
  color: var(--primary-light);
  font-size: 1.05rem;
  line-height: 1.5;
}

.disclaimer-notice p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

.disclaimer-notice a {
  color: var(--primary-light);
  font-weight: 600;
  text-decoration: none;
}

.disclaimer-notice a:hover {
  text-decoration: underline;
}

.disclaimer-band {
  padding: 40px 0;
  background: var(--white);
}

.footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  max-width: 900px;
  margin: 0 auto 18px;
  text-align: center;
}

.footer-disclaimer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .disclaimer-notice {
    padding: 16px 16px;
    gap: 10px;
  }

  .disclaimer-notice p {
    font-size: 0.82rem;
  }
}

/* ========================================
   LEGAL / POLICY PAGES
   ======================================== */

.legal-section {
  padding: 64px 0 80px;
  background: var(--white);
}

.legal-body {
  max-width: 840px;
  margin: 0 auto;
}

.legal-updated {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--light-gray);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  margin-bottom: 28px;
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 14px;
}

.legal-body h3 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 28px 0 10px;
}

.legal-body h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-mid);
  margin: 22px 0 8px;
}

.legal-body p {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.legal-body ul,
.legal-body ol {
  margin: 0 0 20px 22px;
}

.legal-body li {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 10px;
}

.legal-body a {
  color: var(--primary-light);
  text-decoration: none;
  word-break: break-word;
}

.legal-body a:hover {
  text-decoration: underline;
}

.legal-body strong {
  color: var(--text-dark);
  font-weight: 600;
}

.legal-callout {
  background: var(--light-gray);
  border-left: 4px solid var(--primary-light);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 28px 0;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-contact-box {
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin-top: 32px;
  background: var(--off-white);
}

.legal-contact-box p {
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .legal-section {
    padding: 40px 0 56px;
  }

  .legal-body h2 {
    font-size: 1.25rem;
    margin: 30px 0 12px;
  }

  .legal-body p,
  .legal-body li {
    font-size: 0.92rem;
  }
}

/* ========================================
   FOOTER — LEGAL LINK ROW
   ======================================== */

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 20px;
}

.footer-legal-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-legal-links span {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
}

.footer-udyam {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .footer-legal-links {
    gap: 8px 16px;
  }

  .footer-legal-links span {
    display: none;
  }

  .footer-disclaimer {
    text-align: left;
    font-size: 0.76rem;
  }
}

/* ========================================
   LEGAL PAGE HEADER
   ======================================== */

.legal-hero {
  background: var(--gradient-primary);
  padding: 130px 0 56px;
  color: var(--white);
}

.legal-hero .hero-breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.legal-hero .hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.legal-hero .hero-breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

.legal-hero .hero-breadcrumb span {
  margin: 0 6px;
}

.legal-hero h1 {
  font-family: var(--font-heading);
  /* Overrides the global heading colour — this header sits on a dark ground. */
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.legal-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .legal-hero {
    padding: 100px 0 40px;
  }
}

/* Honeypot — must stay visually hidden but focusable-free for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Inline form submission status */
.form-status {
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  line-height: 1.55;
  font-weight: 500;
}

.form-status-error {
  background: #fdecec;
  color: #9b1c1c;
  border: 1px solid #f5c2c2;
}

.form-status-ok {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #bfe0c2;
}

/* ========================================
   NAVBAR ON DARK PAGE HEADERS (legal pages)
   The transparent navbar is designed for the white hero; on the dark legal
   header its dark links disappear, so keep it solid from the top.
   ======================================== */

.navbar.navbar-solid {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-solid .logo-text {
  color: var(--primary);
}

.navbar.navbar-solid .nav-link {
  color: var(--text-mid);
}

.navbar.navbar-solid .nav-link:hover {
  color: var(--primary);
  background: var(--light-gray);
}

.navbar.navbar-solid .hamburger span {
  background: var(--text-dark);
}

/* Invalid field highlight — shared by every booking form on the site.
   Previously this only existed in contact/style.css, so hero forms showed no
   field-level feedback. */
.hero-booking-form input.error,
.hero-booking-form select.error,
.hero-booking-form textarea.error,
.booking-form input.error,
.booking-form select.error,
.booking-form textarea.error,
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border: 1.5px solid #d64545 !important;
  background: #fdf5f5;
}

.hero-booking-form input.error:focus,
.hero-booking-form select.error:focus,
.booking-form input.error:focus,
.booking-form select.error:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.15);
}

/* ========================================
   MSME REGISTRATION CREDENTIAL
   The one badge on the site backed by a verifiable government registration,
   so it is shown with the registration number rather than as a bare logo.
   ======================================== */

.msme-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 14px;
  margin-bottom: 28px;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}

.msme-badge img {
  height: 42px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.msme-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  min-width: 0;
  /* The mobile intro block is centre-aligned; keep the badge text left-aligned
     so it reads the same way at every breakpoint. */
  text-align: left;
}

.msme-badge-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.msme-badge-num {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
  word-break: break-all;
}

/* Centred variant for the mobile intro block */
.mobile-intro-content .msme-badge {
  display: flex;
  margin: 0 auto 20px;
  width: fit-content;
}

@media (max-width: 640px) {
  .msme-badge {
    gap: 11px;
    padding: 9px 14px 9px 11px;
    margin-bottom: 20px;
  }

  .msme-badge img {
    height: 34px;
  }

  .msme-badge-title {
    font-size: 0.82rem;
  }

  .msme-badge-num {
    font-size: 0.72rem;
  }
}

/* About and Contact have no mobile hero (the desktop .hero is display:none
   below 900px and those two pages carry no .mobile-only-intro), so the MSME
   credential gets a mobile-only placement just below the header. */
.msme-band {
  display: none;
}

@media (max-width: 900px) {
  .msme-band {
    display: block;
    /* First visible block on these pages, so it must clear the fixed 70px navbar. */
    padding: 92px 20px 6px;
    text-align: center;
  }

  .msme-band .msme-badge {
    display: inline-flex;
    margin-bottom: 0;
    text-align: left;
  }
}
