/* ==========================================================================
   SAN ENGINEERING SOLUTION — Professional CSS Stylesheet
   Strict Flat Color Theme: Primary #1261B5 | Secondary #2B2D2F
   Sticky Header | Primary Top Bar | Clean Section Rhythm & Footer
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties & Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Strict Brand Colors */
  --primary-color: #1261B5;
  --primary-hover: #0b4a8e;
  --secondary-color: #2B2D2F;
  --secondary-hover: #1b1c1d;

  /* Neutral Palette */
  --color-white: #FFFFFF;
  --color-light-bg: #EFF5FB;
  --color-card-bg: #FFFFFF;
  --color-border: #E2E8F0;
  --color-border-dark: #3E4245;
  --color-heading: #1F2937;
  --color-body: #374151;
  --color-muted: #6B7280;
  --color-star: #1261B5;

  /* Global Spacing Scale */
  --section-padding: 60px;
  --container-max-width: 1280px;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 18px;

  /* Professional Typography Scale (Inter) */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --fs-h1: 42px;
  --fs-h2: 34px;
  --fs-h3: 20px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-btn: 15px;

  /* Depth Shadows */
  --shadow-sm: 0 2px 8px rgba(18, 97, 181, 0.04);
  --shadow-md: 0 8px 24px rgba(18, 97, 181, 0.08);
  --shadow-lg: 0 16px 36px rgba(18, 97, 181, 0.12);
  --shadow-navbar: 0 4px 20px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-fast: all 0.2s ease-in-out;
  --transition-normal: all 0.3s ease-in-out;
}

/* Responsive Scaling */
@media (max-width: 991px) {
  :root {
    --section-padding: 48px;
    --fs-h1: 34px;
    --fs-h2: 28px;
    --fs-h3: 18px;
  }
}

@media (max-width: 575px) {
  :root {
    --section-padding: 38px;
    --fs-h1: 28px;
    --fs-h2: 24px;
    --fs-h3: 17px;
    --fs-body: 15px;
  }
}

/* --------------------------------------------------------------------------
   2. Reset & Professional Base Typography
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-body);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
}

h2 {
  font-size: var(--fs-h2);
  font-weight: 600;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

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

/* --------------------------------------------------------------------------
   3. Section Background Systems
   -------------------------------------------------------------------------- */
.section-padding {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  position: relative;
}

.compact-section-padding {
  padding-top: 42px;
  padding-bottom: 42px;
  position: relative;
}

/* Hero Architectural Grid Overlay Pattern */
.bg-pattern-grid {
  background-color: var(--color-white);
  background-image:
    linear-gradient(to right, rgba(18, 97, 181, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(18, 97, 181, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* Zebra Section Background Pattern */
.bg-zebra {
  background-color: #EFF5FB;
  background-image: repeating-linear-gradient(-45deg,
      rgba(18, 97, 181, 0.03),
      rgba(18, 97, 181, 0.03) 2px,
      transparent 2px,
      transparent 16px);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.bg-solid-white {
  background-color: var(--color-white);
}

.bg-solid-dark {
  background-color: var(--secondary-color);
  color: var(--color-white);
}

/* Clean Section Headers */
.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 2;
}

.compact-section-padding .section-header {
  margin-bottom: 28px;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(18, 97, 181, 0.08);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
  border: 1px solid rgba(18, 97, 181, 0.2);
}

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: 0;
  color: var(--color-heading);
  font-weight: 600;
}

.bg-solid-dark .section-title {
  color: var(--color-white);
}

/* Custom Buttons */
.btn-san-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-color);
  color: var(--color-white) !important;
  font-family: var(--font-heading);
  font-size: var(--fs-btn);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--primary-color);
  transition: var(--transition-fast);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.btn-san-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-san-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--secondary-color);
  color: var(--color-white) !important;
  font-family: var(--font-heading);
  font-size: var(--fs-btn);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--secondary-color);
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-san-secondary:hover {
  background-color: var(--secondary-hover);
  border-color: var(--secondary-hover);
  color: var(--color-white) !important;
  transform: translateY(-2px);
}

.btn-san-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-white);
  color: var(--primary-color) !important;
  font-family: var(--font-heading);
  font-size: var(--fs-btn);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--primary-color);
  transition: var(--transition-fast);
}

.btn-san-outline:hover {
  background-color: var(--primary-color);
  color: var(--color-white) !important;
  transform: translateY(-2px);
}

.btn-san-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: var(--color-white) !important;
  font-family: var(--font-heading);
  font-size: var(--fs-btn);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--color-white);
  transition: var(--transition-fast);
}

.btn-san-outline-white:hover {
  background-color: var(--color-white);
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. STICKY HEADER & PRIMARY TOP BAR
   -------------------------------------------------------------------------- */
/* STICKY HEADER CONTAINER */
header.sticky-top-header {
  position: -webkit-sticky;
  position: sticky;
  top: -40px;
  z-index: 1040;
  width: 100%;
}

/* Top Utility Bar (Natively scrolls off-screen) */
.top-bar {
  background-color: var(--primary-color);
  color: var(--color-white);
  font-size: var(--fs-small);
  height: 40px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
}

.top-bar a {
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
}

.top-bar a:hover {
  opacity: 0.85;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #FFFFFF;
}

.top-bar-item i {
  color: #FFFFFF;
  opacity: 0.9;
}

/* Main Navbar */
.san-navbar {
  background-color: var(--color-white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: var(--transition-normal);
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 1px solid var(--color-border);
}

.san-navbar.scrolled {
  box-shadow: var(--shadow-navbar);
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}


.brand-logo-container {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.san-navbar.scrolled .brand-logo-img {
  height: 62px;
}

/* Nav Links & Hover Dropdown */
.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  padding: 10px 16px !important;
  position: relative;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

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

/* Desktop Hover Trigger for Services Dropdown */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
  }
}

.navbar-nav .dropdown-menu {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-sm);
  padding: 8px 0;
  margin-top: 8px;
  background-color: var(--color-white);
  overflow: hidden;
}

