
:root {
  --dark-navy: #030f26;
  --primary-blue: #0a4ebd;
  --primary: #0a4ebd;
  --navy: #001846;
  --brand-red: #e22424;
  --brand-red-hover: #c41c1c;
  --accent-gold: #ffb300;
  --text-dark: #20344d;
  --white: #ffffff;
  --hero-bg-color: #061a3a;
}

html, body {
  font-family: 'Outfit', sans-serif;
  color: #334155;
  background-color: #ffffff;
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100%;
  position: relative;
}

/* Global utility helpers */
.text-primary-blue { color: #0a4ebd !important; }
.text-primary-light { color: #6da2f8 !important; }
.text-danger-brand { color: #e22424 !important; }
.bg-danger-light { background-color: rgba(226, 36, 36, 0.1) !important; }
.border-start-lg { border-left: 1px solid #dee2e6 !important; }
.home-service-widget-container { z-index: 2; }
.home-error-breadcrumb { background: url('../img/breadcrumb/01.jpg'); }

/* ========================================
   2. NAVIGATION (HEADER & MOBILE DRAWER)
======================================== */

/* Top Slim Bar */
.top-bar {
  background: var(--dark-navy);
  color: var(--white);
  font-size: 13px;
  line-height: 1.3;
  padding-bottom: 7px;
  padding-top: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
  font-weight: 500;
}

.top-bar a:hover {
  color: var(--accent-gold);
  opacity: 1;
}

.top-bar .divider-line {
  color: rgba(255, 255, 255, 0.2);
}

.top-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--accent-gold);
  background: rgba(255, 179, 0, 0.06);
  color: var(--white);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.2px;
}

.top-badge-pill i {
  font-size: 12px;
}

.top-badge-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.follow-us-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--brand-red);
}

/* Main Sticky Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 10px 30px rgba(3, 15, 38, 0.08);
}

.brand-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}



/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.desktop-nav .nav-link {
  position: relative;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.25s ease;
  padding: 28px 0;
  display: flex;
  align-items: center;
}

.desktop-nav .nav-link i {
  font-size: 11px;
  font-weight: 800;
}

.desktop-nav .nav-link:hover {
  color: var(--primary-blue);
}

.desktop-nav .nav-link.active {
  color: var(--brand-red);
}

.desktop-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--brand-red);
  border-radius: 3px 3px 0 0;
}

.desktop-nav .nav-item.dropdown {
  position: relative;
}

.desktop-nav .dropdown-toggle::after {
  display: none !important;
}

.desktop-nav .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  border: 1px solid rgba(3, 15, 38, 0.08);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(3, 15, 38, 0.1);
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin: 0;
  z-index: 1000;
}

.desktop-nav .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-nav .dropdown-item {
  display: block;
  width: 100%;
  padding: 8px 20px;
  clear: both;
  font-weight: 600;
  color: #4a5c73;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  font-size: 14px;
  transition: all 0.2s ease;
}

.desktop-nav .dropdown-item:hover {
  color: var(--primary-blue);
  background-color: #f0f7ff;
  padding-left: 24px;
}

.desktop-nav .dropdown-item.active {
  color: var(--primary-blue);
  background-color: #e2eeff;
  padding-left: 24px;
}

/* Call Now Header Button */
@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(226, 36, 36, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(226, 36, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 36, 36, 0); }
}

.btn-call-now {
  background: #ff6600;
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 0;
  box-shadow: 0 4px 12px rgba(226, 36, 36, 0.2);
  animation: btnPulse 2s infinite;
}

.btn-call-now:hover {
  background: var(--brand-red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(226, 36, 36, 0.35);
}

.btn-call-now i {
  font-size: 18px;
}

/* Hamburger Button */
.hamburger {
  background: transparent;
  border: 0;
  outline: none;
  padding: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #000000;
  border-radius: 10px;
  transition: background-color 0.25s ease;
}

.hamburger:hover span {
  background-color: var(--primary-blue);
}

/* Mobile Drawer Mega Menu */
.mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 15, 38, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

.mega-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mega-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: #ffffff;
  height: 100%;
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(3, 15, 38, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 70px 24px 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mega-overlay.active .mega-inner {
  transform: translateX(0);
}

.mega-close {
  position: absolute !important;
  z-index: 2010;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(3, 15, 38, 0.08);
  background: #ffffff;
  color: var(--text-dark);
  font-size: 20px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(4, 27, 61, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.mega-close:hover {
  background: #f5f8fc;
  color: var(--primary-blue);
  transform: rotate(90deg);
}

.mega-brand-card {
  background: #f5f9ff;
  border: 1px solid #e2eeff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(10, 78, 189, 0.02);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-logo {
  width: 110px;
  height: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

.mega-brand-card .brand-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-navy);
  margin: 0;
}

.mega-brand-card p {
  color: #506176;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.mega-call-btn-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.mega-call-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(10, 78, 189, 0.2);
}

.mega-call-primary:hover {
  background: #083c93;
  color: #ffffff;
  transform: translateY(-1px);
}

.mega-call-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: #f0f6fe;
  color: var(--primary-blue);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #d2e4fc;
  transition: all 0.2s ease;
}

.mega-call-secondary:hover {
  background: #e2eeff;
  color: var(--primary-blue);
  transform: translateY(-1px);
}

/* Mobile Accordion Navigation */
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-heading {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-navy);
  margin: 12px 0 8px 4px;
}

.mobile-nav-item {
  border-bottom: 1px solid #f2f5fa;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  border: none;
  text-decoration: none;
  text-align: left;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover, .mobile-nav-link:focus {
  color: var(--primary-blue);
}

.mobile-nav-link i.toggle-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-nav-item.active .mobile-nav-link {
  color: var(--primary-blue);
}

.mobile-nav-item.active .toggle-icon {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  display: flex;
  flex-direction: column;
  background: #fbfcfd;
  border-radius: 8px;
  margin: 0 4px 8px 4px;
}

.mobile-nav-item.active .mobile-dropdown-menu {
  max-height: 500px;
  transition: max-height 0.3s cubic-bezier(0.9, 0, 0.1, 1);
  padding: 6px 0;
  border: 1px solid #f2f5fa;
}

.mobile-dropdown-menu a {
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: #506176;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-dropdown-menu a:hover {
  color: var(--primary-blue);
  padding-left: 20px;
  background: #f5f9ff;
}

.mobile-dropdown-menu a.active {
  color: var(--primary-blue);
  background-color: #f5f9ff;
  padding-left: 20px;
}

.mobile-sec-links {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-top: 16px;
  border-top: 1px solid #f2f5fa;
}

.mobile-sec-links a {
  font-size: 12px;
  font-weight: 600;
  color: #8da2bb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-sec-links a:hover {
  color: var(--primary-blue);
}

.btn-quote {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 30px;
}

.btn-quote i {
  font-size: 14px;
}

.btn-mobile-review {
  background: #fff8e1;
  border: 1px solid #ffe082;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.btn-mobile-review:hover {
  background: #ffecb3;
}

/* ========================================
   3. SLIDER & HERO SECTION
======================================== */

.home-page-slider {
  position: relative;
  padding-top: 36px;
  padding-bottom: 75px;
  margin-bottom: 45px;
  background: var(--hero-bg-color);
  background-image: radial-gradient(circle at 80% 50%, #0a2756 0%, #061a3a 60%);
  color: var(--white);
}

.home-page-slider-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text-col {
  padding-top: 0;
  padding-bottom: 8px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffb300;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  margin-bottom: 12px;
}

.hero-badge-pill .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero-title-highlight {
  color: #ffb300;
  text-shadow: 0 2px 10px rgba(255, 179, 0, 0.2);
}

.hero-lead {
  font-size: 15.5px;
  line-height: 1.55;
  color: #e2e8f0;
  max-width: 580px;
  margin-bottom: 0;
}

.hero-btn-primary {
  padding: 10px 20px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e22424 0%, #c41c1c 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(226, 36, 36, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #ef3b3b 0%, #b51515 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(226, 36, 36, 0.45);
  color: #ffffff;
}

.hero-btn-primary i {
  font-size: 14px;
}

.hero-btn-outline {
  padding: 10px 20px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #ffffff;
}

.hero-btn-outline i {
  font-size: 14px;
}

/* Google Review Badge */
.hero-google-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(6px);
  width: fit-content;
}

.hgb-google-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 6px;
  flex-shrink: 0;
}

.hgb-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 2px;
}

.hgb-stars i {
  color: #f59e0b;
  font-size: 11px;
}

.hgb-rating {
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  margin-left: 4px;
}

.hgb-label {
  font-size: 11px;
  color: #ffffff;
  font-weight: 500;
}

.hgb-count {
  color: #cbd5e1;
}

/* Features Trust Bar Overlap */
.features-overlap-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(50%);
  z-index: 5;
}

.features-trust-bar {
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12) !important;
}