.navbar-nav .dropdown-item {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-color);
  padding: 10px 22px;
  transition: var(--transition-fast);
}

.navbar-nav .dropdown-item.active {
  background-color: #EFF5FB;
  color: var(--primary-color) !important;
  font-weight: 600;
  border-left: 3px solid var(--primary-color);
  padding-left: 19px;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  background-color: var(--primary-color) !important;
  color: #FFFFFF !important;
  padding-left: 26px;
}



/* Mobile Nav Toggle */
.navbar-toggler {
  border: 2px solid var(--primary-color);
  padding: 6px 10px;
  border-radius: var(--border-radius-sm);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231261B5' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --------------------------------------------------------------------------
   5. Hero Section & Clean Trust Bar Positioning
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-content-col {
  /* padding-top: 32px; */
  padding-bottom: 32px;
}

.hero-title {
  font-size: var(--fs-h1);
  margin-bottom: 18px;
  color: var(--secondary-color);
  font-weight: 700;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-lead {
  font-size: 18px;
  color: var(--color-body);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-carousel-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--color-white);
  outline: 1px solid var(--color-border);
}

/* Hero Carousel Styling */
#heroCarousel .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#heroCarousel .carousel-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#heroCarousel .carousel-item.active {
  display: block;
  opacity: 1;
}

.hero-carousel-img {
  height: 440px;
  object-fit: cover;
  width: 100%;
}

/* Smooth Carousel Cross-Fade Transition */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.9s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  opacity: 0;
}

@media (max-width: 991px) {
  .hero-carousel-img {
    height: 340px;
  }
}

/* REFINED TRUST BAR POSITIONING & HIGH-CONTRAST DESIGN */
.trust-bar {
  background: linear-gradient(135deg, #1261B5 0%, #0B4A8E 100%);
  padding: 34px 0;
  position: relative;
  z-index: 5;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--color-white);
  padding: 20px 22px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  border-color: #FFFFFF;
}

.trust-icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: rgba(18, 97, 181, 0.1);
  color: var(--primary-color);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.trust-icon-box i {
  display: inline-block;
  transition: transform 0.5s ease-in-out;
}

.trust-card:hover .trust-icon-box {
  background-color: var(--primary-color);
  color: var(--color-white);
}

.trust-card:hover .trust-icon-box i {
  transform: rotate(360deg) scale(1.1);
}

.trust-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 2px;
}

.trust-desc {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   6. About Snapshot Section
   -------------------------------------------------------------------------- */
.about-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.about-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(18, 97, 181, 0.08);
  color: var(--primary-color);
  border: 1px solid rgba(18, 97, 181, 0.2);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.about-icon i {
  display: inline-block;
  transition: transform 0.5s ease-in-out;
}

.about-card:hover .about-icon i {
  transform: rotate(360deg) scale(1.1);
}

.about-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.about-card-text {
  font-size: 14px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. Services Grid Section
   -------------------------------------------------------------------------- */
.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.service-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--secondary-color);
}

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

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

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: var(--primary-color);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon-box {
  width: 44px;
  height: 44px;
  background-color: var(--primary-color);
  color: var(--color-white);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-top: -46px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--color-white);
}

.service-title {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-weight: 600;
}

.service-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

.service-title a:hover {
  color: var(--primary-color);
}

.service-desc {
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link i {
  transition: transform 0.2s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   8. Repair by Brand Section
   -------------------------------------------------------------------------- */
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.brand-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  width: calc(16.666% - 14px);
  min-width: 145px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 1;
}

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

.brand-logo-img-card {
  max-height: 85px;
  max-width: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}

@media (max-width: 991px) {
  .brand-card {
    width: calc(25% - 12px);
    min-width: 130px;
  }
}

@media (max-width: 575px) {
  .brand-card {
    width: calc(50% - 10px);
    min-width: 120px;
    height: 84px;
    padding: 10px 12px;
  }

  .brand-logo-img-card {
    max-height: 48px;
  }
}

/* --------------------------------------------------------------------------
   9. Process / How It Works
   -------------------------------------------------------------------------- */
.process-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 30px 22px;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

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

.process-step-num {
  display: none;
}

.process-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(18, 97, 181, 0.08);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px auto;
  border: 2px solid var(--primary-color);
}

.process-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.process-desc {
  font-size: 14px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. Improved Commercial & Residential Partners (Compact Minimum Height)
   -------------------------------------------------------------------------- */
.client-box {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.client-box:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.client-box i {
  color: var(--primary-color);
  font-size: 18px;
}

/* --------------------------------------------------------------------------
   11. Testimonials Section
   -------------------------------------------------------------------------- */
.testimonial-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 28px 24px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.testimonial-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--color-star);
  font-size: 16px;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--color-body);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary-color);
  margin-bottom: 2px;
}

.author-meta {
  font-size: 13px;
  color: var(--color-muted);
}

/* Custom Smooth Mobile Testimonial Slider */
#testimonialMobileCarousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
}

.testimonial-slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  will-change: transform;
}

.testimonial-slide-item {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  padding: 0 4px;
  box-sizing: border-box;
}

/* Custom Smooth Mobile Blog Slider */
#blogMobileCarousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
}

.blog-slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  will-change: transform;
}

.blog-slide-item {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  padding: 0 4px;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   12. Blogs Preview Section
   -------------------------------------------------------------------------- */
.blog-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

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

.blog-img-wrapper {
  height: 200px;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.blog-category {
  background-color: rgba(18, 97, 181, 0.08);
  color: var(--primary-color);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 12px;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary-color);
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 14px;
  margin-bottom: 18px;
  flex-grow: 1;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. CTA Band (Secondary #2B2D2F Dark Strip - Default)
   -------------------------------------------------------------------------- */
.cta-band {
  background-color: var(--secondary-color);
  color: var(--color-white);
  padding: 38px 0;
  border-top: none;
}

.cta-band-title {
  color: var(--color-white);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-band-desc {
  color: #E5E7EB;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  white-space: nowrap;
}

/* Contact Us Page CTA Band with Background Image */
.cta-band.cta-band-image-bg {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 24, 33, 0.9) 0%, rgba(11, 42, 82, 0.4) 100%),
    url('../images/cta-banner-bg.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.35);
}

.cta-band.cta-band-image-bg .cta-band-title {
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.01em;
}

.cta-band.cta-band-image-bg .cta-band-desc {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.cta-btn-fixed-width {
  width: auto;
  min-width: 250px;
  white-space: nowrap;
  justify-content: center;
  text-align: center;
  padding: 12px 28px;
}

/* --------------------------------------------------------------------------
   14. Contact Us Section
   -------------------------------------------------------------------------- */
.contact-form-wrapper {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.form-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  padding: 11px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  color: var(--secondary-color);
  background-color: var(--color-white);
  transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(18, 97, 181, 0.15);
  outline: none;
}

.contact-info-card {
  background-color: #d9e5f1;
  background-image: repeating-linear-gradient(-45deg,
      rgba(18, 97, 181, 0.03),
      rgba(18, 97, 181, 0.03) 2px,
      transparent 2px,
      transparent 16px);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-color);
  color: var(--color-white);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-item-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.contact-item-text {
  font-size: 14px;
  color: #212529;
  margin-bottom: 0;
}

.contact-guarantee-box {
  background-color: var(--color-white);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-sm);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  box-shadow: var(--shadow-sm);
}

.contact-guarantee-icon {
  font-size: 30px;
  color: var(--primary-color);
}

.contact-guarantee-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary-color);
  margin-bottom: 2px;
}

.contact-guarantee-desc {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 0;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   15. REFINED FOOTER (Get In Touch Column Replacement)
   -------------------------------------------------------------------------- */
.san-footer {
  background-color: var(--secondary-color);
  color: #D1D5DB;
  padding-top: 55px;
  padding-bottom: 30px;
  border-top: 1px solid var(--color-border-dark);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 5px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
  /* color: #9CA3AF; */
  color: #D1D5DB;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  /* color: #9CA3AF; */
  color: #D1D5DB;
  font-size: 14px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

/* Footer Contact Info List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #D1D5DB;
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: #D1D5DB;
}

.footer-contact-list a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background-color: #374151;
  color: var(--color-white);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-fast);
}

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

.footer-bottom-bar {
  border-top: 1px solid #374151;
  margin-top: 40px;
  padding-top: 24px;
  font-size: 14px;
  /* color: #9CA3AF; */
}

.footer-bottom-bar a {
  color: #9CA3AF;
}

.footer-bottom-bar a:hover {
  color: var(--primary-color);
}

/* --------------------------------------------------------------------------
   16. IntersectionObserver Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Modal Styling Overrides */
.modal-content {
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  border-bottom: 1px solid var(--color-border);
  background-color: #EFF5FB;
}

.modal-footer {
  border-top: 1px solid var(--color-border);
}

/* --------------------------------------------------------------------------
   17. Floating Call & WhatsApp Action Buttons
   -------------------------------------------------------------------------- */
.floating-cta-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #FFFFFF !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-btn i {
  font-size: 22px;
}

.floating-btn-call {
  background: linear-gradient(135deg, #1261B5 0%, #0B4A8E 100%);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.floating-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: 2px solid rgba(255, 255, 255, 0.35);
  animation: whatsappPulse 2.5s infinite;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
  color: #FFFFFF !important;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

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

@media (max-width: 575px) {
  .floating-cta-container {
    bottom: 18px;
    right: 18px;
    gap: 10px;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
  }

  .floating-btn i {
    font-size: 19px;
  }
}

/* --------------------------------------------------------------------------
   13. Custom Failsafe Popup Modal System (Butter Smooth Animation)
   -------------------------------------------------------------------------- */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 16px;
  will-change: opacity, visibility;
}

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

.custom-modal-container {
  background-color: #FFFFFF;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  transform: scale(0.92) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
  will-change: transform;
}

.custom-modal-overlay.active .custom-modal-container {
  transform: scale(1) translateY(0);
}

.custom-modal-header {
  background-color: var(--primary-color);
  padding: 18px 24px;
  color: #FFFFFF;
}

.custom-modal-header .modal-title {
  color: #FFFFFF;
}

.btn-cta-call {
  border-width: 2px !important;
}

.footer-dev-link {
  text-decoration: none;
  color: #FFFFFF;
  transition: var(--transition-fast);
}

.footer-dev-link:hover {
  color: var(--color-star);
}

/* --------------------------------------------------------------------------
   18. Inner Page Hero Banner & Breadcrumbs
   -------------------------------------------------------------------------- */
.page-hero-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 42, 82, 0.6) 0%, rgba(18, 32, 54, 0.6) 100%),
              url('../images/contact-banner-bg.jpg') no-repeat center 30%;
  background-size: cover;
  background-attachment: scroll;
  padding: 85px 0 75px 0;
}

.page-hero-title {
  font-size: var(--fs-h1);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.02em;
}

.page-hero-title span {
  color: #58A6FF;
}

.page-hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

.custom-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  padding: 8px 22px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
}

.custom-breadcrumb a {
  color: #4B5563;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.custom-breadcrumb .separator {
  color: #9CA3AF;
  font-size: 12px;
}

.custom-breadcrumb .active-crumb {
  color: var(--primary-color);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   19. High-End Contact Quick Connect Feature Cards
   -------------------------------------------------------------------------- */
.contact-feature-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 22px 24px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(18, 97, 181, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}

.contact-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(18, 97, 181, 0.12);
  border-color: var(--primary-color);
  background-color: #FFFFFF;
}

.feature-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.feature-card-icon.icon-blue {
  background-color: var(--primary-color);
  box-shadow: 0 4px 14px rgba(18, 97, 181, 0.22);
}

.feature-card-icon.icon-green {
  background-color: #25D366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.22);
}

.feature-card-icon.icon-dark {
  background-color: var(--secondary-color);
  box-shadow: 0 4px 14px rgba(43, 45, 47, 0.2);
}