.feature-item {
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

/* Hero Quote Form Card */
.hero-quote-card-container {
  background: linear-gradient(180deg, rgba(6, 30, 77, 0.85) 0%, rgba(3, 17, 46, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 12px 14px 12px 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  margin-top: 12px;
  position: relative;
  z-index: 10;
}

.hero-quote-header {
  margin-bottom: 8px;
  padding-left: 6px;
}

.hero-quote-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
}

.hero-quote-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin: 3px 0 0 0;
  font-family: 'Outfit', sans-serif;
}

.hero-quote-white-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.card-body-form {
  padding: 12px;
}

.form-row-custom {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

.input-wrap-custom {
  position: relative;
  flex: 1;
  min-width: 0;
}

.input-icon-custom {
  position: absolute;
  left: 10px;
  top: 22px;
  transform: translateY(-50%);
  color: #7c8ba1;
  font-size: 15px;
  pointer-events: none;
}

.form-control-custom {
  width: 100%;
  height: 44px;
  padding-left: 32px;
  padding-right: 10px;
  border: 1px solid #dcdfe6;
  border-radius: 8px;
  font-size: 13px;
  color: #2d3748;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: 'Outfit', sans-serif;
}

.form-control-custom:focus {
  border-color: #0a4ebd;
  box-shadow: 0 0 0 3px rgba(10, 78, 189, 0.1);
}

.select-wrap-custom {
  position: relative;
  display: flex;
  flex-direction: column;
}

.select-label-custom {
  position: absolute;
  left: 10px;
  top: 5px;
  font-size: 8px;
  color: #7c8ba1;
  font-weight: 700;
  text-transform: uppercase;
  pointer-events: none;
  line-height: 1;
}

.form-select-custom {
  width: 100%;
  height: 44px;
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 24px;
  border: 1px solid #dcdfe6;
  border-radius: 8px;
  font-size: 13px;
  color: #2d3748;
  background-color: #ffffff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%237c8ba1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 9px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Outfit', sans-serif;
}

.form-select-custom:focus {
  border-color: #0a4ebd;
  box-shadow: 0 0 0 3px rgba(10, 78, 189, 0.1);
}

.btn-submit-custom {
  background: #0a4ebd;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  height: 44px;
  padding: 0 12px;
  font-weight: 700;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  outline: none;
  font-family: 'Outfit', sans-serif;
}

.btn-submit-custom:hover {
  background: #003ba8;
}

.btn-submit-custom:active {
  transform: scale(0.98);
}

.submit-btn-icon-desktop {
  display: inline-block;
}

.submit-btn-icon-mobile {
  display: none;
}

/* Card Footer Trust Bar (Desktop) */
.card-footer-trust {
  background: #ffffff;
  border-top: 1px solid #edf2f7;
  padding: 8px 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.trust-item:first-child {
  justify-content: flex-start;
}

.trust-item:last-child {
  justify-content: flex-end;
}

.trust-icon {
  font-size: 24px;
  color: #0a4ebd;
}

.trust-icon-circle {
  font-size: 13px;
  color: #ffffff;
  background: #0a4ebd;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.trust-text strong {
  font-size: 12.5px;
  color: #031b4e;
  font-weight: 700;
}

.trust-text span {
  font-size: 10.5px;
  color: #7c8ba1;
}

.divider-vertical {
  width: 1px;
  height: 28px;
  background: #edf2f7;
}

/* Mobile Trust Elements */
.mobile-trust-bar {
  box-shadow: inset 0 1px 0 #edf2f7;
  background: #ffffff;
}

.trust-mobile-item {
  border-right: 1px solid #edf2f7;
  padding-left: 2px;
  padding-right: 2px;
}

.trust-mobile-item:last-child {
  border-right: none;
}

.mobile-trust-bar .trust-icon {
  font-size: 20px;
  color: #0d47a1;
}

.mobile-trust-bar .trust-icon-circle {
  font-size: 11px;
  color: #0d47a1;
  background: transparent;
  border: 1.5px solid #0d47a1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}

.trust-mobile-item strong {
  font-size: 10.5px;
  color: #031b4e;
  margin-top: 6px;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.trust-mobile-item span {
  font-size: 8.5px;
  color: #7c8ba1;
  line-height: 1.2;
  display: block;
  margin-top: 2px;
}

.mobile-security-tag {
  font-size: 12px;
  color: #506176;
  font-weight: 600;
}

/* Hero Services bottom bar */
.hero-services-bar {
  background: #030f26;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  color: #ffffff;
}

.service-bar-col {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.service-bar-col:last-child {
  border-right: 0;
}

.service-bar-item {
  justify-content: center;
  width: 100%;
}

.service-bar-icon {
  font-size: 20px;
  color: #6da2f8;
}

.service-bar-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.service-bar-text strong {
  font-size: 13.5px;
  font-weight: 700;
}

.service-bar-text span {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.6);
}

.field-error-msg {
  margin-top: 4px !important;
}

/* Shared Quote Card Styles */
.quote-card {
  background: var(--white);
  color: #1d2b3a;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.quote-head {
  background: linear-gradient(135deg, #003b8f, #00245d);
  color: var(--white);
  padding: 12px 16px;
  position: relative;
}

.quote-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-head h3 span {
  color: #ff7a16;
}

.quote-head p {
  margin: 4px 0 0;
  font-size: 12px;
  opacity: 0.9;
}

.quote-badge {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 42px;
  height: 42px;
  background: #ff7a16;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.quote-body {
  padding: 10px 16px 8px;
}

.submit-btn {
  width: 100%;
  height: 42px;
  margin-top: 4px;
  border: 0;
  border-radius: 40px;
  background: linear-gradient(90deg, #ff7a16, #ff9a22);
  color: var(--white);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
}

.submit-btn i {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 30px;
  height: 30px;
  background: var(--white);
  color: #ff7a16;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.quote-footer {
  background: #003176;
  color: var(--white);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
}

.quote-footer div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.quote-footer i {
  font-size: 18px;
}

/* ========================================
   4. DYNAMIC BREADCRUMBS
======================================== */

.dynamic-bc-section {
  position: relative;
  background: linear-gradient(135deg, #07142c 0%, #0d2b5e 45%, #0b3d8c 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dyn-bc-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(99, 179, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(229, 57, 53, 0.09) 0%, transparent 50%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 45px 45px, 45px 45px;
  pointer-events: none;
  z-index: 1;
}

.dyn-bc-nav {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 12px;
  gap: 6px;
}

.dyn-bc-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  transition: color 0.2s ease;
}

.dyn-bc-nav a:hover {
  color: #60a5fa;
}

.dyn-bc-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.dyn-bc-current {
  color: #ffffff;
  font-weight: 700;
}

.dyn-bc-title {
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.dyn-bc-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 650px;
  margin-top: 4px;
}

.dyn-bc-right-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.dyn-bc-right-card:hover {
  border-color: rgba(96, 165, 250, 0.35);
  transform: translateY(-2px);
}

.dyn-bc-call-icon {
  width: 38px;
  height: 38px;
  background: rgba(13, 110, 253, 0.25);
  border: 1px solid rgba(13, 110, 253, 0.4);
}

/* ========================================
   5. HOME MODULES
======================================== */

/* Services Section */
.services-section {
  background-color: #ffffff;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.services-section .services-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.services-section .decor-top-left {
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='none'><path d='M0 0 C 220 0, 160 220, 0 300 Z' fill='url(%23grad1)' opacity='0.7'/><path d='M0 0 C 170 0, 110 170, 0 220 Z' fill='url(%23grad2)' opacity='0.45'/><defs><linearGradient id='grad1' x1='0' y1='0' x2='1' y2='1'><stop offset='0%' stop-color='%236da2f8'/><stop offset='100%' stop-color='%230a4ebd'/></linearGradient><linearGradient id='grad2' x1='0' y1='0' x2='1' y2='1'><stop offset='0%' stop-color='%230a4ebd'/><stop offset='100%' stop-color='%23030f26'/></linearGradient></defs></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.services-section .decor-top-right {
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='none'><pattern id='dots' x='0' y='0' width='16' height='16' patternUnits='userSpaceOnUse'><circle cx='3' cy='3' r='2' fill='%230a4ebd' opacity='0.15'/></pattern><rect width='100' height='100' fill='url(%23dots)'/></svg>");
  background-size: 80px 80px;
}

.services-section .decor-bottom-right {
  bottom: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='none'><path d='M300 300 C 80 300, 140 80, 300 0 Z' fill='url(%23grad1)' opacity='0.7'/><path d='M300 300 C 130 300, 190 130, 300 80 Z' fill='url(%23grad2)' opacity='0.45'/><defs><linearGradient id='grad1' x1='1' y1='1' x2='0' y2='0'><stop offset='0%' stop-color='%236da2f8'/><stop offset='100%' stop-color='%230a4ebd'/></linearGradient><linearGradient id='grad2' x1='1' y1='1' x2='0' y2='0'><stop offset='0%' stop-color='%230a4ebd'/><stop offset='100%' stop-color='%23030f26'/></linearGradient></defs></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.services-section .section-header {
  margin-bottom: 30px;
  position: relative;
}

.services-section .header-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-section .section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #0a4ebd;
  margin: 0 15px;
  text-transform: uppercase;
}

.services-section .header-line {
  height: 2px;
  width: 120px;
  background-color: #0a4ebd;
}

.services-section .header-dot {
  width: 6px;
  height: 6px;
  background-color: #0a4ebd;
  border-radius: 50%;
}

.services-section .left-dot { margin-left: 8px; }
.services-section .right-dot { margin-right: 8px; }

.services-section .header-truck-wrap {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.services-section .truck-icon-container {
  position: relative;
  display: inline-block;
  color: #0a4ebd;
}

.services-section .truck-icon {
  font-size: 26px;
  position: relative;
  z-index: 2;
  display: inline-block;
  animation: truckDrive 3s infinite ease-in-out;
}

.services-section .speed-line {
  position: absolute;
  height: 2px;
  background-color: #0a4ebd;
  border-radius: 2px;
  opacity: 0.6;
}

.services-section .line-1 {
  top: 6px;
  left: -20px;
  width: 12px;
  animation: speedLine1 1.5s infinite linear;
}

.services-section .line-2 {
  top: 13px;
  left: -26px;
  width: 18px;
  animation: speedLine2 1.5s infinite linear;
}

.services-section .line-3 {
  top: 20px;
  left: -16px;
  width: 10px;
  animation: speedLine3 1.5s infinite linear;
}

.services-section .service-card {
  background: #ffffff;
  border: 1px solid #e1ebf6;
  border-radius: 20px;
  padding: 16px 12px;
  box-shadow: 0 4px 20px rgba(10, 78, 189, 0.02);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(10, 78, 189, 0.08);
  border-color: rgba(10, 78, 189, 0.2);
}

.services-section .service-img-wrap {
  width: 110px;
  height: 82px;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services-section .service-card:hover .service-img-wrap {
  transform: scale(1.06);
}

.services-section .service-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.services-section .service-title-wrap {
  text-align: left;
  padding-left: 10px;
}

.services-section .service-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  color: #0a4ebd;
}

.services-section .title-part-1 { display: block; color: #0a4ebd; }
.services-section .title-part-2 { display: block; color: #0a4ebd; }

.services-section .title-underline {
  height: 2px;
  width: 40px;
  background-color: #0a4ebd;
  margin-top: 5px;
  border-radius: 1px;
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.4s ease;
}

.services-section .service-card:hover .title-underline {
  width: 65px;
  background-color: #ffb300;
}

.services-section .service-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #556880;
  line-height: 1.5;
  text-align: center;
  margin-top: 15px !important;
}

@keyframes truckDrive {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

@keyframes speedLine1 {
  0% { transform: scaleX(0.4); opacity: 0.2; }
  50% { transform: scaleX(1); opacity: 0.7; }
  100% { transform: scaleX(0.4); opacity: 0.2; }
}

@keyframes speedLine2 {
  0% { transform: scaleX(1); opacity: 0.8; }
  50% { transform: scaleX(0.5); opacity: 0.3; }
  100% { transform: scaleX(1); opacity: 0.8; }
}

@keyframes speedLine3 {
  0% { transform: scaleX(0.5); opacity: 0.3; }
  50% { transform: scaleX(1.2); opacity: 0.7; }
  100% { transform: scaleX(0.5); opacity: 0.3; }
}

/* Service Widget Component */
.sw-section {
  position: relative;
  overflow: hidden;
  background: #f0f4ff;
}

.sw-bg-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 5% 50%, rgba(13, 110, 253, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 95% 10%, rgba(139, 92, 246, 0.07) 0%, transparent 50%),
    linear-gradient(90deg, rgba(13,110,253,0.03) 1px, transparent 1px),
    linear-gradient(rgba(13,110,253,0.03) 1px, transparent 1px);
  background-size: 100%, 100%, 50px 50px, 50px 50px;
  pointer-events: none;
}

.sw-badge-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: #0d6efd;
  border-radius: 2px;
}

.sw-badge-dot {
  width: 6px;
  height: 6px;
  background: #0d6efd;
  border-radius: 50%;
  display: inline-block;
}

.sw-pill {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #0d6efd;
  text-transform: uppercase;
}

.sw-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #0b1c3c;
  margin-bottom: 6px;
}

.sw-subtitle {
  font-size: 14px;
  color: #6c757d;
}

.sw-underline {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #0d6efd, #7c3aed);
  border-radius: 2px;
  margin-top: 10px;
}

.sw-card {
  background: #ffffff;
  border: 1px solid #e4eaf8;
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.sw-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--sw-color);
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: var(--sw-color);
}

.sw-card:hover::before {
  opacity: 1;
}

.sw-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sw-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--sw-color);
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.sw-card:hover .sw-icon-wrap {
  background: var(--sw-color);
  color: #ffffff;
  transform: scale(1.08) rotate(-4deg);
}

.sw-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #0b1c3c;
  margin-bottom: 4px;
  line-height: 1.3;
}

.sw-card-desc {
  font-size: 12.5px;
  color: #6c757d;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sw-read-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--sw-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sw-read-more i {
  transition: transform 0.3s ease;
}

.sw-card:hover .sw-read-more {
  opacity: 1;
}

.sw-card:hover .sw-read-more i {
  transform: translateX(4px);
}

/* Working Process Section */
.working-process-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1c3c 0%, #0d2b5e 45%, #0a3d8f 100%);
}

.working-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(99, 179, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(255, 150, 50, 0.08) 0%, transparent 50%),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.working-process-section::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.working-process-section .container {
  position: relative;
  z-index: 1;
}

.wp-badge-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #60a5fa;
  border-radius: 2px;
}

.wp-badge-dot {
  width: 6px;
  height: 6px;
  background-color: #60a5fa;
  border-radius: 50%;
  display: inline-block;
}

.wp-pill-badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #60a5fa;
  text-transform: uppercase;
}

.wp-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

.wp-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.wp-underline {
  width: 50px;
  height: 3px;
  background-color: #60a5fa;
  border-radius: 2px;
}

.wp-steps-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.wp-connector-line {
  position: absolute;
  left: 14px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #c0cfe8 0px,
    #c0cfe8 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}

.wp-step-left {
  width: 30px;
  position: relative;
  z-index: 1;
}

.wp-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.12);
}

.wp-icon-col {
  width: 110px;
}

.wp-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.wp-icon-wrap.step-1 { background: radial-gradient(circle at 30% 30%, #ef5350, #c62828); }
.wp-icon-wrap.step-2 { background: radial-gradient(circle at 30% 30%, #42a5f5, #0d47a1); }
.wp-icon-wrap.step-3 { background: radial-gradient(circle at 30% 30%, #ffb74d, #e65100); }
.wp-icon-wrap.step-4 { background: radial-gradient(circle at 30% 30%, #66bb6a, #1b5e20); }

.wp-step-badge {
  position: absolute;
  bottom: -2px;
  right: -10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.step-1-badge { background: linear-gradient(135deg, #ef5350, #c62828); }
.step-2-badge { background: linear-gradient(135deg, #1e88e5, #0d47a1); }
.step-3-badge { background: linear-gradient(135deg, #fb8c00, #e65100); }
.step-4-badge { background: linear-gradient(135deg, #43a047, #1b5e20); }

.wp-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.wp-card:hover {
  box-shadow: 0 8px 28px rgba(96, 165, 250, 0.15);
  transform: translateX(4px);
  border-color: rgba(96, 165, 250, 0.3);
}

.wp-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.wp-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.wp-features-bar {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.wp-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96,165,250,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-feature-icon i { color: #60a5fa !important; }
.wp-features-bar .fw-bold { color: #ffffff !important; }
.wp-features-bar .text-muted { color: rgba(255,255,255,0.55) !important; }

/* Why Choose Us Widget */
.why-choose-widget {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.wc-pill-badge {
  background: #e0edff;
  color: #084298 !important;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.wc-pill-badge span {
  color: #084298 !important;
}

.wc-title {
  font-size: clamp(22px, 3.2vw, 32px);
}

.wc-subtitle {
  font-size: 14px;
  max-width: 560px;
}

.wc-cert-pill {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #1e293b;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.wc-feature-card {
  border-color: #e2e8f0 !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.wc-feature-card:hover {
  transform: translateY(-4px);
  border-color: #93c5fd !important;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.08) !important;
}

.wc-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.wc-icon-blue   { background: rgba(13, 110, 253, 0.1); color: #0d6efd; }
.wc-icon-green  { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.wc-icon-amber  { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.wc-icon-purple { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.wc-icon-teal   { background: rgba(20, 184, 166, 0.1); color: #0d9488; }
.wc-icon-red    { background: rgba(239, 68, 68, 0.1); color: #dc2626; }

.wc-card-step {
  font-size: 13px;
  font-weight: 800;
  color: #1e293b !important;
  background: #e2e8f0;
  padding: 2px 8px;
  border-radius: 6px;
}

.wc-card-heading {
  font-size: 15px;
  line-height: 1.35;
}

.wc-card-desc {
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 575.98px) {
  .wc-card-heading {
    font-size: 13px;
    line-height: 1.3;
  }
  .wc-card-desc {
    font-size: 11.5px;
    line-height: 1.45;
  }
  .wc-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    font-size: 16px;
  }
  .wc-card-step {
    font-size: 11px;
    padding: 1px 6px;
  }
}

.wc-bottom-banner {
  border-color: #e2e8f0 !important;
}

.wc-banner-icon {
  width: 44px;
  height: 44px;
}

.wc-cta-banner {
  background: linear-gradient(135deg, #0b1c3c 0%, #0d47a1 100%);
  box-shadow: 0 12px 36px rgba(11, 28, 60, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.wc-cta-banner::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.wc-cta-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.wc-cta-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #60a5fa;
}

.wc-cta-title {
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.3px;
}

.wc-cta-desc {
  color: #cbd5e1;
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 680px;
}

.wc-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #0d47a1;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.wc-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  background: #f8fafc;
  color: #0a3d8a;
}

/* About Us Home Widget */
.about-widget-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-widget-section::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.aw-img-main { border-radius: 16px; }

.aw-exp-badge {
  position: absolute;
  bottom: -20px;
  left: 24px;
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(13, 71, 161, 0.35);
}

.aw-exp-number {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.aw-exp-number span {
  font-size: 22px;
  color: #ffca28;
}

.aw-exp-text {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.aw-stat-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  min-width: 110px;
}

.aw-stat-top { top: 16px; right: -16px; }
.aw-stat-bottom { bottom: 40px; right: -16px; }

.aw-badge-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: #0d6efd;
  border-radius: 2px;
}

.aw-pill {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0d6efd;
  text-transform: uppercase;
}

.aw-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #0b1c3c;
  line-height: 1.25;
}

.aw-title-accent { color: #0d6efd; }

.aw-desc {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
}

.aw-handle-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0d6efd;
}

.aw-handle-title {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.aw-handle-item {
  font-size: 13.5px;
  color: #374151;
  font-weight: 500;
}

.aw-handle-item i {
  font-size: 15px;
  flex-shrink: 0;
}

.aw-handle-note {
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px dashed #cbd5e1;
  padding-top: 10px;
}

.aw-btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(13, 110, 253, 0.3);
}

.aw-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.4);
  color: #fff;
}

.aw-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #0d6efd;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #0d6efd;
  transition: all 0.3s ease;
}

.aw-btn-outline:hover {
  background: #0d6efd;
  color: #fff;
}

/* Price Chart Section */
.price-chart-section {
  background-color: #f8faff;
  position: relative;
}

.pc-badge-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background-color: #0d6efd;
  border-radius: 2px;
}

.pc-badge-dot {
  width: 5px;
  height: 5px;
  background-color: #0d6efd;
  border-radius: 50%;
  display: inline-block;
}

.pc-pill-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0d6efd;
  text-transform: uppercase;
}

.pc-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: #0b1c3c;
  line-height: 1.2;
}

.pc-title-accent { color: #e53935; }
.pc-subtitle { font-size: 13.5px; color: #6c757d; margin-bottom: 0; }

.pc-underline {
  width: 44px;
  height: 3px;
  background-color: #e53935;
  border-radius: 2px;
}

.pc-tab-pill-wrap {
  background: #e9effd;
  border: 1px solid #d4e2fc;
}

.pc-tab-btn {
  border: none;
  background: transparent;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #4b5563;
  transition: all 0.25s ease;
  cursor: pointer;
}

.pc-tab-btn.active {
  background: #0d6efd;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(13, 110, 253, 0.25);
}

.pc-tab-btn:hover:not(.active) { color: #0d6efd; }

.pc-table-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.pc-table thead {
  background: #f1f5f9;
  border-bottom: 2px solid #e2e8f0;
}

.pc-table th {
  font-size: 12.5px;
  font-weight: 700;
  color: #1e293b;
  padding: 10px 14px;
  white-space: nowrap;
}

.pc-table td {
  font-size: 13px;
  color: #475569;
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
}

.pc-table tbody tr:hover { background-color: #f8fafc; }

.pc-house-tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11.5px;
  font-weight: 700;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  border-radius: 4px;
  margin-right: 6px;
}

.pc-price-tag {
  font-size: 13.5px;
  font-weight: 800;
  color: #e53935;
  background: #fff0f0;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid #fed7d7;
}

.pc-footer-note {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.pc-quote-btn {
  background: #e53935;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pc-quote-btn:hover {
  background: #c62828;
  color: #fff;
}

/* Home City List Grid */
.cl-section { background: #fff; overflow: hidden; }
.cl-pin-line { display: inline-block; width: 30px; height: 2px; background: #e53935; border-radius: 2px; }
.cl-pin-dot { width: 5px; height: 5px; background: #e53935; border-radius: 50%; display: inline-block; }
.cl-pin-icon { color: #e53935; font-size: 20px; }

.cl-title {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: #0b1c3c;
  margin-bottom: 6px;
}

.cl-title-accent { color: #e53935; }
.cl-underline { width: 40px; height: 3px; background: #e53935; border-radius: 2px; }
.cl-subtitle { font-size: 14px; color: #6c757d; line-height: 1.7; }

.cl-grid-wrap {
  border: 1px solid #e8edf5;
  border-radius: 12px;
  overflow: hidden;
}

.cl-city-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  text-decoration: none;
  border-right: 1px solid #e8edf5;
  border-bottom: 1px solid #e8edf5;
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 46px;
}

.cl-city-item:hover { background: #fff5f5; }
.cl-city-pin { color: #e53935; font-size: 13px; flex-shrink: 0; }

.cl-city-name {
  font-size: 12.5px;
  color: #374151;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.2s;
}

.cl-city-item:hover .cl-city-name { color: #e53935; }

.cl-cta-bar {
  background: #f7f9ff;
  border: 1px solid #e4eaf8;
}

.cl-cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(229,57,53,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #e53935;
}

.cl-cta-title {
  font-size: 15px;
  font-weight: 700;
  color: #0b1c3c;
  margin-bottom: 2px;
}

.cl-cta-desc {
  font-size: 12.5px;
  color: #6c757d;
  line-height: 1.5;
  max-width: 420px;
}

.cl-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #e53935;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(229,57,53,0.3);
}

.cl-cta-btn:hover {
  background: #c62828;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229,57,53,0.4);
}

/* Home FAQs Widget */
.faq-section-new {
  background-color: #f7f9fc;
}

.faq-new-badge {
  display: inline-block;
  color: #0d6efd;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.faq-new-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #0b1c3c;
  line-height: 1.2;
}

.faq-new-subtitle {
  color: #6c757d;
  font-size: 15px;
  max-width: 550px;
  margin: 0 auto;
}

.faq-new-underline {
  width: 50px;
  height: 3px;
  background-color: #0d6efd;
  border-radius: 2px;
  margin-top: 12px;
}

.faq-help-strip {
  border-color: #e2e8f0 !important;
}

.faq-help-icon {
  width: 40px;
  height: 40px;
}

.faq-bs-accordion .accordion-item {
  border-color: #e2e8f0 !important;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-bs-accordion .accordion-item:hover {
  border-color: #cbd5e1 !important;
}

.faq-bs-accordion .accordion-button {
  color: #0f172a !important;
  font-size: 14px;
  background-color: #ffffff;
  box-shadow: none !important;
}

.faq-bs-accordion .accordion-button span {
  color: inherit !important;
}

.faq-bs-accordion .accordion-button:not(.collapsed) {
  color: #084298 !important;
  background-color: #f1f5f9;
}

.faq-bs-accordion .accordion-button:not(.collapsed) span {
  color: #084298 !important;
}

.faq-bs-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15) !important;
}

.faq-features-bar {
  background-color: #fff;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-feature-icon {
  width: 40px;
  height: 40px;
  background-color: #e8f0fe;
  flex-shrink: 0;
}

/* Home Reviews Slider Widget */
.rw-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #07142d 0%, #0c234b 50%, #07142d 100%);
}

.rw-bg-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(99,179,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 70%, rgba(226,36,36,0.06) 0%, transparent 55%),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100%, 100%, 60px 60px, 60px 60px;
  pointer-events: none;
}

.rw-pill-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #93c5fd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  backdrop-filter: blur(6px);
  padding: 4px 14px;
}

.rw-pill-badge img,
.rw-badge-img {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.rw-title {
  font-size: clamp(22px, 3.5vw, 32px);
  margin-bottom: 8px;
}

.rw-subtitle {
  font-size: 14px;
  color: #94a3b8;
  max-width: 540px;
  margin: 0 auto;
}

.rw-overall-rating {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.rw-stars i {
  color: #fbbf24;
  font-size: 14px;
}

.rw-rating-num {
  font-size: 18px;
}

.rw-slider-outer {
  padding: 0 46px;
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
}

.rw-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 8px 2px;
}

.rw-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.rw-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
  background: rgba(15, 29, 61, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 22px 20px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  box-sizing: border-box;
}

.rw-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.rw-service-badge {
  font-size: 11px;
  font-weight: 600;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 20px;
  padding: 2px 10px;
}

.rw-card-text {
  font-size: 13.5px;
  color: #e2e8f0;
  line-height: 1.65;
  flex-grow: 1;
  font-style: italic;
  margin-bottom: 16px;
}

.rw-card-user {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rw-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.rw-user-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.rw-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 29, 61, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.rw-arrow:hover {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #ffffff;
  transform: translateY(-50%) scale(1.06);
}

.rw-prev { left: 0; }
.rw-next { right: 0; }

/* Clean Accessible Dots with 36x36px Touch Target */
.rw-dots-wrap {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.rw-dots-wrap .rw-dot {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  cursor: pointer;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  position: relative !important;
}

.rw-dots-wrap .rw-dot::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.rw-dots-wrap .rw-dot.active::before {
  background: #38bdf8;
  width: 24px;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

.rw-btn-primary {
  background: linear-gradient(135deg, #e22424 0%, #b91c1c 100%);
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(226, 36, 36, 0.35);
  transition: all 0.25s ease;
  border: none;
}

.rw-btn-primary:hover {
  background: linear-gradient(135deg, #ef3b3b 0%, #a81515 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 36, 36, 0.45);
}

.rw-btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.rw-btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .rw-card {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  .rw-slider-outer {
    padding: 0 36px;
  }
}

@media (max-width: 575.98px) {
  .rw-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .rw-slider-outer {
    padding: 0 32px !important;
  }
  .rw-arrow {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .rw-prev { left: 0 !important; }
  .rw-next { right: 0 !important; }
}

/* ========================================
   6. ABOUT MODULES
======================================== */

.about-z2 { z-index: 2 !important; }
.about-cta-icon { font-size: 1.2rem; }

.about-team-member-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eef1f6 !important;
}

.about-team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(95, 150, 24, 0.1) !important;
  border-color: #5f9618 !important;
}

.about-border-light-green { border-color: #e2f0d9 !important; }
.about-transition-hover { transition: all 0.3s ease; }

.about-choose-transition-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-choose-transition-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(10, 78, 189, 0.05) !important;
}

.about-icon-box-lg { font-size: 2rem; }
.about-bg-success-soft { background-color: rgba(25, 135, 84, 0.1) !important; }
.about-italic-text { font-style: italic; }

.about-testimonial-card {
  border: 1px solid #eef1f6 !important;
}

.about-testimonial-card:hover {
  border-color: #5f9618 !important;
}

.about-quote-icon-lg { font-size: 3rem; }
.about-font-sm-075 { font-size: 0.75rem; }
.about-font-sm-070 { font-size: 0.7rem; }

.about-custom-faq-accordion .accordion-item { border: 1px solid #eef1f6 !important; }
.about-custom-faq-accordion .accordion-button:not(.collapsed) {
  color: #5f9618 !important;
  background-color: #f6fbf2 !important;
  box-shadow: none !important;
}
.about-custom-faq-accordion .accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

.about-review-header {
  background: #f8fafc;
  padding: 60px 0;
  margin-bottom: 50px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.about-review-header h1 {
  font-weight: 800;
  color: #001846;
  margin-bottom: 15px;
}

.about-review-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  border: 1px solid #f1f5f9;
  position: relative;
  transition: transform 0.3s ease;
}

.about-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-review-rating { color: #f59e0b; margin-bottom: 15px; font-size: 1.1rem; }
.about-review-text { font-size: 16px; color: #475569; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.about-review-author { display: flex; align-items: center; gap: 15px; }
.about-author-avatar { width: 50px; height: 50px; background: #e2e8f0; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #64748b; }
.about-author-info h6 { margin: 0; font-weight: 700; color: #001846; }
.about-author-info span { font-size: 13px; color: #94a3b8; }
.about-form-label { font-weight: 600; font-size: 0.9rem; color: #475569; margin-bottom: 8px; }
.about-form-control { border-radius: 10px; border: 1px solid #e2e8f0; padding: 12px 15px; }
.about-form-control:focus { border-color: #ff6600; box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1); }
.about-rating-select { display: flex; gap: 10px; margin-bottom: 20px; }
.about-rating-item { cursor: pointer; font-size: 24px; color: #cbd5e1; transition: 0.2s; }
.about-rating-item.active { color: #f59e0b; }
.about-btn-submit { background: #ff6600; color: #fff; border: none; padding: 15px 30px; border-radius: 10px; font-weight: 700; width: 100%; transition: 0.3s; margin-top: 10px; }
.about-btn-submit:hover { background: #e65c00; transform: translateY(-2px); color: #fff; }
.about-btn-submit-inline { width: auto; padding: 15px 40px; font-size: 1.1rem; border-radius: 50px; }

/* Company Sidebar Component */
.company-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  z-index: 10;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 110, 253, 0.2) transparent;
}

.company-sidebar::-webkit-scrollbar {
  width: 4px;
}

.company-sidebar::-webkit-scrollbar-thumb {
  background: rgba(13, 110, 253, 0.2);
  border-radius: 4px;
}

.cs-nav-link {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  color: #374151;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cs-nav-link:hover {
  background-color: #f0f4ff;
  color: #0d6efd;
  padding-left: 16px;
}

.cs-nav-link.active {
  background-color: #0d6efd;
  color: #ffffff;
}

.cs-nav-link.active i {
  color: #ffffff !important;
}

.cs-arrow {
  font-size: 11px;
  opacity: 0.5;
  transition: transform 0.2s;
}

.cs-nav-link:hover .cs-arrow {
  transform: translateX(3px);
  opacity: 1;
}

.cs-contact-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ========================================
   7. SERVICES / PACKERS & MOVERS
======================================== */

.service-breadcrumbs {
  background: linear-gradient(120deg, #001333 0%, #0a3fa8 55%, #1565d8 100%);
  padding: 52px 0 80px 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.service-breadcrumbs::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.service-breadcrumbs::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,200,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bc-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.bc-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s;
  font-weight: 500;
}

.bc-nav a:hover { color: #ffd600; }

.bc-nav .bc-sep {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  margin: 0 2px;
}

.bc-nav .bc-current {
  color: #ffd600;
  font-weight: 600;
}

.service-breadcrumbs h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.bc-title-white { color: #ffffff; }
.bc-title-orange { color: #ffd600; }

.bc-desc {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.bc-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
}

.bc-feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 10px 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s, transform 0.2s;
  min-width: 155px;
}

.bc-feature-pill:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.bc-feature-pill .pill-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,214,0,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #ffd600;
  flex-shrink: 0;
}

.bc-feature-pill .pill-text strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.bc-feature-pill .pill-text small {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  line-height: 1.3;
}

.bc-wave-wrap {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  z-index: 2;
}

.bc-wave-wrap svg {
  display: block;
  width: 100%;
  height: 64px;
}

.service-details-section {
  background-color: #ffffff;
  margin-top: 0 !important;
  padding-top: 48px;
}

.service-main-content {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  margin-bottom: 40px;
}

.service-section-title {
  font-weight: 800;
  color: #001846;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.service-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #ff6600;
}

.service-main-image {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  margin-bottom: 30px;
  filter: drop-shadow(0 15px 25px rgba(10, 78, 189, 0.15));
}

.about-service-text {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
}

.service-sidebar {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.sidebar-widget {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
}

.sidebar-widget .widget-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #001846;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 2px solid #f1f5f9;
}

.sidebar-widget .widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #ff6600;
}

.sidebar-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-services-list li { margin-bottom: 8px; }
.sidebar-services-list li:last-child { margin-bottom: 0; }

.sidebar-services-list li a {
  color: #475569;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
}

.sidebar-services-list li a:hover {
  background-color: #ff6600;
  color: #ffffff;
  transform: translateX(5px);
  border-color: #ff6600;
}

.sidebar-services-list li a:hover .service-icon,
.sidebar-services-list li a:hover .arrow-icon {
  color: #ffffff;
}

.sidebar-services-list li a.active {
  background-color: #0a4ebd;
  color: #ffffff;
  border-color: #0a4ebd;
}

.sidebar-services-list li a.active .service-icon,
.sidebar-services-list li a.active .arrow-icon {
  color: #ffffff;
}

.sidebar-services-list .service-icon {
  color: #0a4ebd;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.sidebar-services-list .arrow-icon {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: color 0.3s;
}

.widget-contact-cta {
  background: linear-gradient(135deg, #0a4ebd 0%, #001846 100%);
  border: none;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.widget-contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title { font-weight: 800; font-size: 1.35rem; margin-bottom: 10px; }
.cta-desc { font-size: 14px; color: rgba(255, 255, 255, 0.8); margin-bottom: 25px; }

.btn-sidebar-cta {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.btn-sidebar-call { background-color: #ff6600; color: #ffffff; }
.btn-sidebar-call:hover { background-color: #e65c00; transform: translateY(-2px); color: #ffffff; }
.btn-sidebar-whatsapp { background-color: #25d366; color: #ffffff; }
.btn-sidebar-whatsapp:hover { background-color: #20ba5a; transform: translateY(-2px); color: #ffffff; }
.btn-sidebar-quote { background-color: rgba(255, 255, 255, 0.15); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.25); }
.btn-sidebar-quote:hover { background-color: #ffffff; color: #001846; transform: translateY(-2px); }

.widget-trusted-badges .widget-sub-title { font-size: 1.15rem; font-weight: 800; color: #001846; }
.trusted-points-list { list-style: none; padding: 0; margin: 0; }
.trusted-points-list strong { color: #001846; font-size: 14px; }

.process-timeline {
  position: relative;
  padding-left: 30px;
  margin-top: 30px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 10px;
  width: 2px;
  height: calc(100% - 20px);
  background-color: #e2e8f0;
}

.process-step { position: relative; margin-bottom: 25px; }
.process-step:last-child { margin-bottom: 0; }

.step-number {
  position: absolute;
  left: -30px;
  top: 2px;
  width: 22px;
  height: 22px;
  background-color: #ff6600;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 11px;
  display: grid;
  place-items: center;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #ff6600;
}

.process-step h4 { font-size: 1.1rem; font-weight: 700; color: #001846; margin-bottom: 6px; }
.process-step p { font-size: 14px; color: #64748b; margin: 0; }

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.choose-item-card {
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s;
}

.choose-item-card:hover {
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
  border-color: #ff6600;
  transform: translateY(-2px);
}

.choose-icon-wrap { font-size: 1.4rem; color: #ff6600; margin-top: 2px; }
.choose-content h5 { font-size: 14px; font-weight: 700; color: #001846; margin-bottom: 4px; }
.choose-content p { font-size: 12px; color: #64748b; margin: 0; line-height: 1.5; }

.service-faq-container { margin-top: 35px; }
.service-faq-container .faq-card {
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.service-faq-container .faq-card-header {
  padding: 18px 20px;
  font-weight: 700;
  color: #001846;
  font-size: 15px;
  transition: all 0.3s;
}

.service-faq-container .faq-card-header:not(.collapsed) {
  color: #0a4ebd;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.service-faq-container .faq-card-icon { color: #ff6600; font-size: 18px; margin-right: 12px; }
.service-faq-container .faq-toggle-icon { font-size: 18px; color: #94a3b8; transition: transform 0.3s; }
.service-faq-container .faq-card-header:not(.collapsed) .faq-toggle-icon { transform: rotate(45deg); color: #ff6600; }
.service-faq-container .faq-card-body {
  padding: 18px 20px;
  background-color: #ffffff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.service-reviews-slice {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  padding: 25px;
  margin: 35px 0;
}

.service-reviews-slice .rating-row { color: #f59e0b; font-size: 1.1rem; margin-bottom: 10px; }
.service-reviews-slice .review-text { font-size: 15px; color: #475569; line-height: 1.7; font-style: italic; margin-bottom: 15px; }
.service-reviews-slice .review-user { display: flex; align-items: center; gap: 12px; }
.service-reviews-slice .user-avatar {
  width: 40px;
  height: 40px;
  background-color: #e2e8f0;
  color: #64748b;
  font-weight: 700;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.service-reviews-slice .user-name h6 { margin: 0; font-weight: 700; color: #001846; font-size: 14px; }
.service-reviews-slice .user-name span { font-size: 12px; color: #94a3b8; }

/* Packers Movers List & State Pages */
.pm-list-service-page {
  background-image: url('../images/location/location-background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 500px;
  background-attachment: fixed !important;
  position: relative;
  padding: 50px 0 !important;
}

.pm-list-service-page::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(2px); z-index: 1;
}

.pm-list-feature-section { position: relative; z-index: 2; }

.pm-list-city-card {
  border: 1px solid #edf2f7 !important;
  border-radius: 12px !important;
  background: #fff !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 4px 12px rgba(0, 24, 70, 0.04) !important;
  overflow: hidden;
  position: relative;
}

.pm-list-city-card-link:hover .pm-list-city-card {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 24, 70, 0.12) !important;
  background: #fff !important;
}

.pm-list-city-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--primary);
  transition: width 0.4s ease;
}

.pm-list-city-card-link:hover .pm-list-city-card::after { width: 100%; }
.pm-list-card-body { padding: 10px 15px !important; display: flex; align-items: center; gap: 12px; justify-content: flex-start !important; }

.pm-list-city-card .pm-list-icon {
  width: 40px; height: 40px; background: #f8fafc; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; transition: all 0.3s ease; flex-shrink: 0;
}

.pm-list-city-card-link:hover .pm-list-icon { background: rgba(255, 107, 22, 0.1); transform: scale(1.05); }
.pm-list-city-card .pm-list-icon i { font-size: 1.2rem; color: var(--navy); transition: color 0.3s ease; }
.pm-list-city-card-link:hover .pm-list-icon i { color: var(--primary); }
.pm-list-city-name { flex: 1; }
.pm-list-city-name h5 { font-size: 0.75rem; font-weight: 600; color: var(--navy); margin: 0; line-height: 1.2; transition: color 0.3s ease; }
.pm-list-city-name h5 b { display: block; font-weight: 700; color: var(--primary); font-size: 0.95rem; margin-top: 1px; }

.pm-states-title-span { color: #073c91; }
.pm-states-card { transition: all 0.35s ease; border: 1px solid #eef1f5; }
.pm-states-card:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }
.pm-states-img { height: 180px; }
.pm-states-img img { height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.pm-states-card:hover img { transform: scale(1.08); }
.pm-states-overlay {
  position: absolute; inset: 0; background: rgba(7, 60, 145, 0.75); display: flex;
  align-items: center; justify-content: center; opacity: 0; transition: 0.3s ease;
}
.pm-states-card:hover .pm-states-overlay { opacity: 1; }
.pm-states-yellow-dash { display: inline-block; width: 24px; height: 3px; background-color: #ffb800; border-radius: 2px; flex-shrink: 0; }
.pm-states-city-breadcrumb .breadcrumb-item a { color: #fff; }
.pm-states-city-breadcrumb .breadcrumb-item.active { color: #ffc107; }

/* ========================================
   8. SERVICE WIDGETS
======================================== */

.srv-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  height: 100%;
  transition: all 0.3s ease;
}

.srv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.srv-icon-wrap {
  height: 70px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-icon-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.srv-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.4;
}

.srv-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.srv-link {
  font-size: 0.9rem;
  color: #4ea3fc;
  text-decoration: none;
  font-weight: 400;
  display: inline-block;
  margin-top: auto;
}

.srv-link:hover {
  color: #073c91;
  text-decoration: underline;
}

/* ========================================
   9. CITY LIST
======================================== */

.search-location-section {
  background: #fff;
}

.location-heading h2 {
  display: inline-block;
  color: #e10d0d;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: 3px solid #e10d0d;
  position: relative;
}

.location-heading {
  border-bottom: 1px solid #ddd;
}

.location-list {
  padding-left: 18px;
}

.location-list li a {
  color: #666;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  line-height: 1.4;
}

.location-list li {
  color: #333;
  margin-bottom: 6px;
}

.location-list li a:hover {
  color: #073c91;
  padding-left: 4px;
}

/* ========================================
   10. CITY PAGE
======================================== */

.pm-city-map-iframe { border: 0; }

.pm-city-srv-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  height: 100%;
  transition: all 0.3s ease;
}

.pm-city-srv-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.pm-city-srv-icon-wrap { height: 70px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
.pm-city-srv-icon-wrap img { max-height: 100%; max-width: 100%; object-fit: contain; }
.pm-city-srv-title { font-size: 1.15rem; font-weight: 800; color: #000; margin-bottom: 15px; line-height: 1.4; }
.pm-city-srv-desc { font-size: 0.85rem; color: #64748b; line-height: 1.7; margin-bottom: 20px; }
.pm-city-srv-link { font-size: 0.9rem; color: #4ea3fc; text-decoration: none; font-weight: 400; }
.pm-city-srv-link:hover { color: #073c91; text-decoration: underline; }

.pm-city-slider-nav { margin-bottom: 0.5rem; }
.pm-city-slider { min-height: auto; background-size: cover; background-position: center; background-repeat: no-repeat; color: var(--white); position: relative; overflow: hidden; }

.pm-city-sidebar { position: sticky; top: 100px; }
.pm-city-sidebar-widget { background: #ffffff; border-radius: 18px; padding: 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); border: 1px solid #e8edf4; }
.pm-city-sidebar-widget-title { font-size: 1rem; font-weight: 800; color: #001333; margin-bottom: 6px; padding-bottom: 10px; border-bottom: 2px solid #f1f5f9; position: relative; }
.pm-city-sidebar-widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 36px; height: 2px; background: #ff6600; }
.pm-city-sidebar-widget-desc { font-size: 12px; color: #94a3b8; margin-bottom: 16px; }

.pm-city-cta-card {
  background: linear-gradient(125deg, #001333 0%, #0a3fa8 55%, #1565d8 100%);
  position: relative;
  overflow: hidden;
  border: none;
  padding: 28px 22px;
}

.pm-city-cta-bg-icon { position: absolute; top: -10px; right: -10px; font-size: 7rem; color: rgba(255,255,255,0.04); pointer-events: none; transform: rotate(15deg); }
.pm-city-cta-inner { position: relative; z-index: 1; }
.pm-city-cta-icon-wrap { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; display: grid; place-items: center; font-size: 22px; color: #ffd600; margin-bottom: 14px; }
.pm-city-cta-title { font-size: 1.05rem; font-weight: 800; color: #ffffff; line-height: 1.3; margin-bottom: 8px; }
.pm-city-cta-title span { color: #ffd600; }
.pm-city-cta-desc { font-size: 12px; color: rgba(255,255,255,0.72); margin-bottom: 18px; line-height: 1.5; }
.pm-city-cta-buttons { display: flex; flex-direction: column; gap: 10px; }
.pm-city-cta-btn { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-radius: 12px; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.14); text-decoration: none; color: #ffffff; transition: background 0.25s, transform 0.2s; }
.pm-city-cta-btn:hover { background: rgba(255,255,255,0.16); transform: translateX(3px); color: #fff; }
.pm-city-cta-btn > i { font-size: 20px; color: #ffd600; flex-shrink: 0; }
.pm-city-cta-btn small { display: flex; align-items: center; gap: 6px; font-size: 10px; color: rgba(255,255,255,0.65); margin-bottom: 2px; }
.pm-city-cta-btn strong { display: block; font-size: 14px; font-weight: 700; }
.pm-city-badge-live { background: #22c55e; color: #fff; font-size: 9px; padding: 1px 5px; border-radius: 3px; font-weight: 700; }
.pm-city-cta-action-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.pm-city-action-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 12px 8px; border-radius: 12px; border: none; font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: none; transition: transform 0.2s, opacity 0.2s; }
.pm-city-action-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.pm-city-action-btn i { font-size: 18px; }
.pm-city-whatsapp-btn { background: #25d366; color: #fff; }
.pm-city-quote-btn { background: #ffd600; color: #001333; }
.pm-city-services-list { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 6px; }
.pm-city-service-link { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; background: #f8fafc; border: 1px solid #f1f5f9; text-decoration: none; color: #334155; font-size: 13px; font-weight: 600; transition: all 0.25s; }
.pm-city-service-link:hover { background: #0a4ebd; color: #fff; border-color: #0a4ebd; transform: translateX(4px); }
.pm-city-service-link:hover .pm-city-svc-icon, .pm-city-service-link:hover .pm-city-svc-arrow { color: #fff; }
.pm-city-svc-icon { font-size: 16px; color: #0a4ebd; flex-shrink: 0; transition: color 0.25s; }
.pm-city-svc-name { flex: 1; }
.pm-city-svc-arrow { font-size: 13px; color: #94a3b8; transition: color 0.25s; }
.pm-city-view-all-btn { display: flex; align-items: center; justify-content: center; width: 100%; padding: 10px; border: 2px solid #0a4ebd; border-radius: 10px; color: #0a4ebd; font-weight: 700; font-size: 13px; text-decoration: none; transition: all 0.25s; }
.pm-city-view-all-btn:hover { background: #0a4ebd; color: #fff; }
.pm-city-trust-list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 16px; }
.pm-city-trust-list li { display: flex; align-items: flex-start; gap: 12px; }
.pm-city-trust-icon-wrap { width: 36px; height: 36px; border-radius: 10px; background: #eff6ff; color: #0a4ebd; display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }
.pm-city-trust-green { background: #f0fdf4; color: #16a34a; }
.pm-city-trust-orange { background: #fff7ed; color: #ea580c; }
.pm-city-trust-red { background: #fef2f2; color: #dc2626; }
.pm-city-trust-yellow { background: #fefce8; color: #ca8a04; }
.pm-city-trust-list li strong { display: block; font-size: 13px; color: #001333; line-height: 1.3; }
.pm-city-trust-list li small { font-size: 11px; color: #94a3b8; }
.pm-city-related-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.pm-city-tag { display: inline-flex; align-items: center; gap: 3px; padding: 6px 12px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 20px; font-size: 12px; font-weight: 600; color: #334155; text-decoration: none; transition: all 0.2s; }
.pm-city-tag:hover { background: #0a4ebd; color: #fff; border-color: #0a4ebd; }
.pm-city-tag i { color: #0a4ebd; transition: color 0.2s; font-size: 14px; }
.pm-city-tag:hover i { color: #fff; }

.pm-city-details-section { background: #f1f5f9; padding: 48px 0 60px; }
.pm-city-content-card { background: #ffffff; border-radius: 18px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.05); border: 1px solid #e8edf4; }
.pm-city-section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: #0a4ebd; text-transform: uppercase; margin-bottom: 8px; }
.pm-city-section-title { font-size: clamp(1.3rem, 2.5vw, 1.65rem); font-weight: 800; color: #001333; line-height: 1.3; margin-bottom: 22px; }
.pm-city-accent { color: #0a4ebd; }
.pm-city-section-title-sm { font-size: 1.15rem; font-weight: 800; color: #001333; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid #f1f5f9; position: relative; }
.pm-city-section-title-sm::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 42px; height: 2px; background: #ff6600; }
.pm-city-img-wrap { position: relative; border-radius: 14px; overflow: hidden; margin-bottom: 24px; }
.pm-city-hero-img { width: 100%; max-height: 320px; object-fit: cover; display: block; }
.pm-city-exp-badge { position: absolute; bottom: 16px; left: 16px; background: #ffffff; border-radius: 12px; padding: 12px 18px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.pm-city-exp-badge .pm-exp-num { font-size: 2rem; font-weight: 900; color: #0a4ebd; line-height: 1; }
.pm-city-exp-badge .pm-exp-label { font-size: 12px; color: #64748b; line-height: 1.4; }
.pm-city-prose p { color: #475569; font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.pm-city-feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pm-city-pill { display: flex; align-items: center; gap: 8px; background: #f0f6ff; border: 1px solid #d4e4ff; color: #0a4ebd; border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 600; }
.pm-city-pill i { font-size: 15px; }
.pm-city-checklist { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0 18px; }
.pm-city-checklist li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #334155; }
.pm-city-checklist li i { color: #0a4ebd; font-size: 16px; flex-shrink: 0; }
.pm-city-stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: linear-gradient(120deg, #001333 0%, #0a4ebd 100%); border-radius: 14px; padding: 20px 10px; margin-top: 24px; text-align: center; }
.pm-city-stat { padding: 0 10px; border-right: 1px solid rgba(255,255,255,0.15); }
.pm-city-stat:last-child { border-right: none; }
.pm-city-stat .pm-stat-num { display: block; font-size: 1.4rem; font-weight: 900; color: #ffd600; line-height: 1; margin-bottom: 4px; }
.pm-city-stat .pm-stat-label { font-size: 11px; color: rgba(255,255,255,0.75); font-weight: 500; }
.pm-city-review-card { background: #f8fafc; border: 1px solid #e2e8f0; border-left: 4px solid #0a4ebd; border-radius: 12px; padding: 18px; height: 100%; }
.pm-city-review-card .pm-review-stars { color: #f59e0b; font-size: 13px; margin-bottom: 10px; }
.pm-city-review-card p { font-size: 13px; color: #475569; line-height: 1.6; font-style: italic; margin-bottom: 14px; }
.pm-city-review-card .pm-review-author { display: flex; align-items: center; gap: 10px; }
.pm-city-review-card .pm-review-avatar { width: 36px; height: 36px; background: linear-gradient(135deg, #0a4ebd, #001333); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.pm-city-review-card .pm-review-author strong { display: block; font-size: 13px; color: #001333; }
.pm-city-review-card .pm-review-author small { font-size: 11px; color: #94a3b8; }
.pm-city-faq-item { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.pm-city-faq-btn { width: 100%; text-align: left; background: none; border: none; padding: 16px 20px; display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14px; color: #001333; cursor: pointer; transition: background 0.2s; }
.pm-city-faq-btn:hover { background: #f0f6ff; }
.pm-city-faq-btn.active { color: #0a4ebd; background: #f0f6ff; }
.pm-city-faq-btn .pm-faq-q-icon { color: #ff6600; font-size: 17px; flex-shrink: 0; }
.pm-city-faq-btn .pm-faq-chevron { margin-left: auto; font-size: 14px; color: #94a3b8; transition: transform 0.3s; }
.pm-city-faq-btn[aria-expanded="true"] .pm-faq-chevron { transform: rotate(180deg); color: #0a4ebd; }
.pm-city-faq-btn span { flex: 1; }
.pm-city-faq-body { padding: 4px 20px 16px 49px; font-size: 13px; color: #64748b; line-height: 1.7; }

.city-intro-prose p,
.city-content-para {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.city-intro-prose p:last-child,
.city-content-para:last-child {
  margin-bottom: 0;
}
.city-challenges-prose p {
  color: #475569;
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.city-challenges-prose p:last-child {
  margin-bottom: 0;
}
.city-content-lead {
  font-size: 15.5px;
  color: #334155;
  font-weight: 500;
  line-height: 1.8;
}
.city-content-highlight {
  color: #001333;
  font-weight: 700;
}

/* ========================================
   11. CONTACT MODULES & FORMS
======================================== */

/* Call Me Back Modal */
.contact-modal-content { border-radius: 8px; border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.contact-modal-header { position: relative; }
.contact-modal-close { position: absolute; right: 15px; top: 15px; z-index: 2; width: 10px; height: 10px; font-weight: bold; }
.contact-modal-title { color: #0a4ebd; font-family: 'Times New Roman', serif; font-size: 42px; font-weight: normal; }
.contact-modal-input { border-radius: 4px; padding: 12px 15px; border: 1px solid #ced4da; font-size: 16px; }
.contact-modal-btn { background-color: #0a4ebd; color: white; border-radius: 4px; padding: 12px; font-size: 18px; font-weight: 500; border: none; transition: background-color 0.3s; }
.contact-modal-btn:hover { background-color: #083c93; }
.contact-modal-result { font-weight: 600; }

/* Contacts Page Cards */
.contact-title-primary { color: #073c91; }
.contact-icon-box { width: 60px; height: 60px; font-size: 1.5rem; background: rgba(7, 60, 145, 0.1); color: #073c91; }
.contact-icon-box-success { width: 60px; height: 60px; font-size: 1.5rem; background: rgba(255, 135, 84, 0.1); color: #198754; }
.contact-icon-box-warning { width: 60px; height: 60px; font-size: 1.5rem; background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.contact-border-warning { border-color: #ffb800 !important; }
.contact-input-rounded { border-radius: 8px; }
.contact-btn-rounded { border-radius: 8px; font-size: 1.1rem; }

/* Quote Modal */
.contact-quote-gap { gap: 10px; }
.contact-custom-modal .modal-dialog { max-width: 520px; }
.contact-custom-modal .modal-content { border: 0; border-radius: 18px; overflow: hidden; background: #ffffff; box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28); }
.contact-form-header { background: linear-gradient(135deg, #0b1c3c 0%, #0d6efd 100%); color: #fff; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; }
.header-icon-wrap { width: 38px; height: 38px; background: rgba(255, 255, 255, 0.15); font-size: 18px; color: #ffd600; flex-shrink: 0; }
.contact-form-header .close { width: 32px; height: 32px; border: 0; border-radius: 50%; background: rgba(255,255,255,.18); color: #fff; display: flex; align-items: center; justify-content: center; transition: .25s; }
.contact-form-header .close:hover { background: #fff; color: #0d6efd; transform: scale(1.08); }

.qte-floating-group { position: relative; }
.qte-floating-group > .form-control {
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background-color: #f8fafc;
  font-size: 14px;
  color: #1e293b;
  font-weight: 500;
  transition: all 0.25s ease;
  height: 52px;
  padding-top: 1.4rem;
  padding-bottom: 0.4rem;
  padding-left: 14px;
}

.qte-floating-group > textarea.form-control {
  min-height: 95px;
  padding-top: 1.6rem;
}

.qte-floating-group > .form-control:focus {
  background-color: #ffffff;
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.14);
}

.qte-floating-group > label {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  padding-left: 14px;
  transition: all 0.2s ease;
}

.qte-floating-group > .form-control:focus ~ label,
.qte-floating-group > .form-control:not(:placeholder-shown) ~ label {
  color: #0d6efd;
  font-weight: 700;
  transform: scale(0.82) translateY(-0.65rem) translateX(0.15rem);
}

#quotemodal .theme-btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14.5px;
  font-weight: 700;
  background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
  color: #fff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.28);
}

#quotemodal .theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.38);
  color: #fff;
}

#quotemodal .btn-clear-form {
  background: #f1f5f9;
  color: #475569;
  box-shadow: none;
  border: 1px solid #e2e8f0;
}

#quotemodal .btn-clear-form:hover {
  background: #e2e8f0;
  color: #0f172a;
  box-shadow: none;
}

#resultquotemodal { margin-top: 10px; text-align: center; font-weight: 600; }

/* Vertical Quote Form Card */
.vertical-quote-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(3, 15, 38, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 20;
}

.vqc-header {
  background: linear-gradient(135deg, #001846 0%, #0a4ebd 100%);
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vqc-title {
  font-size: 15.5px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.vqc-subtitle {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-weight: 500;
}

.vqc-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb300;
  font-size: 16px;
  flex-shrink: 0;
}

.vqc-fields {
  padding: 14px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vqc-float-group {
  position: relative;
  width: 100%;
}

.vqc-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 13.5px;
  pointer-events: none;
  z-index: 3;
  transition: color 0.2s ease;
}

.vqc-float-group:focus-within .vqc-icon {
  color: #0a4ebd;
}

.vqc-input {
  width: 100%;
  height: 44px;
  padding: 16px 10px 4px 34px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
  background: #f8fafc;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  line-height: normal;
}

.vqc-input:focus {
  border-color: #0a4ebd;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(10, 78, 189, 0.12);
}

.vqc-label {
  position: absolute;
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  padding: 0;
  margin: 0;
  z-index: 2;
  line-height: 1;
}

.vqc-input:focus ~ .vqc-label,
.vqc-input:not(:placeholder-shown) ~ .vqc-label {
  top: 8px;
  transform: translateY(0);
  font-size: 9px;
  font-weight: 700;
  color: #0a4ebd;
  letter-spacing: 0.3px;
}

.vqc-select {
  cursor: pointer;
  padding-right: 32px;
  color: #334155;
}

.vqc-select option {
  color: #0f172a;
  background: #ffffff;
}

.vqc-select-wrap::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  font-size: 12px;
  z-index: 3;
}

.vqc-label-select,
.vqc-label-date {
  top: 8px;
  transform: none;
  font-size: 9px;
  font-weight: 700;
  color: #0a4ebd;
  letter-spacing: 0.3px;
}

.vqc-date {
  color: #0f172a;
  padding-right: 10px;
}

.vqc-label-date {
  top: 8px;
  transform: none;
  font-size: 9px;
  font-weight: 700;
  color: #0a4ebd;
  letter-spacing: 0.3px;
}

.vqc-submit {
  width: 100%;
  height: 42px;
  background: linear-gradient(135deg, #e22424 0%, #c41c1c 100%);
  color: #ffffff;
  border: none;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(226, 36, 36, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
  position: relative;
  z-index: 25;
}

.vqc-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(226, 36, 36, 0.45);
  background: linear-gradient(135deg, #ef3b3b 0%, #b51515 100%);
  color: #ffffff;
}

.vqc-submit:active {
  transform: translateY(0);
}

.vqc-trust-note {
  font-size: 11px;
  color: #64748b;
  text-align: center;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Contact Us Page */
.contact-page-section {
  background-color: #f8fafc;
}
.contact-quick-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-color: #e2e8f0 !important;
}
.contact-quick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(3, 15, 38, 0.08) !important;
}
.contact-q-icon {
  width: 48px;
  height: 48px;
}
.contact-info-card,
.contact-form-card {
  border-color: #e2e8f0 !important;
}
.contact-form-label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 5px;
  display: block;
}
.contact-field-group .form-control {
  font-size: 13.5px;
  border-color: #e2e8f0;
  border-radius: 8px;
  padding: 9px 12px;
}
.contact-field-group .input-group-text {
  border-color: #e2e8f0;
  border-radius: 8px 0 0 8px;
  padding: 0 12px;
}
.contact-field-group .form-control:focus {
  border-color: #0a4ebd;
  box-shadow: 0 0 0 3px rgba(10, 78, 189, 0.12);
}
.contact-field-group .input-group:focus-within .input-group-text {
  border-color: #0a4ebd;
  color: #0a4ebd;
}
.contact-submit-btn {
  background: linear-gradient(135deg, #e22424 0%, #c41c1c 100%);
  border: none;
  border-radius: 8px;
  font-size: 14.5px;
  padding: 11px 20px;
  box-shadow: 0 4px 14px rgba(226, 36, 36, 0.35);
  transition: all 0.25s ease;
}
.contact-submit-btn:hover {
  background: linear-gradient(135deg, #ef3b3b 0%, #b51515 100%);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(226, 36, 36, 0.45);
}

/* Review Modal in Contacts */
.contact-review-form-label { font-weight: 600; font-size: 0.9rem; color: #475569; margin-bottom: 8px; }
.contact-review-form-control { border-radius: 10px; border: 1px solid #e2e8f0; padding: 12px 15px; }
.contact-review-form-control:focus { border-color: #ff6600; box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1); outline: none; }
.contact-btn-submit-review { background: #ff6600; color: #fff; border: none; padding: 15px 30px; border-radius: 10px; font-weight: 700; width: 100%; transition: 0.3s; margin-top: 10px; }
.contact-btn-submit-review:hover { background: #e65c00; transform: translateY(-2px); color: #fff; }
.contact-review-modal-content { border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.contact-review-modal-title { font-weight: 800; color: #001846; }
.contact-review-rating-wrap { margin-top: -4px; }
.contact-review-emoji { font-size: 28px; line-height: 1; }
.contact-review-number { font-weight: 700; color: #475569; font-size: 1.1rem; }
.contact-review-total { color: #94a3b8; font-weight: 600; }

/* ========================================
   12. REVIEWS
======================================== */

.reviews-service-page {
  min-height: 50vh;
  background-image: url('../images/location/location-background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 15px;
  padding-bottom: 15px;
  padding: 30px 0;
  color: #000;
}

.reviews-feature-content-section {
  box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.1);
  color: black;
}

.reviews-header-wrap { border-bottom: 2px solid #f1f5f9; position: relative; }
.reviews-header-title { font-size: 1.5rem; font-weight: 800; color: #001333; }
.reviews-write-btn { background: #0a4ebd; border-color: #0a4ebd; font-weight: 700; }
.reviews-header-line { position: absolute; bottom: -2px; left: 0; width: 60px; height: 3px; background: #ff6600; }
.reviews-fade-in { visibility: visible; animation: fadeInUp 0.6s ease-in-out; }
.reviews-write-review-btn { background-color: #e21b22; color: #fff; border: none; width: 100%; font-size: 1rem; font-weight: bold; border-radius: 5px; padding: 10px; }

.reviews-single-review {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  position: relative;
}

.reviews-single-review:hover { transform: scale(1.02); }
.reviews-review-icon { align-self: center; max-width: 70px; margin-bottom: 10px; }
.reviews-review-img { width: 100%; border-radius: 50%; }
.reviews-review-content { flex-grow: 1; }
.reviews-review-author { color: #f4854a; font-size: 0.9rem; }
.reviews-author-name { background-color: #000; padding: 3px; border-radius: 5px; color: #fff; }
.reviews-review-date { color: #555; font-size: 0.8rem; }
.reviews-review-rating { margin-top: 10px; }
.reviews-rating-value { color: #000; font-weight: bold; }
.reviews-review-title { font-weight: bold; color: #000; margin-top: 5px; font-size: 1.1rem; }
.reviews-review-body { color: #000; margin: 5px 0; }
.reviews-review-email { font-weight: bold; color: #555; }
.reviews-no-reviews-text { color: #888; text-align: center; font-size: 1.2rem; margin: 20px auto; }

.reviews-read-more-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 0.9rem;
  margin-top: 10px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s;
}

.reviews-read-more-btn:hover { background-color: #0056b3; }

.reviews-single-content {
  padding: 25px 15px;
  transition: .5s;
  margin-bottom: 30px;
  background-color: white;
  border-radius: 12px;
}

.reviews-content-text { padding: 0 10px 0 0; }
.reviews-content-text h4 { font-size: 20px; font-weight: 500; color: #444; padding: 0px 0 4px; }
.reviews-btn-write-review { background: #f4854a; color: white; border: none; width: 100%; font-size: 100%; font-weight: bold; }
.reviews-author-badge { color: white; background-color: black; padding: 5px; border-radius: 5px; }
.reviews-float-right-span { float: right; }
.reviews-star-saver-black { color: black; }
.reviews-title-black { font-weight: bold; color: black; margin-top: 5px; }
.reviews-text-black { color: black; }
.reviews-text-black-bold { font-weight: bold; color: black; }
.reviews-date-yellow { color: #fab504; }
.reviews-reply-box { padding-top: 20px; color: black; }
.reviews-reply-box b { font-weight: bold; }
.reviews-reply-text { text-align: right; }

.reviews-modal-content { background: linear-gradient(107.2deg, rgb(150, 15, 15) 10.6%, rgb(247, 0, 0) 91.1%); }
.reviews-modal-title { color: white; font-size: 20px; font-weight: bold; line-height: 1; }
.reviews-modal-close { color: red; font-size: 30px; margin-right: 15px; }
.reviews-modal-label { color: white; display: block; }
.reviews-modal-file { color: white; }
.reviews-modal-submit { background-color: #FBA707; }
.reviews-modal-clear { background-color: white; color: #A0A0A0; }

.reviews-rating {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  flex-direction: row-reverse;
  position: relative;
}

.reviews-rating > input { display: none; }
.reviews-rating > label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-top: auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: .3s;
}

.reviews-rating > input:checked ~ label,
.reviews-rating > input:checked ~ label ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

/* ========================================
   13. TRACKING
======================================== */

.contact-tracking-details-card { display: none; }
.contact-tracking-progress { position: relative; padding: 20px 0; }
.contact-progress-bar-container { position: relative; }
.contact-progress { height: 8px; background-color: #e9ecef; border-radius: 4px; margin: 30px 0; }
.contact-progress-bar { background-color: #28a745; transition: width 0.5s ease; }
.contact-progress-steps { display: flex; justify-content: space-between; position: absolute; width: 100%; top: -15px; }
.contact-step { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.contact-step-icon { width: 40px; height: 40px; border-radius: 50%; background-color: #e9ecef; color: #6c757d; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-bottom: 8px; border: 3px solid #fff; }
.contact-step-label { font-size: 12px; font-weight: 600; text-align: center; margin-bottom: 4px; }
.contact-step-date { font-size: 11px; color: #6c757d; text-align: center; }
.contact-step.active .contact-step-icon { background-color: #28a745; color: white; }
.contact-step.completed .contact-step-icon { background-color: #28a745; color: white; }
.contact-tracking-table table { width: 100%; border-collapse: collapse; }
.contact-tracking-table th { background-color: #f8f9fa; padding: 10px; text-align: left; border: 1px solid #dee2e6; }
.contact-tracking-table td { padding: 10px; border: 1px solid #dee2e6; }
.contact-tracking-table tr:nth-child(even) { background-color: #f8f9fa; }
.contact-tracking-form input { border-radius: 4px; }
#statusMessage { margin-top: 10px; }
.contact-tracking-details-card .card { border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); }
.contact-tracking-label { font-weight: 700; }
.contact-tracking-success { color: green; }
.contact-tracking-link { background-color: #28a745; padding: 4px; color: #fff; }
.contact-tracking-underline { text-decoration: underline; }

/* Tracking Page Premium Elements */
.tracking-header-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #031b4e, #ff7a16);
}

.tracking-title-heading {
  color: #031b4e;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.tracking-form-wrap {
  max-width: 650px;
}

.tracking-input-icon {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff7a16;
  font-size: 1.1rem;
}

.premium-tracking-input {
  padding-left: 55px !important;
  border-radius: 50px !important;
  border: 2px solid #f1f5f9 !important;
  box-shadow: none !important;
  font-size: 16px !important;
  height: 54px !important;
  background-color: #f8fafc !important;
}

.premium-tracking-btn {
  border-radius: 50px !important;
  background-color: #ff7a16 !important;
  color: white !important;
  font-weight: 700 !important;
  border: none !important;
  transition: all 0.3s !important;
  height: 54px !important;
  min-width: 150px !important;
}

.premium-tracking-btn:hover {
  background-color: #e66900 !important;
}

.premium-clear-btn {
  width: 54px !important;
  height: 54px !important;
  border: 2px solid #f1f5f9 !important;
  color: #64748b !important;
  transition: all 0.3s !important;
  flex-shrink: 0 !important;
}

/* ========================================
   14. GALLERY & BLOG MODULES
======================================== */

/* Gallery */
.gallery-photo-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid #eef1f6 !important;
}

.gallery-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(95, 150, 24, 0.08) !important;
  border-color: #5f9618 !important;
}

.gallery-bg-success-soft { background-color: rgba(25, 135, 84, 0.1) !important; }
.gallery-img-wrapper:hover .gallery-hover-overlay { opacity: 1 !important; }
.gallery-bg-dark-50 { background-color: rgba(0, 0, 0, 0.4) !important; }
.gallery-transition-all { transition: all 0.3s ease-in-out; }
.gallery-img { height: 220px; object-fit: cover; }
.gallery-icon-lg { font-size: 2rem; }
.gallery-badge-sm { font-size: 0.75rem; }
.gallery-title-sm { font-size: 1rem; }

.gallery-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.gallery-zoom-img {
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-zoom-img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 60, 0.55);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.filter-btn.active {
  background-color: #0d6efd !important;
  color: #fff !important;
}

.gallery-video-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid #eef1f6 !important;
}

.gallery-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(95, 150, 24, 0.08) !important;
  border-color: #5f9618 !important;
}

.video-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Blog Modules */
.blog-transition-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-transition-hover:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important; }
.blog-card img { transition: transform 0.4s ease; }
.blog-card:hover img { transform: scale(1.05); }
.blog-title-link { transition: color 0.2s ease; line-height: 1.4; }
.blog-title-link:hover { color: #ffb800 !important; }
.blog-card .btn:hover { background: #052c6e !important; }
.blog-title-highlight { color: #073c91; }
.blog-card-img { height: 240px; object-fit: cover; width: 100%; transition: transform 0.4s ease; }
.blog-date-badge { font-size: 0.9rem; }
.blog-icon-primary { color: #073c91; }
.blog-btn-primary { background: #073c91; color: #fff; transition: background 0.3s ease; }
.blog-post-link-item:hover .blog-post-title { color: #ffb800 !important; }
.blog-post-link-item:hover img { transform: scale(1.05); }
.blog-content-wrapper { line-height: 1.8; font-size: 1.05rem; }
.blog-content-wrapper img { max-width: 100%; height: auto; border-radius: 10px; margin: 15px 0; }
.blog-content-wrapper a { color: #073c91; text-decoration: none; }
.blog-content-wrapper a:hover { text-decoration: underline; }
.blog-details-img { max-height: 450px; object-fit: cover; }
.blog-btn-share { background: rgba(7, 60, 145, 0.1); color: #073c91; border: none; transition: background 0.3s; }
.blog-btn-share:hover { background: rgba(7, 60, 145, 0.2); }
.blog-details-title { color: #073c91; line-height: 1.4; }
.blog-sidebar-sticky { top: 100px; z-index: 1; }
.blog-recent-post-img { width: 80px; height: 80px; object-fit: cover; transition: transform 0.3s ease; }
.blog-post-title { font-size: 0.95rem; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s; }
.blog-border-warning { border-color: #ffb800 !important; }
.blog-icon-lg-primary { font-size: 3rem; color: #073c91; }
.blog-btn-quote { background-color: #ffb800; color: #000; border: none; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-btn-quote:hover { transform: translateY(-2px); box-shadow: 0 8px 15px rgba(255, 184, 0, 0.3); }
.blog-bg-fb { background-color: #1877F2; }
.blog-bg-tw { background-color: #1DA1F2; }
.blog-bg-wa { background-color: #25D366; }

/* ========================================
   15. TEMPLATES & FLOATING ACTIONS
======================================== */

.template-uk-sticky-fixed { animation-duration: 0.3s; }
.template-quickqbtn { position: fixed; z-index: 99; bottom: 1%; left: 1.5%; padding: 5px 0px 0px 7px; height: 35px; width: 155px; color: #fff; background-image: linear-gradient(-20deg, #fc6076 0%, #ff9a44 100%); }
.template-quickqbtn a { color: #fff; font-size: 14px; }
.template-services-carousel-single-item { padding: 5px; }
.template-blinking { animation: template-blinkingText 1.5s infinite; padding: 10px; border-radius: 10px; }

@keyframes template-blinkingText {
  0% { border: 2px solid #f7b1b1; }
  49% { border: 2px solid #ee6262; }
  50% { border: 2px solid #da0202; }
  99% { border: 2px solid #f33535; }
  100% { border: 2px solid #f79393; }
}

@keyframes floatPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes callPulse {
  0% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(13, 110, 253, 0); }
  100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0); }
}

@keyframes quoteShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes ringPhone {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50% { transform: rotate(-15deg); }
  20%, 40% { transform: rotate(15deg); }
  60% { transform: rotate(0deg); }
}

/* Left Side Floating Call Button (Desktop) */
.floating-action-desktop-left {
  position: fixed;
  bottom: 30px;
  left: 24px;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  transition: bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Desktop Floating Action Stack */
.floating-action-desktop {
  position: fixed;
  bottom: 30px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 99999;
  transition: bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Animated Lift to Middle of Right/Left Side when Footer is Reached */
.floating-action-desktop.footer-near {
  bottom: 50% !important;
  transform: translateY(50%) !important;
}

.floating-action-desktop-left.footer-near {
  bottom: 50% !important;
  transform: translateY(50%) !important;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 50px;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #ffffff !important;
}

.float-btn:active { transform: translateY(0) scale(0.98); }

.float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.float-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  animation: floatPulse 2.5s infinite;
}

.float-btn-whatsapp .float-icon { font-size: 20px; }
.float-btn-whatsapp:hover { background: linear-gradient(135deg, #2ae06e 0%, #0e7266 100%); }

.float-online-dot {
  width: 7px;
  height: 7px;
  background-color: #79ffa2;
  border-radius: 50%;
  box-shadow: 0 0 6px #79ffa2;
  display: inline-block;
  margin-left: 3px;
}

.float-btn-call {
  background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
  animation: callPulse 2.5s infinite 1.25s;
}

.float-btn-call:hover .float-icon i {
  animation: ringPhone 1s ease infinite;
}

.float-btn-quote {
  background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
  background-size: 200% auto;
  box-shadow: 0 8px 24px rgba(238, 9, 121, 0.35);
  animation: gentleBounce 3s ease-in-out infinite;
}

.float-btn-quote:hover {
  background-position: right center;
  box-shadow: 0 12px 28px rgba(238, 9, 121, 0.5);
}

.float-quote-badge {
  background: rgba(255, 255, 255, 0.25);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
  margin-left: 2px;
}

.float-scroll-top {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: rgba(11, 28, 60, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.float-scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-scroll-top:hover {
  background: #0d6efd;
  border-color: #0d6efd;
  transform: translateY(-3px);
}

.floating-action-mobile-dock { display: none; }

/* ========================================
   16. FOOTER
======================================== */

.footer-section {
  background-color: #030f26;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
}

.footer-trust-bar {
  background-color: #0b1c3c;
}

.trust-icon-wrap {
  background-color: rgba(13, 110, 253, 0.1) !important; 
  border-color: #0d6efd !important;
}

.trust-divider {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-heading {
  font-size: 16px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #0d6efd;
}

.footer-links li a {
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links li a:hover {
  color: #ffffff !important;
}

.footer-links i.bi-chevron-right {
  font-size: 10px;
  margin-top: 2px;
}

.social-circle {
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-circle:hover {
  background-color: #0d6efd;
  border-color: #0d6efd !important;
  color: #ffffff;
}

.newsletter-banner {
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.newsletter-banner .form-control:focus {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff;
}

.newsletter-banner .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-bar {
  background-color: #030f26;
}

.footer-policy-links a {
  transition: color 0.3s ease;
}

.footer-policy-links a:hover {
  color: #ffffff !important;
}

.footer-contact-list a:hover {
  color: #ffffff !important;
}

/* ========================================
   17. RESPONSIVE / MEDIA QUERIES
======================================== */

@media (max-width: 991.98px) {
  .home-page-slider::before {
    background: linear-gradient(180deg,
      rgba(3, 22, 51, 0.85) 0%,
      rgba(3, 22, 51, 0.40) 50%,
      rgba(3, 22, 51, 0.90) 100%);
  }

  .home-page-slider {
    padding-top: 35px;
    padding-bottom: 25px;
    margin-bottom: 20px;
  }

  .hero-text-col {
    text-align: left !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 15px;
  }

  .hero-lead {
    text-align: left;
    max-width: 480px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .hero-action-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .hero-action-row .hero-btn-primary,
  .hero-action-row .hero-google-badge {
    width: 100% !important;
    justify-content: center !important;
    text-align: center;
  }

  .features-overlap-container {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    margin-top: 25px;
    margin-bottom: -15px;
    z-index: 5;
  }

  .hero-quote-card-container {
    margin-top: 15px;
    padding: 12px 10px 10px 10px;
    border-radius: 16px;
  }

  .hero-quote-header {
    margin-bottom: 10px;
    text-align: left;
    padding-left: 6px;
  }

  .hero-quote-title { font-size: 18px; }
  .hero-quote-subtitle { font-size: 11px; }
  .hero-quote-white-card { border-radius: 10px; }
  .card-body-form { padding: 12px; }

  .form-row-custom {
    display: flex;
    flex-flow: row wrap;
    gap: 8px;
  }

  .half-width-mobile {
    width: calc(50% - 4px) !important;
    flex: none;
  }

  .form-row-custom > :not(.half-width-mobile) {
    width: 100%;
    flex: none;
  }

  .form-control-custom {
    height: 40px;
    font-size: 12.5px;
    padding-left: 30px;
  }

  .form-select-custom {
    height: 40px;
    font-size: 12.5px;
    padding-top: 13px;
    padding-bottom: 1px;
  }

  .btn-submit-custom {
    width: 100%;
    height: 40px;
    font-size: 13px;
  }

  .submit-btn-icon-desktop { display: none; }
  .submit-btn-icon-mobile { display: inline-block; }

  .service-bar-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
  }

  .service-bar-col:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .service-bar-col:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .service-bar-item {
    padding-left: 15px;
    justify-content: flex-start;
  }

  .quote-card { margin-top: 26px; }

  .service-breadcrumbs {
    padding: 40px 0;
    text-align: center;
  }

  .service-breadcrumbs h1 { font-size: 2rem; }
  .service-main-content { padding: 20px; }
  .service-sidebar { margin-top: 30px; position: static; }

  .pm-city-sidebar { position: static; }
  .pm-list-service-page { padding: 50px 0 !important; }
  .pm-city-slider { min-height: auto; background-position: 80% top; }

  .rw-card { flex: 0 0 calc(50% - 10px); min-width: calc(50% - 10px); }

  .wp-icon-wrap { width: 70px; height: 70px; font-size: 22px; }
  .wp-icon-col { width: 80px; }
  .wp-card { padding: 12px 14px; }
  .wp-card-title { font-size: 14px; }

  .aw-img-main img { height: 280px !important; }
  .aw-stat-card { padding: 8px 10px; min-width: 95px; }
  .aw-stat-top { top: 10px; right: 10px; }
  .aw-stat-bottom { bottom: 24px; right: 10px; }
  .aw-exp-badge { left: 12px; bottom: -15px; padding: 8px 14px; }
  .aw-exp-number { font-size: 26px; }
  .aw-exp-text { font-size: 11px; }

  .top-bar-mobile {
    font-size: 11.5px;
    line-height: 1.2;
    padding: 1px 0;
  }
  .top-bar-mobile a {
    font-size: 11.5px;
    display: inline-flex;
    align-items: center;
  }
  .mobile-topbar-stars {
    font-size: 9.5px;
    gap: 1px;
  }
  .top-badge-pill { font-size: 10px; padding: 3px 8px; }
}

@media (max-width: 767.98px) {
  .floating-action-desktop,
  .floating-action-desktop-left { display: none !important; }

  body {
    padding-bottom: 74px !important;
  }

  .floating-action-mobile-dock {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 8px 10px;
    background: rgba(11, 28, 60, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.35);
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .mobile-dock-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 8px;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
  }

  .mobile-dock-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
    border-radius: 10px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.2;
    border: none;
    outline: none;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-height: 48px;
  }

  .mobile-dock-btn:active { transform: scale(0.96); }

  .mobile-dock-icon {
    font-size: 16px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-dock-call {
    background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mobile-dock-call .mobile-dock-icon i {
    animation: ringPhone 2s infinite;
  }

  .mobile-dock-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
  }

  .mobile-dock-whatsapp::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 10px;
    width: 6px;
    height: 6px;
    background: #79ffa2;
    border-radius: 50%;
    box-shadow: 0 0 6px #79ffa2;
  }

  .mobile-dock-quote {
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 800;
    box-shadow: 0 3px 12px rgba(238, 9, 121, 0.4);
    animation: gentleBounce 2.5s infinite;
  }

  .mobile-dock-quote .mobile-dock-icon { font-size: 17px; }

  /* Services Section mobile */
  .services-section { padding: 25px 0; }
  .services-section .section-title { font-size: 24px; }
  .services-section .header-line { width: 60px; }
  .services-section .service-card { padding: 12px 8px; border-radius: 14px; }
  .services-section .service-img-wrap { width: 68px; height: 51px; }
  .services-section .service-title-wrap { padding-left: 5px; }
  .services-section .service-card-title { font-size: 10.5px; }
  .services-section .title-underline { width: 20px; margin-top: 3px; }
  .services-section .service-card:hover .title-underline { width: 35px; }
  .services-section .service-desc { font-size: 10.5px; margin-top: 10px !important; line-height: 1.4; }
  .services-section .decor-top-left { width: 150px; height: 150px; }
  .services-section .decor-bottom-right { width: 150px; height: 150px; }

  /* Why choose mobile */
  .wc-intro-text { font-size: 14px; }
  .wc-card { padding: 1.25rem !important; }
  .wc-card-title { font-size: 16px; }
  .wc-card-text { font-size: 13.5px; }
  .wc-bottom-card { padding: 1.25rem !important; }
  .wc-bottom-text { font-size: 13.5px; }
  .wc-cta-banner { padding: 1.5rem !important; }
  .wc-cta-desc { font-size: 13.5px; }
  .wc-cta-btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 14.5px; }

  .dyn-bc-title { font-size: 22px; }
  .dyn-bc-desc { font-size: 12.5px; }

  .service-breadcrumbs { padding: 36px 0 70px 0; }
  .bc-features { gap: 8px; padding-bottom: 12px; }
  .bc-feature-pill { min-width: calc(50% - 8px); padding: 8px 12px; }
  .bc-wave-wrap svg { height: 48px; }
  .service-details-section { padding-top: 32px; }

  .pm-states-img { height: 140px; }
  .pm-states-display-4 { font-size: 2rem; }

  .pm-city-content-card { padding: 20px 16px; }
  .pm-city-stats-strip { grid-template-columns: repeat(2, 1fr); gap: 12px 0; }
  .pm-city-stat { padding: 8px 10px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .pm-city-stat:nth-child(even) { border-right: none; }
  .pm-city-checklist { grid-template-columns: 1fr; }
  .pm-city-hero-img { max-height: 200px; }

  .contact-track-details-flex { display: flex; margin-bottom: 10px; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 28px; }
  .hero-lead { font-size: 13.5px; }
  .service-bar-text strong { font-size: 12px; }
  .service-bar-text span { font-size: 9.5px; }

  .sw-card { padding: 14px 12px; }
  .sw-icon-wrap { width: 38px; height: 38px; font-size: 18px; }
  .sw-card-title { font-size: 13px; }

  .rw-card { flex: 0 0 90%; min-width: 90%; padding: 18px 16px; }
  .rw-slider-outer { padding: 0 32px; }

  .cl-city-item { padding: 9px 10px; }
  .cl-city-name { font-size: 11.5px; }
  .cl-cta-bar { flex-direction: column; text-align: center; }
  .cl-cta-btn { width: 100%; justify-content: center; }

  .pc-tab-btn { padding: 5px 10px; font-size: 11.5px; }

  .pm-list-card-body { padding: 12px 10px !important; gap: 10px; }
  .pm-list-city-card .pm-list-icon { width: 35px; height: 35px; border-radius: 8px; }
  .pm-list-city-card .pm-list-icon img { width: 24px !important; }
  .pm-list-city-name h5 { font-size: 0.75rem; }
  .pm-list-city-name h5 b { font-size: 0.8rem; }

  .pm-city-feature-pills { flex-direction: column; }
  .bc-feature-pill { min-width: 100%; }

  #quotemodal { padding: 16px; }
  .contact-form-header { padding: 14px 16px; }

  .top-bar-mobile { font-size: 11px; }
  .top-bar-mobile a { font-size: 11px; }
  .top-badge-pill { font-size: 9px; padding: 2px 6px; }
}

/* ========================================
   ABOUT MODULES & LEGAL HELPERS
======================================== */
.about-page-text { font-size: 15px; line-height: 1.75; }
.about-list-text { font-size: 14.5px; line-height: 1.7; }
.about-badge-code { font-size: 12px; }
.about-mission-icon { width: 36px; height: 36px; }
.about-mission-title { font-size: 16px; }
.about-mission-desc { line-height: 1.65; }

/* Testimonials Page */
.testi-header-banner {
  background: linear-gradient(135deg, #0b1c3c 0%, #1565c0 100%);
}
.testi-rating-circle {
  width: 50px;
  height: 50px;
}
.testi-stars-lg { font-size: 15px; }
.testi-stars-sm { font-size: 13px; }
.testi-tag { font-size: 10px; }
.testi-quote-text { line-height: 1.6; }
.testi-avatar-sm {
  width: 34px;
  height: 34px;
  font-size: 12px;
}
.testi-author-name { font-size: 12.5px; }
.testi-author-icon { font-size: 11px; }
.testi-author-loc { font-size: 11px; }
.testi-cta-title { font-size: 15px; }

/* FAQs Page */
.faq-page-body { font-size: 14.5px; line-height: 1.75; }

/* Legal & Sitemap */
.legal-content { font-size: 14px; line-height: 1.75; }
.sitemap-card-title { font-size: 15px; }
.sitemap-branch-btn { font-size: 12px; }

/* Dynamic Breadcrumbs & Sidebar Helpers */
.dyn-bc-container { z-index: 2; }
.dyn-bc-home-icon { font-size: 12px; }
.dyn-bc-help-label { font-size: 11px; font-weight: 500; }
.dyn-bc-help-phone { font-size: 14px; }
.cs-contact-widget {
  background: linear-gradient(135deg, #0b1c3c 0%, #1565c0 100%);
}
.cs-btn-call {
  background-color: #e53935;
  border: none;
  font-size: 14px;
}
.cs-btn-whatsapp {
  background-color: #25D366;
  border: none;
  font-size: 14px;
}

/* ========================================
   CONTACTS MODULE HELPERS
======================================== */
.contact-badge-tag { font-size: 12px; }
.contact-icon-circle { width: 40px; height: 40px; }
.contact-box-title { font-size: 14px; }
.contact-box-sub { font-size: 12px; }
.quote-form-results { font-size: 13px; }
.qte-modal-title { font-size: 18px; }
.qte-modal-subtitle { font-size: 11px; }
.qte-modal-textarea { height: 95px; resize: none; }
.qte-modal-trust { font-size: 11px; }
.rev-modal-hint { font-size: 0.75rem; }

/* ========================================
   GALLERY MODULE HELPERS
======================================== */
.gallery-badge-code { font-size: 11px; }
.gallery-card-heading { font-size: 13.5px; }
.gallery-card-heading-photo { font-size: 14px; }
.gallery-footer-strong { font-size: 13px; }
.gallery-img-box { height: 210px; }
.gallery-modal-close-btn { z-index: 10; }
.gallery-modal-preview-img { max-height: 80vh; object-fit: contain; }

/* ========================================
   HOME MODULES HELPERS
======================================== */
.wp-dot-red { background: #e53935; }
.wp-dot-blue { background: #1565C0; }
.wp-dot-orange { background: #F57C00; }
.wp-dot-green { background: #2E7D32; }

.wp-feat-title { font-size: 14px; color: #0b1c3c; }
.wp-feat-desc { font-size: 12px; }

.rw-stat-star { color: #f4b400; }
.rw-stat-people { color: #0d6efd; }
.rw-stat-shield { color: #43a047; }
.rw-stat-quote { color: #e53935; }
.rw-check-icon { font-size: 12px; }

.faq-widget-img { min-height: 380px; object-fit: cover; }
.faq-widget-help-text { font-size: 12px; line-height: 1.4; }
.faq-feat-title { font-size: 14px; }
.faq-feat-desc { font-size: 12px; }

.pc-note-text { font-size: 12px; }

.aw-img-cover { height: 360px; object-fit: cover; }
.aw-stat-label-text { font-size: 11px; }

/* ========================================
   PACKERS & MOVERS / CITY MODULE HELPERS
======================================== */
.pm-city-slider {
  background: linear-gradient(135deg, #07142c 0%, #0d2b5e 50%, #093c8c 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pm-slider-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.pm-slider-container { z-index: 2; }
.pm-home-icon { font-size: 11px; }
.pm-bc-sep { font-size: 10px; }
.pm-iso-badge {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
}
.pm-hero-title {
  font-size: clamp(26px, 3.8vw, 42px);
  line-height: 1.2;
}
.pm-city-highlight { color: #ff6b00; }
.pm-hero-desc {
  font-size: 15px;
  line-height: 1.6;
  max-width: 620px;
}
.pm-stats-row { max-width: 580px; }
.pm-stat-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.pm-stat-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.pm-stat-sub { font-size: 10px; }
.pm-trust-title {
  font-size: 11px;
  line-height: 1.1;
}
.pm-trust-sub { font-size: 9.5px; }

/* City Sidebar */
.pm-city-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  z-index: 10;
}
.pm-sidebar-widget {
  background: linear-gradient(135deg, #07142c 0%, #0d2b5e 50%, #093c8c 100%);
}
.pm-sidebar-headset {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 22px;
  color: #ffd600;
}
.pm-sidebar-title { font-size: 16px; }
.pm-city-yellow { color: #ffd600; }
.pm-sidebar-sub {
  font-size: 12px;
  line-height: 1.5;
}
.pm-btn-call {
  background-color: #e53935;
  border: none;
  font-size: 13.5px;
}
.pm-btn-whatsapp {
  background-color: #25D366;
  border: none;
  font-size: 13.5px;
}
.pm-btn-quote {
  background-color: #ffd600;
  border: none;
  font-size: 13.5px;
}
.pm-sidebar-section-title { font-size: 14px; }
.pm-sidebar-nav-link {
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s;
}
.pm-sidebar-chevron { font-size: 11px; }
.pm-nearby-badge {
  font-size: 11px;
  font-weight: 500;
}

/* City Reviews & FAQ */
.pm-review-all-btn { font-size: 12px; }
.pm-review-stars { font-size: 12px; }
.pm-review-body { line-height: 1.6; }
.pm-review-avatar {
  width: 32px;
  height: 32px;
  font-size: 11px;
}
.pm-review-author { font-size: 12px; }
.pm-review-verified { font-size: 10px; }
.pm-review-loc { font-size: 10px; }
.pm-faq-body { line-height: 1.65; }

/* City About Section Helpers */
.pm-badge-danger { font-size: 11px; }
.pm-badge-success { font-size: 12px; }
.pm-badge-mono { font-size: 11px; }
.pm-trust-subtext { font-size: 11.5px; }
.pm-service-icon { width: 38px; height: 38px; }
.pm-card-desc { line-height: 1.6; }
.pm-th-min { min-width: 160px; }
.pm-rate-note { font-size: 11px; }
.pm-step-desc { font-size: 12px; line-height: 1.5; }
.pm-quality-text { font-size: 14.5px; }
.pm-guide-list { line-height: 1.5; }
.pm-cta-card {
  background: linear-gradient(135deg, #07142c 0%, #0d2b5e 50%, #093c8c 100%);
}
.pm-cta-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 24px;
  color: #ffd600;
}
.pm-cta-title { font-size: clamp(20px, 3vw, 28px); }
.pm-cta-desc {
  font-size: 14px;
  line-height: 1.6;
  max-width: 540px;
}
.pm-btn-cta-phone {
  background-color: #e53935;
  border: none;
  font-size: 14px;
}
.pm-btn-cta-whatsapp {
  background-color: #25D366;
  border: none;
  font-size: 14px;
}
.pm-btn-cta-quote {
  background-color: #ffd600;
  border: none;
  font-size: 14px;
}

/* ========================================
   REVIEWS MODULE HELPERS
======================================== */
.review-card-thumb {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
  cursor: pointer;
}
.review-admin-reply-box {
  border-left: 3px solid #0056b3;
}
.review-admin-reply-title {
  color: #0056b3;
  font-size: 0.9rem;
  font-weight: bold;
}
.review-admin-reply-text {
  font-size: 0.85rem;
  color: #555;
}
.review-card-meta {
  font-size: 0.75rem;
}
.review-modal-close-btn {
  opacity: 1;
}
.review-modal-full-img {
  max-height: 85vh;
  object-fit: contain;
  max-width: 100%;
}
.reviews-pagination {
  margin-top: 30px;
}
.reviews-page-link-active {
  background: #002446 !important;
  border-color: #002446 !important;
  color: #fff !important;
}

/* ========================================
   SERVICES MODULE UNIFIED REUSABLE CLASSES
======================================== */
.srv-prose {
  font-size: 15px;
  line-height: 1.75;
}
.srv-prose-sm {
  font-size: 14.5px;
  line-height: 1.7;
}
.srv-badge-mono {
  font-size: 12px;
}
.srv-badge-sm {
  font-size: 11px;
}
.srv-feature-title {
  font-size: 14px;
}
.srv-feature-title-sm {
  font-size: 13px;
}
.srv-feature-desc {
  font-size: 12.5px;
}
.srv-feature-desc-sm {
  font-size: 11px;
}
.srv-check-item {
  font-size: 14.5px;
}
.srv-faq-body {
  font-size: 14.5px;
  line-height: 1.7;
}
.srv-contact-item {
  font-size: 14px;
}
.srv-vehicle-desc {
  font-size: 12px;
}

/* ========================================
   TEMPLATE MODULE (HEADER, SLIDER, FOOTER)
======================================== */
/* Slider Features */
.slider-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(226, 36, 36, 0.1);
}
.slider-feature-title {
  font-size: 14px;
}
.slider-feature-desc {
  font-size: 12px;
  line-height: 1.2;
}

/* Navigation Top Bar & Badges */
.top-bar-item-text {
  font-size: 13px;
}
.top-bar-divider {
  color: rgba(255, 255, 255, 0.3);
}
.top-bar-follow-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.mobile-review-star {
  font-size: 13px;
}
.mobile-review-rating {
  font-size: 12px;
  color: var(--text-dark);
}
.mega-review-badge {
  font-size: 11px;
}

/* Footer Section */
.footer-section {
  background: #030f26;
  color: #ffffff;
}
.ftr-trust-icon-wrap {
  width: 36px;
  height: 36px;
  background-color: rgba(13, 110, 253, 0.1);
}
.ftr-trust-icon {
  font-size: 16px;
}
.ftr-trust-title {
  font-size: 12.5px;
}
.ftr-trust-sub {
  font-size: 10.5px;
  line-height: 1.2;
  display: block;
}
.ftr-brand-copy {
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5e1 !important;
}
.ftr-social-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  font-size: 16px;
}
.ftr-contact-icon {
  width: 32px;
  height: 32px;
}
.ftr-contact-i {
  font-size: 14px;
}
.ftr-contact-text,
.ftr-contact-text a {
  font-size: 13px;
  color: #cbd5e1 !important;
}
.ftr-contact-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #cbd5e1 !important;
  font-size: 13.5px;
}
.ftr-contact-link:hover {
  color: #ffffff !important;
}
.footer-links a {
  color: #cbd5e1 !important;
  font-size: 13px;
  padding: 4px 0;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover {
  color: #ffffff !important;
}
.ftr-newsletter-card {
  background-color: #0b1c3c;
}
.ftr-newsletter-icon {
  width: 44px;
  height: 44px;
}
.ftr-newsletter-desc {
  font-size: 13px;
  color: #cbd5e1 !important;
}
.ftr-newsletter-input {
  border-radius: 0 !important;
  color: #ffffff !important;
}
.ftr-newsletter-btn {
  border-radius: 0 !important;
  font-size: 13px;
  min-height: 44px;
}
.ftr-bottom-bar {
  background-color: #030f26;
}
.ftr-bottom-text {
  font-size: 13px;
  color: #cbd5e1 !important;
}
.ftr-policy-link {
  font-size: 13px;
  color: #cbd5e1 !important;
  padding: 4px 6px;
  display: inline-flex;
  align-items: center;
}
.ftr-pay-badge {
  min-width: 40px;
}
.ftr-visa-text {
  line-height: 1;
}
.ftr-mc-wrap {
  line-height: 1;
}
.ftr-mc-circle-red {
  width: 14px;
  height: 14px;
  margin-right: -4px;
  z-index: 2;
}
.ftr-mc-circle-yellow {
  width: 14px;
  height: 14px;
  z-index: 1;
}
.ftr-upi-text {
  font-size: 12px;
  line-height: 1;
}
/* ========================================
   ACCESSIBILITY & TOUCH TARGET ENHANCEMENTS
======================================== */
.top-bar-mobile a {
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  color: #ffffff !important;
}

.top-bar-mobile .text-danger {
  color: #ffc107 !important; /* High contrast amber on dark navy */
}

.hamburger {
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
}

.btn-mobile-review {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   CITY PAGE / PACKERS & MOVERS STYLES
======================================== */
.pm-city-slider {
  background: var(--hero-bg-color, #061a3a);
  background-image: radial-gradient(circle at 80% 50%, #0a2756 0%, #061a3a 60%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.pm-slider-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.pm-iso-badge {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #86efac;
  font-size: 12px;
  font-weight: 600;
}

.pm-hero-title {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.2;
}

.pm-city-highlight {
  color: #ff9a22;
}

.pm-hero-desc {
  color: #e2e8f0 !important;
  font-size: 14.5px;
  line-height: 1.65;
}

.pm-stat-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.pm-stat-header {
  font-size: 12px;
  font-weight: 700;
  color: #fbbf24 !important;
}

.pm-stat-sub {
  font-size: 11px;
  color: #cbd5e1 !important;
}

.pm-trust-title {
  font-size: 12.5px;
}

.pm-trust-sub {
  font-size: 11px;
}

/* ========================================
   VERTICAL QUOTE CARD (quoteform.php)
======================================== */
.vertical-quote-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vqc-header {
  background: linear-gradient(135deg, #0a4ebd 0%, #062f75 100%);
  padding: 16px 20px 12px;
  color: #ffffff;
}

.vqc-icon-wrap {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
}

.vqc-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
}

.vqc-subtitle {
  font-size: 12px;
  color: #e2e8f0;
  margin: 2px 0 0;
}

.vqc-fields {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vqc-float-group {
  position: relative;
}

.vqc-float-group .vqc-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 15px;
  pointer-events: none;
  z-index: 2;
}

.vqc-input {
  width: 100%;
  height: 44px;
  padding: 8px 12px 8px 36px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 13.5px;
  color: #1e293b;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vqc-input:focus {
  border-color: #0a4ebd;
  box-shadow: 0 0 0 3px rgba(10, 78, 189, 0.12);
}

.vqc-label {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  color: #475569;
  font-size: 13px;
  pointer-events: none;
  transition: all 0.2s ease;
  background: #ffffff;
  padding: 0 4px;
}

.vqc-input:focus ~ .vqc-label,
.vqc-input:not(:placeholder-shown) ~ .vqc-label {
  top: 0;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 600;
  color: #0a4ebd;
}

.vqc-select-wrap .vqc-label,
.vqc-label-date {
  display: none;
}

.vqc-submit {
  width: 100%;
  height: 46px;
  background: linear-gradient(90deg, #e22424 0%, #c41c1c 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(226, 36, 36, 0.3);
  transition: all 0.2s ease;
}

.vqc-submit:hover {
  background: #b91c1c;
  transform: translateY(-1px);
}



/* Mobile Sticky Bottom Dock */
.floating-action-mobile-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: #ffffff;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.12);
  border-top: 1px solid #e2e8f0;
  padding: 6px 8px;
}

.mobile-dock-inner {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
}

.mobile-dock-btn {
  flex: 1;
  min-height: 48px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  color: #ffffff !important;
  cursor: pointer;
}

.mobile-dock-call {
  background: #0a4ebd !important;
}

.mobile-dock-whatsapp {
  background: #15803d !important;
}

.mobile-dock-quote {
  background: #b91c1c !important;
}

/* Additional Touch Target and Contrast Optimizations */
.accordion-button {
  min-height: 48px;
}

.pm-review-all-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dyn-bc-nav a,
.dyn-bc-nav span {
  padding: 4px 2px;
}

.social-link {
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pc-tab-btn {
  min-height: 44px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cl-city-item {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
}

.text-muted {
  color: #475569 !important;
}

.text-white-50 {
  color: #cbd5e1 !important;
}



.faq-accordion-header {
  min-height: 48px;
}

/* ========================================
   HIGH CONTRAST RULES FOR AUDIT PERFECTION
======================================== */
/* Rate Chart (chart_table.php) */
.pc-pill-badge {
  background: #e0edff;
  color: #084298 !important;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  display: inline-block;
}

.pc-subtitle {
  color: #334155 !important;
  font-size: 14.5px;
}

.pc-house-tag {
  background: #e0f2fe;
  color: #0369a1 !important;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-right: 6px;
}

.pc-house-tag.bg-info,
span.bg-info.text-white {
  background-color: #0e7490 !important;
  color: #ffffff !important;
}

.pc-price-tag {
  color: #0f172a !important;
  font-weight: 800;
  font-size: 13.5px;
}

.pc-quote-btn {
  background: #b91c1c;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 6px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(185, 28, 28, 0.3);
}

.pc-quote-btn:hover {
  background: #991b1b;
  color: #ffffff !important;
}

.pc-note-text {
  color: #334155 !important;
}

/* City List CTA Bar (city_list.php) */
.cl-cta-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a !important;
}

.cl-cta-desc {
  font-size: 13px;
  color: #334155 !important;
}

.cl-cta-btn {
  background: #b91c1c;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 18px;
  border-radius: 6px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.cl-cta-btn:hover {
  background: #991b1b;
  color: #ffffff !important;
}

/* FAQ Widget (faqs_widget.php) */
.faq-new-badge {
  background: #e0edff;
  color: #084298 !important;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  display: inline-block;
}

.faq-new-subtitle {
  color: #334155 !important;
  font-size: 14.5px;
}

/* Paytm & Footer Pay Badges (footer.php) */
.ftr-paytm-text {
  color: #002970 !important;
  font-size: 12px;
  line-height: 1;
}

/* ========================================
   CITY ABOUT & LANDING PAGE (city_about.php)
======================================== */
.bg-primary-subtle,
span.bg-primary-subtle {
  background-color: #e0edff !important;
}

.text-primary,
.bg-primary-subtle.text-primary,
span.text-primary,
a.text-primary {
  color: #084298 !important;
}

a.text-primary:hover {
  color: #052c65 !important;
}

.bg-success-subtle,
span.bg-success-subtle {
  background-color: #d1fae5 !important;
}

.text-success,
.bg-success-subtle.text-success,
span.text-success,
a.text-success {
  color: #065f46 !important;
}

.text-danger,
span.text-danger,
th.text-danger,
a.text-danger {
  color: #991b1b !important;
}

a.text-danger:hover {
  color: #7f1d1d !important;
}

.text-info,
span.text-info,
a.text-info {
  color: #0e7490 !important;
}

a.text-info:hover {
  color: #155e75 !important;
}

.pm-badge-primary,
.pm-badge-mono {
  background-color: #e0edff !important;
  color: #084298 !important;
  font-weight: 700 !important;
}

.pm-badge-success {
  background-color: #d1fae5 !important;
  color: #065f46 !important;
  font-weight: 700 !important;
}

.pm-badge-danger {
  background-color: #b91c1c !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.btn-danger {
  background-color: #b91c1c !important;
  border-color: #b91c1c !important;
  color: #ffffff !important;
}

.btn-danger:hover {
  background-color: #991b1b !important;
  border-color: #991b1b !important;
}

.btn-success {
  background-color: #15803d !important;
  border-color: #15803d !important;
  color: #ffffff !important;
}

.btn-success:hover {
  background-color: #166534 !important;
  border-color: #166534 !important;
}