.contact-feature-card:hover .feature-card-icon {
  transform: scale(1.08) rotate(4deg);
}

.feature-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.feature-card-tag {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748B;
  margin-bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.live-dot.dot-blue {
  background-color: #1261B5;
  box-shadow: 0 0 0 2.5px rgba(18, 97, 181, 0.2);
}

.live-dot.dot-green {
  background-color: #25D366;
  box-shadow: 0 0 0 2.5px rgba(37, 211, 102, 0.25);
  animation: whatsappPulse 2.5s infinite;
}

.live-dot.dot-dark {
  background-color: #2B2D2F;
  box-shadow: 0 0 0 2.5px rgba(43, 45, 47, 0.2);
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 3px;
  line-height: 1.3;
}

.feature-card-action {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-card-action.text-whatsapp {
  color: #128C7E;
}

.feature-card-action i {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.contact-feature-card:hover .feature-card-action i {
  transform: translateX(4px);
}

@media (max-width: 575px) {
  .contact-feature-card {
    padding: 18px 20px;
    gap: 14px;
  }
  .feature-card-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .feature-card-title {
    font-size: 16px;
  }
  .feature-card-action {
    font-size: 13px;
  }
}

/* --------------------------------------------------------------------------
   20. Single Map Location Card (Contact Us Page)
   -------------------------------------------------------------------------- */
.map-container-custom {
  max-width: 1360px;
  margin: 0 auto;
}

.single-map-card {
  background-color: var(--color-white);
  border-radius: 20px;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 12px 32px -4px rgba(18, 97, 181, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.single-map-card:hover {
  box-shadow: 0 20px 40px -6px rgba(18, 97, 181, 0.12), 0 6px 16px rgba(0, 0, 0, 0.04);
  border-color: rgba(18, 97, 181, 0.3);
}

.single-map-frame {
  width: 100%;
  height: 350px;
  background-color: #f1f5f9;
}

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

@media (max-width: 768px) {
  .single-map-card {
    border-radius: 14px;
  }
  .single-map-frame {
    height: 280px;
  }
}

/* --------------------------------------------------------------------------
   21. FAQ Accordion Component (San Theme)
   -------------------------------------------------------------------------- */
.san-accordion .accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--color-white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.san-accordion .accordion-item:hover {
  border-color: rgba(18, 97, 181, 0.35);
}

.san-accordion .accordion-button {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  background-color: var(--color-white);
  padding: 18px 22px;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.san-accordion .accordion-button:not(.collapsed) {
  background-color: #EFF5FB;
  color: var(--primary-color);
  box-shadow: none;
}

.san-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(18, 97, 181, 0.15);
  border-color: transparent;
}

.san-accordion .accordion-collapse.collapse:not(.show) {
  display: none;
}

.san-accordion .accordion-collapse.collapse.show {
  display: block;
  animation: accordionSlideIn 0.25s ease-out;
}

@keyframes accordionSlideIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.san-accordion .accordion-body {
  padding: 18px 22px;
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.65;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-white);
}

/* --------------------------------------------------------------------------
   21a. Service Quick Navigation Pill Buttons (Single Row)
   -------------------------------------------------------------------------- */
.service-nav-bar {
  background-color: var(--color-white);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 10px rgba(18, 97, 181, 0.04);
  position: relative;
  overflow: hidden;
}

.service-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  padding: 6px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.service-marquee-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: serviceMarqueeScroll 28s linear infinite;
  will-change: transform;
}

.service-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes serviceMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.service-nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  max-width: 100%;
}

.service-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background-color: #F8FAFC;
  color: #334155;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 40px;
  border: 1.5px solid #E2E8F0;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.service-nav-btn i {
  font-size: 18px;
  color: var(--primary-color);
  transition: color 0.2s ease;
}

.service-nav-btn:hover {
  background-color: #EFF6FF;
  border-color: var(--primary-color);
  color: var(--primary-color) !important;
  box-shadow: 0 4px 14px rgba(18, 97, 181, 0.12);
}

.service-nav-btn:hover i {
  color: var(--primary-color);
}

.service-nav-btn.active {
  background: var(--primary-color, #1261B5);
  border-color: var(--primary-color, #1261B5);
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(18, 97, 181, 0.25);
}

.service-nav-btn.active:hover {
  background: #0b4a8e;
  border-color: #0b4a8e;
  color: #FFFFFF !important;
}

.service-nav-btn.active i {
  color: #FFFFFF !important;
}





/* --------------------------------------------------------------------------
   21b. About Us Custom Page Components
   -------------------------------------------------------------------------- */
.about-lead-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-body);
}

.about-body-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-body);
}

.about-img-showcase {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
  outline: 1px solid var(--color-border);
}

.about-showcase-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.experience-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, #1261B5 0%, #0B4A8E 100%);
  color: #FFFFFF;
  padding: 16px 20px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.experience-badge-icon {
  font-size: 32px;
  line-height: 1;
  color: #FFD700;
}

.experience-badge-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2px;
}

.experience-badge-subtitle {
  font-size: 13px;
  opacity: 0.9;
  font-weight: 500;
}

.about-feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about-feature-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(18, 97, 181, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
}

.value-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 32px 26px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.value-card:hover::before {
  opacity: 1;
}

.value-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.value-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-md);
  background-color: rgba(18, 97, 181, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  margin-bottom: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.value-card:hover .value-card-icon {
  background-color: var(--primary-color);
  color: var(--color-white);
}

.value-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0;
}

.value-card-desc {
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.65;
  margin: 0;
}

/* --------------------------------------------------------------------------
   21c. Advantage Cards (Why Choose Us)
   -------------------------------------------------------------------------- */
.advantage-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 30px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(18, 97, 181, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(18, 97, 181, 0.1);
  border-color: var(--primary-color);
}

.advantage-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--border-radius-md);
  background-color: rgba(18, 97, 181, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.advantage-card:hover .advantage-icon-box {
  background-color: var(--primary-color);
  color: var(--color-white);
  transform: scale(1.08);
}

.advantage-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.35;
}

.advantage-desc {
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.65;
  margin: 0;
}

.process-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 30px 22px;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

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

.process-number {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: rgba(18, 97, 181, 0.12);
  line-height: 1;
}

.process-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(18, 97, 181, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 18px auto;
  transition: all 0.3s ease;
}

.process-card:hover .process-icon-box {
  background-color: var(--primary-color);
  color: #FFFFFF;
  transform: scale(1.08);
}

.process-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.process-card-desc {
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .about-showcase-img {
    height: 300px;
  }
  .about-feature-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .experience-floating-badge {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   21d. Pricing & Service Packages Cards
   -------------------------------------------------------------------------- */
.price-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(18, 97, 181, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(18, 97, 181, 0.12);
  border-color: var(--primary-color);
}

.price-card.featured-price-card {
  border: 2px solid var(--primary-color);
  box-shadow: 0 8px 25px rgba(18, 97, 181, 0.12);
}

.price-popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 30px;
}

.price-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.price-subtitle {
  font-size: 13.5px;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.price-amount-box {
  background-color: #F8FAFC;
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
}

.price-starting-label {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.price-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-body);
  margin-bottom: 10px;
  line-height: 1.5;
}

.price-feature-item i {
  color: #10B981;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   21e. Dedicated Service Landing Page Hero & Modern Components
   -------------------------------------------------------------------------- */
.service-landing-hero {
  background: linear-gradient(180deg, #EFF5FB 0%, #FFFFFF 100%);
  padding: 50px 0 45px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.service-landing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(to right, rgba(18, 97, 181, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(18, 97, 181, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.service-hero-content {
  position: relative;
  z-index: 2;
}

.service-breadcrumb-bar {
  margin-bottom: 14px;
}

.service-hero-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.22;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.service-hero-title span {
  color: var(--primary-color);
}

.service-hero-desc {
  font-size: 16px;
  color: var(--color-body);
  line-height: 1.65;
  margin-bottom: 22px;
}

.service-trust-matrix {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.trust-matrix-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.trust-matrix-chip i {
  color: var(--primary-color);
  font-size: 14px;
}

.service-hero-showcase {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: visible;
}

.service-hero-img-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(18, 97, 181, 0.12);
  border: 4px solid #FFFFFF;
}

.service-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.floating-hero-badge {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.floating-hero-badge.badge-top-left {
  top: -16px;
  left: -16px;
}

.floating-hero-badge.badge-bottom-right {
  bottom: -16px;
  right: -16px;
}

.floating-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: rgba(18, 97, 181, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.floating-badge-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.2;
}

.floating-badge-subtitle {
  font-size: 11.5px;
  color: var(--color-muted);
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   21f. AC Appliance Types Cards Grid
   -------------------------------------------------------------------------- */
.ac-type-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(18, 97, 181, 0.04);
  transition: all 0.3s ease;
  position: relative;
}

.ac-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(18, 97, 181, 0.1);
  border-color: var(--primary-color);
}

.ac-type-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EFF5FB 0%, #E0EDFC 100%);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(18, 97, 181, 0.15);
  transition: all 0.3s ease;
}

.ac-type-card:hover .ac-type-icon {
  background: var(--primary-color);
  color: #FFFFFF;
  transform: scale(1.08);
}

.ac-type-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.ac-type-desc {
  font-size: 13.5px;
  color: var(--color-body);
  line-height: 1.55;
  margin-bottom: 16px;
}

.ac-type-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  flex-grow: 1;
}

.ac-type-checklist li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.ac-type-checklist li i {
  color: var(--primary-color);
  font-size: 14px;
}

.ac-type-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: auto;
}

.ac-type-cta:hover {
  color: var(--primary-hover);
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   21g. Problem Diagnosis & Solutions Cards
   -------------------------------------------------------------------------- */
.problem-card-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 22px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.problem-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(18, 97, 181, 0.09);
  border-color: rgba(18, 97, 181, 0.3);
}

.problem-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #DC2626;
  background-color: #FEF2F2;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
  width: fit-content;
}

.problem-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.problem-desc {
  font-size: 13.5px;
  color: var(--color-body);
  line-height: 1.55;
  margin-bottom: 14px;
}

.solution-box {
  background-color: #F8FAFC;
  border-left: 3px solid var(--primary-color);
  padding: 10px 12px;
  border-radius: 0 8px 8px 0;
  margin-top: auto;
}

.solution-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  display: block;
  margin-bottom: 2px;
}

.solution-text {
  font-size: 12.5px;
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 991.98px) {
  .service-hero-title {
    font-size: 28px;
  }
  .floating-hero-badge {
    display: none;
  }
  .service-hero-img {
    height: 280px;
  }
}

/* --------------------------------------------------------------------------
   21e. Compact Appliance Category Brand Cards (.category-brand-card)
   -------------------------------------------------------------------------- */
.category-brand-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(18, 97, 181, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.category-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(18, 97, 181, 0.1);
  border-color: rgba(18, 97, 181, 0.3);
}

.category-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.category-brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EFF5FB 0%, #E0EDFC 100%);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid rgba(18, 97, 181, 0.16);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(18, 97, 181, 0.08);
  transition: all 0.3s ease;
}

.category-brand-card:hover .category-brand-icon {
  background: var(--primary-color);
  color: #FFFFFF;
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 6px 16px rgba(18, 97, 181, 0.25);
}

.category-header-info {
  flex-grow: 1;
  min-width: 0;
}

.category-type-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  background: rgba(18, 97, 181, 0.08);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(18, 97, 181, 0.18);
}

.category-brand-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 3px;
  line-height: 1.3;
}

.category-brand-subtitle {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.category-brand-subtitle i {
  color: var(--primary-color);
  font-size: 11px;
}

.category-quick-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #F8FAFC;
  border: 1px solid var(--color-border);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  text-decoration: none;
  transition: all 0.25s ease;
}

.category-brand-card:hover .category-quick-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #FFFFFF;
  transform: translate(2px, -2px);
  box-shadow: 0 4px 12px rgba(18, 97, 181, 0.25);
}

.category-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
  margin-bottom: 14px;
  background-color: #F8FAFC;
  border: 1px solid #E9EFF6;
  border-radius: 10px;
  padding: 12px 14px;
}

.cat-highlight-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-color);
}

.cat-highlight-item i {
  color: var(--primary-color);
  font-size: 14px;
  flex-shrink: 0;
}

.category-brand-desc {
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.category-brands-container {
  background-color: #FAFCFE;
  border: 1px solid #E9EFF6;
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: auto;
  margin-bottom: 16px;
}

.brand-pills-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.brand-pills-header i {
  color: var(--primary-color);
  margin-right: 4px;
}

.brand-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.brand-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background-color: #FFFFFF;
  border: 1px solid #CBD5E1;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
  user-select: none;
  cursor: default;
}

.brand-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: inline-block;
  transition: background-color 0.2s ease;
}

.brand-pill-tag:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(18, 97, 181, 0.2);
}

.brand-pill-tag:hover .brand-dot {
  background-color: #FFFFFF;
}

.category-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 14px;
  border-top: 1px dashed #E2E8F0;
  margin-top: auto;
}

.category-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

.category-service-btn:hover {
  color: var(--primary-hover);
  transform: translateX(4px);
}

.category-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #FFFFFF;
  background-color: var(--secondary-color);
  border: none;
  padding: 7px 15px;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.category-book-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(18, 97, 181, 0.25);
}

@media (max-width: 575.98px) {
  .category-brand-card {
    padding: 18px 15px;
  }
  .category-brand-title {
    font-size: 16px;
  }
  .category-highlights-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 12px;
  }
  .category-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .category-book-btn {
    justify-content: center;
    width: 100%;
    padding: 9px 16px;
  }
  .category-service-btn {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}



/* --------------------------------------------------------------------------
   22. Master Mobile Responsiveness & Zero Horizontal Overflow System
   -------------------------------------------------------------------------- */


/* Tablet & Mobile Breakpoint (<= 991px) */
@media (max-width: 991.98px) {
  /* Prevent Any Layout Overflow */
  .container,
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .row > * {
    padding-left: 8px;
    padding-right: 8px;
  }

  /* Sticky Header Adjustments */
  header.sticky-top-header {
    top: 0;
  }

  .brand-logo-img {
    height: 54px;
  }

  /* Mobile Hamburger Dropdown Menu */
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 16px 20px 20px 20px;
    margin-top: 12px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  }

  .navbar-collapse:not(.show):not(.collapsing) {
    display: none !important;
  }

  .navbar-nav .nav-link {
    padding: 12px 6px !important;
    border-bottom: 1px solid #F1F5F9;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .dropdown-menu.show {
    display: block !important;
    border: 1px solid #E2E8F0;
    background-color: #F8FAFC;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
    border-radius: var(--border-radius-sm);
    padding: 6px 0;
    margin: 6px 0 10px 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .navbar-nav .dropdown-item {
    padding: 9px 18px;
    font-size: 13.5px;
  }

  #nav-book-cta {
    width: 100%;
    margin-top: 14px;
    padding: 12px 16px;
    justify-content: center;
  }

  /* Hero Section */
  .hero-section {
    padding: 40px 0 30px 0;
  }

  .hero-content-col {
    padding-bottom: 20px;
    text-align: center;
  }

  .eyebrow-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 15.5px;
    margin-bottom: 22px;
  }

  .hero-btn-group {
    justify-content: center;
  }

  .hero-carousel-container {
    margin-top: 10px;
  }

  .hero-carousel-img {
    height: 320px;
  }

  /* CTA Band */
  .cta-band {
    padding: 34px 0;
    text-align: center;
  }

  .cta-band .text-start {
    text-align: center !important;
  }

  .cta-band-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .cta-band-desc {
    font-size: 15px;
    white-space: normal !important;
    margin-bottom: 12px;
  }

  .cta-band .align-items-lg-end {
    align-items: center !important;
  }

  .cta-btn-fixed-width {
    width: 100% !important;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Contact & Forms */
  .contact-form-wrapper,
  .contact-info-card {
    padding: 24px 20px;
  }

  .contact-guarantee-desc {
    white-space: normal !important;
  }

  /* Inner Page Hero & Service Navigation */
  .page-hero-banner {
    padding: 42px 0 36px 0;
  }

  .service-nav-bar {
    padding: 14px 0;
  }

  .service-nav-btn {
    font-size: 13.5px;
    padding: 8px 15px;
  }
}


/* Small Smartphone Breakpoint (<= 575.98px) */
@media (max-width: 575.98px) {
  /* Ultra-Safe Container Padding */
  .container,
  .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Section Spacing & Headers */
  .section-padding {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 22px;
    line-height: 1.28;
  }

  .eyebrow-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  /* Hero Section Mobile Polish */
  .hero-section {
    padding: 28px 0 20px 0;
  }

  .hero-title {
    font-size: 24px;
    letter-spacing: -0.01em;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .hero-btn-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-btn-group .btn-san-primary,
  .hero-btn-group .btn-san-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
  }

  /* Action Button Row - Single Row on Mobile */
  .action-btn-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100%;
  }

  .action-btn-row .btn-san-primary,
  .action-btn-row .btn-san-secondary {
    flex: 1 1 50% !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 10px 6px !important;
    font-size: 12.5px !important;
    gap: 5px !important;
    white-space: nowrap !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .action-btn-row .btn-san-primary i,
  .action-btn-row .btn-san-secondary i {
    font-size: 13px !important;
  }


  .hero-carousel-img {
    height: 220px;
  }

  /* 2x2 Trust Metrics Grid */
  .trust-bar {
    padding: 18px 0;
  }

  .trust-card {
    padding: 12px 10px;
    gap: 8px;
    border-radius: 10px;
  }

  .trust-icon-box {
    width: 36px;
    height: 36px;
    font-size: 17px;
    border-radius: 6px;
  }

  .trust-title {
    font-size: 13.5px;
    font-weight: 700;
  }

  .trust-desc {
    font-size: 11px;
    line-height: 1.2;
  }

  /* Service Cards */
  .service-img-wrapper {
    height: 165px;
  }

  .service-body {
    padding: 16px;
  }

  .service-title {
    font-size: 17px;
  }

  .service-desc {
    font-size: 13.5px;
    margin-bottom: 14px;
  }

  /* About Snapshot Cards */
  .about-card {
    padding: 18px 16px;
  }

  .about-card-title {
    font-size: 16.5px;
  }

  .about-card-text {
    font-size: 13.5px;
  }

  /* Process Cards */
  .process-card {
    padding: 20px 14px;
  }

  .process-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
    margin-bottom: 14px;
  }

  .process-title {
    font-size: 16px;
  }

  .process-desc {
    font-size: 13px;
  }

  /* Brand Cards (2-Column Safe Grid) */
  .brand-grid {
    gap: 10px;
  }

  .brand-card {
    width: calc(50% - 6px);
    min-width: 0;
    height: 76px;
    padding: 8px 10px;
  }

  .brand-logo-img-card {
    max-height: 55px;
  }

  /* Commercial Client Boxes */
  .client-box {
    padding: 10px 8px;
    font-size: 12px;
    gap: 5px;
  }

  .client-box i {
    font-size: 15px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 22px 18px;
    min-height: 220px;
  }

  .testimonial-quote {
    font-size: 13.5px;
    line-height: 1.55;
  }

  /* Blogs */
  .blog-img-wrapper {
    height: 165px;
  }

  .blog-body {
    padding: 16px;
  }

  .blog-title {
    font-size: 16px;
  }

  .blog-excerpt {
    font-size: 13px;
  }

  /* CTA Band */
  .cta-band-title {
    font-size: 18px;
  }

  .cta-band-desc {
    font-size: 13.5px;
  }

  /* Contact Form Wrapper */
  .contact-form-wrapper {
    padding: 18px 14px;
  }

  .contact-info-card {
    padding: 18px 14px;
  }

  .contact-item {
    gap: 12px;
    margin-bottom: 18px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .contact-item-title {
    font-size: 15px;
  }

  .contact-item-text {
    font-size: 13px;
  }

  /* Footer */
  .san-footer {
    padding-top: 36px;
    padding-bottom: 20px;
  }

  .footer-logo-img {
    height: 58px;
  }

  .footer-desc {
    font-size: 13px;
  }

  .footer-heading {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-links a,
  .footer-contact-list li {
    font-size: 13px;
  }

  .footer-bottom-bar {
    margin-top: 24px;
    padding-top: 16px;
    font-size: 12.5px;
    text-align: center;
  }

  /* Floating Buttons */
  .floating-cta-container {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
  }

  .floating-btn i {
    font-size: 18px;
  }

  /* Modal Dialog */
  .custom-modal-container {
    max-width: 94vw;
    border-radius: 12px;
  }

  .custom-modal-container .modal-header {
    padding: 14px 18px !important;
  }

  .custom-modal-container .modal-body {
    padding: 16px !important;
  }

  /* Inner Page Hero & Breadcrumbs */
  .page-hero-banner {
    padding: 30px 0 24px 0;
  }

  .page-hero-title {
    font-size: 26px;
  }

  .custom-breadcrumb {
    font-size: 12px;
    padding: 6px 14px;
  }

  /* Service Spotlight Mobile */
  .service-spec-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-visual-img {
    height: 240px;
  }

  .service-visual-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   Service Page Enhancements (Overview, Points & Badges)
   -------------------------------------------------------------------------- */

/* Service Points List */
.service-points-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.service-point-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  transition: all 0.25s ease;
}

.service-point-item:hover {
  background: #FFFFFF;
  border-color: #BFDBFE;
  box-shadow: 0 6px 18px rgba(18, 97, 181, 0.08);
  transform: translateY(-2px);
}

.service-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  color: var(--primary-color, #1261B5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.service-point-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 3px;
}

.service-point-text {
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Service Clean Showcase Image & Floating Badges */
.service-clean-img-box {
  position: relative;
  border-radius: 20px;
  padding: 8px;
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
  border: 1px solid #E2E8F0;
  box-shadow: 0 16px 36px rgba(18, 97, 181, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-clean-img-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  flex: 1;
  display: flex;
}

.service-clean-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.service-clean-img-box:hover .service-clean-img {
  transform: scale(1.02);
}

/* Floating Hero Badges */
.floating-hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(11, 25, 44, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 3;
  animation: floatSubtle 4s ease-in-out infinite;
}

.badge-top-left {
  top: 24px;
  left: -12px;
}

.badge-bottom-right {
  bottom: 24px;
  right: -12px;
  animation-delay: 2s;
}

.floating-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #EFF6FF;
  color: var(--primary-color, #1261B5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.floating-badge-title {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
}

.floating-badge-subtitle {
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
}

@keyframes floatSubtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* AC Type Cards */
.ac-type-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.ac-type-card:hover {
  border-color: #BFDBFE;
  box-shadow: 0 14px 30px rgba(18, 97, 181, 0.1);
  transform: translateY(-4px);
}

.ac-type-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  color: var(--primary-color, #1261B5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.ac-type-title {
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.ac-type-desc {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.ac-type-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #334155;
}

.ac-type-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ac-type-checklist li i {
  color: #10B981;
  font-size: 15px;
}

.ac-type-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-color, #1261B5);
  text-decoration: none;
  padding-top: 14px;
  border-top: 1px dashed #E2E8F0;
  transition: color 0.2s ease;
}

.ac-type-cta:hover {
  color: #084298;
}

/* Action button row */
.action-btn-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .service-clean-img-box {
    height: auto;
  }
  .service-clean-img {
    height: 320px;
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .service-clean-img {
    height: 280px;
    min-height: 280px;
  }
}

/* ==========================================================================
   AC REPAIR PAGE — OPEN EDITORIAL HVAC SHOWCASE (NO CARDS / CLEAN FLOW)
   ========================================================================== */
.ac-editorial-section {
  padding-top: 50px;
  padding-bottom: 60px;
  background: #FFFFFF;
  position: relative;
  border-bottom: 1px solid #E2E8F0;
}

.ac-editorial-content {
  position: relative;
}

/* Category Eyebrow Tag */
.ac-editorial-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1261B5;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.ac-editorial-title {
  font-size: 32px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.ac-editorial-lead {
  font-size: 15px;
  line-height: 1.6;
}

/* Short Technical Breakdown (2 Per Row — Open Minimalist Flow) */
.ac-short-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
}

.ac-short-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #E2E8F0;
}

.ac-linear-num {
  font-size: 13px;
  font-weight: 800;
  color: #1261B5;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.ac-linear-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 2px;
  line-height: 1.3;
  white-space: nowrap;
}

.ac-linear-desc {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 0;
  white-space: nowrap;
}

/* Inline Trust Metrics (Open Minimalist Bar) */
.ac-inline-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
}

.ac-metric-cell {
  display: flex;
  flex-direction: column;
}

.ac-metric-val {
  font-size: 18px;
  font-weight: 800;
  color: #1261B5;
  line-height: 1.1;
}

.ac-metric-val small {
  font-size: 13px;
  font-weight: 600;
  color: #0284C7;
  margin-left: 2px;
}

.ac-metric-lbl {
  font-size: 11.5px;
  color: #64748B;
  font-weight: 500;
  margin-top: 2px;
}

.ac-metric-divider {
  width: 1px;
  height: 26px;
  background: #CBD5E1;
}

/* Right Stage Visual */
.ac-open-visual-wrap {
  position: relative;
}

.ac-open-img-holder {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(18, 97, 181, 0.1);
  border: 1px solid #E2E8F0;
}

.ac-open-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.ac-img-bottom-strip {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.fs-7 {
  font-size: 13.5px;
}

.fs-8 {
  font-size: 11.5px;
}

.ac-brands-open-strip {
  font-size: 12px;
  color: #64748B;
  line-height: 1.5;
  padding: 8px 4px;
  border-top: 1px dashed #E2E8F0;
}

.ac-brand-title {
  font-weight: 700;
  color: #1E293B;
  margin-right: 6px;
}

.ac-brand-text {
  color: #475569;
}

/* Responsive */
@media (max-width: 991px) {
  .ac-editorial-title {
    font-size: 26px;
  }
  .ac-open-img {
    height: 340px;
  }
}

@media (max-width: 575px) {
  .ac-editorial-title {
    font-size: 22px;
  }
  .ac-open-img {
    height: 270px;
  }
  .ac-short-spec-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ac-linear-title, .ac-linear-desc {
    white-space: normal;
  }
  .ac-inline-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ac-metric-divider {
    display: none;
  }
}

/* ==========================================================================
   14. ENHANCED & ATTRACTIVE TERMS & CONDITIONS STYLING
   ========================================================================== */
.legal-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.legal-trust-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.legal-trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(18, 97, 181, 0.35);
}

.legal-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(18, 97, 181, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.legal-trust-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.legal-trust-desc {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Policy Card Wrap */
.policy-card-block {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.policy-card-block:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(18, 97, 181, 0.25);
}

.policy-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.policy-card-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(18, 97, 181, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}

.policy-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0;
}

.policy-card-text {
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.8;
  margin-bottom: 18px;
}

.policy-item-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-item-list li {
  font-size: 14.5px;
  color: var(--color-body);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.policy-item-list li i {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.policy-item-list li strong {
  color: var(--color-heading);
}

/* Service Category Mini Grid */
.service-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.service-policy-box {
  background: var(--color-light-bg);
  border-radius: var(--border-radius-sm);
  padding: 18px 16px;
  border: 1px solid rgba(18, 97, 181, 0.1);
}

.service-policy-box h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-policy-box h5 i {
  color: var(--primary-color);
}

.service-policy-box p {
  font-size: 13px;
  
  line-height: 1.5;
  margin: 0;
}

/* Enhanced Warranty Comparison */
.warranty-compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 22px 0 10px 0;
}

.warranty-pane {
  border-radius: var(--border-radius-sm);
  padding: 24px;
}

.warranty-pane.covered-pane {
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
}

.warranty-pane.not-covered-pane {
  background: linear-gradient(180deg, #fef2f2 0%, #fff1f2 100%);
  border: 1px solid #fecaca;
}

.warranty-pane-header {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.warranty-pane.covered-pane .warranty-pane-header {
  color: #166534;
}

.warranty-pane.not-covered-pane .warranty-pane-header {
  color: #991b1b;
}

.warranty-pane-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.warranty-pane-list li {
  font-size: 13.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.warranty-pane.covered-pane li {
  color: #14532d;
}

.warranty-pane.not-covered-pane li {
  color: #7f1d1d;
}

.warranty-pane-list li i {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Legal Support CTA Banner */
.legal-support-banner {
  background: linear-gradient(135deg, #1261B5 0%, #0b4a8e 100%);
  border-radius: var(--border-radius-md);
  padding: 36px 40px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

.legal-support-text h4 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.legal-support-text p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 540px;
  line-height: 1.6;
}

.legal-support-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-legal-white {
  background: #ffffff;
  color: var(--primary-color) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-legal-white:hover {
  background: var(--color-light-bg);
  transform: translateY(-2px);
}

.btn-legal-outline {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-legal-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

@media (max-width: 991px) {
  .legal-trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-policy-grid {
    grid-template-columns: 1fr;
  }
  .legal-support-banner {
    padding: 28px;
  }
}

@media (max-width: 575px) {
  .legal-trust-row {
    grid-template-columns: 1fr;
  }
  .warranty-compare-wrap {
    grid-template-columns: 1fr;
  }
  .policy-card-block {
    padding: 22px 18px;
  }
  .policy-card-title {
    font-size: 18px;
  }
  .legal-support-actions {
    width: 100%;
    flex-direction: column;
  }
  .btn-legal-white, .btn-legal-outline {
    width: 100%;
    justify-content: center;
  }
}




