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

:root {
  --primary: #133157;
  --primary-rgb: 19, 49, 87;
  --bs-primary-rgb: 19, 49, 87;
  --primary-light: #133157;
  --accent: #3D73B5;
  --accent-rgb: 61, 115, 181;
  --accent-light: #5a8fd4;
  --accent-bright: #ff9f1c;
  --accent-bright-hover: #e08b14;
  --sky: #f0f6fc;
  --white: #ffffff;
  --body: #4a5568;
  --light-bg: #f8fbff;
  --border-color: #e2e8f0;

  --font-title: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px rgba(10, 31, 56, 0.08);
  --shadow-accent: 0 10px 25px rgba(61, 115, 181, 0.25);
  --shadow-bright: 0 10px 25px rgba(255, 159, 28, 0.35);

  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

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

/* Base resets & typography */
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 700;
}

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

a:hover {
  color: var(--accent-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--sky);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-light);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Glassmorphism Header & Navigation */
.brand-icon {
  background: linear-gradient(135deg, #3D73B5, #5a8fd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 0.3rem;
  font-size: 1.6rem;
}

.navbar-v2 {
  background: #ffffff !important;
  border-bottom: 1px solid #dde6f0;
  padding: 0.75rem 0;
  transition: box-shadow 0.3s;
  z-index: 1050;
  width: 100%;
}

.navbar-v2.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  max-width: 100%;
  overflow: hidden;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-top {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #133157;
  letter-spacing: 0.06em;
}

.logo-bot {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #3d73b5;
}

.nav-logo {
  max-width: 140px;
  width: 100%;
  height: auto;
  display: block;
}

.navbar-v2 .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #133157 !important;
  padding: 0.4rem 0.6rem !important;
  position: relative;
  transition: color 0.2s ease;
}

.navbar-v2 .dropdown-toggle::after {
  display: none !important;
}

.navbar-v2 .nav-link:hover,
.navbar-v2 .nav-link.active {
  color: #3d73b5 !important;
}

.navbar-v2 .nav-link>span {
  position: relative;
}

.navbar-v2 .nav-link>span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: #3d73b5;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.navbar-v2 .dropdown-menu {
  border: none;
  border-radius: 0.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 0.5rem;
}

.navbar-v2 .dropdown-item {
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 0.4rem;
  padding: 0.5rem 1rem;
  color: #133157;
}

.navbar-v2 .dropdown-item:hover {
  background: #f0f5fb;
  color: #3d73b5;
}

.navbar-v2 .dropdown-item.active {
  background: #e8f1fb;
  color: #3d73b5;
  font-weight: 700;
}

.navbar-v2 .mega-col .dropdown-item.active {
  color: #3d73b5;
  font-weight: 700;
}

/* Mega Menu */
.navbar-v2 .mega-menu {
  width: 720px;
  padding: 1.25rem;
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 20px 50px rgba(19, 49, 87, 0.12);
}

.navbar-v2 .mega-menu-content {
  display: flex;
  gap: 1.5rem;
}

.navbar-v2 .mega-col {
  flex: 1;
  min-width: 0;
}

.navbar-v2 .mega-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3d73b5;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eef4fb;
}

.navbar-v2 .mega-col .dropdown-item {
  padding: 0.35rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #4a5568;
  background: none;
  border-radius: 0;
  white-space: normal;
}

.navbar-v2 .mega-col .dropdown-item:hover {
  color: #3d73b5;
  background: none;
  padding-left: 4px;
}

/* Search link */
.nav-search-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #133157;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-search-btn:hover {
  color: #3d73b5;
}

.nav-search-icon {
  font-size: 0.9rem;
}

/* GET A QUOTE pill */
.btn-get-quote {
  background: #133157;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.4rem 0.6rem 1.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-get-quote .arrow-circle {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.btn-get-quote:hover {
  background: #1a3f68;
  color: #fff;
  transform: translateY(-1px);
}

.btn-get-quote-lg {
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  text-decoration: none;
}

/* Buttons */
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-bright {
  background: linear-gradient(135deg, var(--accent-bright), #ffb24d);
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.btn-bright:hover {
  background: linear-gradient(135deg, var(--accent-bright-hover), var(--accent-bright));
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-bright);
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 0.65rem 1.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.btn-outline-light-custom:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50px;
  padding: 0.65rem 1.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.btn-outline-accent-sm {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* Sections General */
.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--light-bg);
}

.section-bg-dark {
  background-color: var(--primary);
  color: var(--white);
}

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

.section-bg-dark .text-muted,
.section-bg-dark .text-white-50,
.guarantee-section .text-muted,
.guarantee-section .text-white-50,
.cta-section .text-muted,
.cta-section .text-white-50,
.cta-banner .text-muted,
.cta-banner .text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.preheading {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

/* Utility Colors */
.text-accent {
  color: var(--accent) !important;
}

.border-accent {
  border-color: var(--accent) !important;
}

/* ─── CONTACT PAGE ─────────────────────────── */
.contact-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

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

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--sky);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.contact-card h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.contact-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--accent-light);
}

.contact-visual {
  position: relative;
}

.contact-stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent-bright);
  color: var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-bright);
  line-height: 1.2;
}

.csc-num {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 900;
}

.csc-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.loc-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  text-align: center;
  height: 100%;
  transition: var(--transition-smooth);
}

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

.loc-card h6 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.loc-card p {
  margin-bottom: 0;
  font-size: 0.82rem;
  color: var(--body);
}

.loc-card .loc-phone {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
}

/* ──────────────────────────────────────────── */

/* Sub-page Hero Layout */
.sub-hero {
  background: linear-gradient(135deg, rgba(10, 31, 56, 0.95), rgba(10, 31, 56, 0.8)),
    url('/assets/img/retail-commercial.jpg') center/cover no-repeat;
  padding: 9.5rem 0 6rem;
  color: var(--white);
  border-bottom: 4px solid var(--accent);
}

.sub-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.sub-hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 680px;
}

/* Hero Section (Home) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .parallax-bg {
  position: absolute;
  inset: -15% 0;
  background: url('/assets/img/retail-commercial.jpg?w=1920&q=80') center/cover no-repeat;
  z-index: 1;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 56, 0.92), rgba(10, 31, 56, 0.55)),
    linear-gradient(0deg, rgba(10, 31, 56, 0.3) 0%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--white);
  padding: 8rem 0;
}

.hero-title {
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--accent-light);
  background: linear-gradient(135deg, #a5c7f7, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Cards & Layout Grid Features */

/* 1. Feature Card */
.feature-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2.5rem 2.25rem;
  height: 100%;
  transition: var(--transition-smooth);
  border: 1px solid rgba(19, 49, 87, 0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61, 115, 181, 0.15);
}

.feature-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--sky);
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.08) rotate(5deg);
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--body);
  margin: 0;
  flex-grow: 1;
}

/* 2. Commitment Card (10-1-24) */
.commitment-card {
  background: var(--sky);
  border-radius: 1.25rem;
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(61, 115, 181, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.commitment-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.commitment-value {
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  font-family: var(--font-title);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.commitment-unit {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.commitment-card p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--body);
  margin: 0;
}

/* 3. Industry Visual Cards */
.industry-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(10, 31, 56, 0.92));
  z-index: 2;
  transition: var(--transition-smooth);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  z-index: 1;
}

.industry-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  color: var(--white);
  z-index: 3;
}

.industry-card-wide {
  aspect-ratio: 16/9;
}

.industry-card-wide .card-body {
  padding: 1.5rem;
}

.industry-card h5 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.industry-card p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  line-height: 1.4;
}

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

.industry-card:hover::before {
  background: linear-gradient(transparent 10%, rgba(10, 31, 56, 0.96) 80%);
}

.industry-card:hover img {
  transform: scale(1.08);
}

.industry-card:hover p {
  opacity: 0.85;
  transform: translateY(0);
}

/* 4. Value Flip Cards (About Us) */
.value-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(19, 49, 87, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--body);
  margin: 0;
}

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

.value-letter {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent-light);
  font-family: var(--font-title);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.value-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 5. Accordion spacing */
.accordion-item {
  margin-bottom: 1rem;
}

/* 5. Service Accordion styles (Services) */
.service-accordion-item {
  background: var(--white);
  border-radius: 1rem !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-accordion-item:hover {
  border-color: var(--accent-light) !important;
  box-shadow: var(--shadow-md);
}

.accordion-button {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.25rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: none !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--sky);
  color: var(--accent);
}

.accordion-body {
  padding: 2rem;
  background: var(--white);
  border-top: 1px solid var(--sky);
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.service-list-item i {
  color: var(--accent-bright);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

/* 6. Partner/Certification Stamp */
.cert-stamp {
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.cert-icon {
  font-size: 2.5rem;
  color: var(--accent);
}

.cert-info h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.cert-info p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--body);
}

/* Client Logo Slider Carousel */
.logo-carousel {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
}

.logo-carousel::before,
.logo-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}

.logo-track {
  display: flex;
  gap: 5rem;
  animation: scrollLogos 35s linear infinite;
  width: max-content;
  align-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 140px;
}

.logo-item img {
  max-height: 100%;
  max-width: 100%;
  opacity: 0.55;
  filter: grayscale(1) brightness(0.6);
  transition: var(--transition-fast);
}

.logo-item img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Statistics Counters (Performance) */
.performance-stat-card {
  text-align: center;
  padding: 1rem;
}

.performance-stat-card .stat-number {
  font-size: 4.5rem;
  font-weight: 900;
  font-family: var(--font-title);
  color: var(--accent);
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.performance-stat-card .stat-suffix {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent-light);
  vertical-align: top;
  margin-left: 0.1rem;
}

.performance-stat-card .stat-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.performance-stat-card p {
  font-size: 0.95rem;
  color: var(--body);
}

/* Parallax Community Section */
.parallax-community {
  position: relative;
  padding: 8rem 0;
  color: var(--white);
  overflow: hidden;
}

.parallax-community .parallax-bg {
  position: absolute;
  inset: -15% 0;
  background: url('/assets/img/retail-commercial.jpg?w=1920&q=80') center/cover no-repeat;
  z-index: 1;
}

.parallax-community .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 56, 0.9), rgba(10, 31, 56, 0.5));
  z-index: 2;
}

.parallax-community .container {
  position: relative;
  z-index: 5;
}

/* Community Progress Tracker */
.community-progress-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.25rem;
  padding: 2.25rem;
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: left;
}

.community-progress-header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.community-progress-bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.community-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-bright), #ffc107);
  width: 82%;
  border-radius: 6px;
  position: relative;
  animation: progressFill 1.5s ease-out forwards;
}

@keyframes progressFill {
  from {
    width: 0;
  }

  to {
    width: 82%;
  }
}

/* CTA Standard Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 40%, var(--primary-light));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(61, 115, 181, 0.15);
  filter: blur(80px);
}

/* Footer Section */
.footer {
  background: #061424;
  color: rgba(255, 255, 255, 0.65);
  padding: 5rem 0 2.5rem;
  font-size: 0.95rem;
  border-top: 3px solid var(--accent);
}

.footer-heading {
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white) !important;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-fast);
}

.footer-hr {
  border-color: var(--white);
}

.footer a:hover {
  color: var(--accent-light);
  transform: translateX(3px);
  display: inline-block;
}

.footer ul {
  padding-left: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.65rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.05rem;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px) rotate(8deg);
  color: var(--white);
}

/* Forms Floating Label Custom styling */
.form-floating {
  margin-bottom: 1.25rem;
}

.form-floating>.form-control,
.form-floating>.form-select {
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  padding: 1.1rem 0.9rem;
  font-size: 0.95rem;
  background-color: var(--white);
  transition: var(--transition-smooth);
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown),
.form-floating>.form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.575rem;
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(61, 115, 181, 0.15);
}

.form-floating>label {
  padding: 1.1rem 0.9rem;
  color: var(--body);
  font-size: 0.9rem;
}

/* Dynamic Interactive Components Styling */

/* 1. Quote Calculator Slider Styles */
.calculator-box {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 31, 56, 0.08);
}

.calc-range-wrapper {
  margin-top: 1.5rem;
  margin-bottom: 2.25rem;
}

.form-range {
  height: 6px;
  border-radius: 3px;
  background-color: var(--sky);
}

.form-range::-webkit-slider-thumb {
  background-color: var(--accent);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.form-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background-color: var(--accent-light);
}

.calc-type-selector {
  display: flex;
  background: var(--sky);
  border-radius: 50px;
  padding: 0.35rem;
  margin-bottom: 2.25rem;
  border: 1px solid var(--border-color);
}

.calc-type-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.65rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: var(--transition-smooth);
}

.calc-type-btn.active {
  background: var(--white);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.calc-price-display {
  background: var(--sky);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(61, 115, 181, 0.15);
}

.calc-price-amount {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.calc-price-period {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--body);
}

/* 2. Technology/Simulator Layout */
.simulator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2rem;
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

@media (max-width: 991px) {
  .simulator-wrapper {
    grid-template-columns: 1fr;
  }
}

.sim-sidebar {
  background: var(--primary-light);
  padding: 2.5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sim-main {
  padding: 2.5rem;
  background: var(--white);
}

.sim-headline-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.sim-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  position: relative;
  display: inline-block;
}

.sim-live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent-bright);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.sim-audit-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.sim-audit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-radius: 1rem;
  background: var(--sky);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.sim-audit-item.passed {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.04);
}

.sim-audit-item.failed {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.04);
}

.sim-room-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.sim-toggle-buttons {
  display: flex;
  gap: 0.5rem;
}

.sim-btn-toggle {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--white);
  transition: var(--transition-fast);
  color: var(--body);
}

.sim-btn-toggle.active-pass {
  background: var(--white);
  border-color: #10b981;
  color: #10b981;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.sim-btn-toggle.active-fail {
  background: var(--white);
  border-color: #ef4444;
  color: #ef4444;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
}

.sim-score-wrapper {
  text-align: center;
  margin: auto 0;
  padding: 1.5rem;
}

.sim-radial-chart {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 1.5rem auto;
}

.sim-radial-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.sim-radial-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 12;
}

.sim-radial-fill {
  fill: none;
  stroke: var(--accent-light);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 502;
  /* 2 * PI * 80 */
  stroke-dashoffset: 50.2;
  /* (100 - %)/100 * 502 */
  transition: stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sim-radial-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  color: var(--white);
}

.sim-radial-percent {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
}

.sim-radial-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-top: 0.25rem;
}

/* 3. Industry Showcase Tabs */
.industry-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary-light);
}

.industry-nav-item:hover,
.industry-nav-item.active {
  border-color: var(--accent);
  background: var(--sky);
  color: var(--accent);
  transform: translateX(5px);
}

.industry-nav-item i {
  font-size: 1.45rem;
  color: var(--accent-light);
}

.industry-nav-item.active i {
  color: var(--accent);
}

.industry-showcase-view {
  background: var(--white);
  border-radius: 1.5rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.industry-showcase-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-bottom: 4px solid var(--accent);
}

.industry-showcase-content {
  padding: 2.5rem;
}

.industry-showcase-content .text-primary,
.industry-showcase-content .fw-bold.text-primary {
  color: #133157 !important;
}

.industry-showcase-content h3,
.industry-showcase-content h5 {
  color: #133157;
}

/* Success Popup Animated */
.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 2.75rem;
  animation: scaleInCheck 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleInCheck {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.fs-icon-lg {
  font-size: 5rem;
}

/* floating shapes under elements */
.shape-float {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(61, 115, 181, 0.03);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.shape-float-tl {
  top: 10%;
  left: 5%;
}

.shape-float-tr {
  top: 15%;
  right: 10%;
}

.shape-float-br {
  bottom: 5%;
  right: 5%;
}

.shape-float-bl {
  bottom: 10%;
  left: 5%;
}

.shape-float-br-right {
  bottom: 10%;
  right: 5%;
}

/* Utilities */
.text-accent-bright {
  color: var(--accent-bright) !important;
}

.z-2 {
  z-index: 2;
  position: relative;
}

.font-title {
  font-family: var(--font-title);
}

.line-height-tight {
  line-height: 1.2;
}

/* ─── WIDTH UTILITIES ───────────────────────── */
.mw-520 {
  max-width: 520px;
}

.mw-560 {
  max-width: 560px;
}

.mw-580 {
  max-width: 580px;
}

.mw-600 {
  max-width: 600px;
}

.mw-680 {
  max-width: 680px;
}

/* ─── OBJECT FIT ────────────────────────────── */
.object-cover {
  object-fit: cover;
}

.h-350 {
  height: 350px;
}

/* ─── OVERLAY COMPONENT ─────────────────────── */
.overlay-dim {
  background: rgba(10, 31, 56, 0.15);
  z-index: 1;
}

/* ─── ALT/HOME-V2 HERO ──────────────────────── */
.hero-v2 {
  background: linear-gradient(165deg, #f0f5fb 0%, #ffffff 50%, #f0f5fb 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-v2 .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero-v2 .shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.08);
  top: -15%;
  left: -10%;
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-v2 .shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(14, 165, 233, 0.06);
  bottom: -10%;
  right: -5%;
  animation: heroFloat 10s ease-in-out infinite reverse;
}

@keyframes heroFloat {

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

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-v2-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  color: #0e2240;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 0;
}

.text-gradient {
  background: linear-gradient(135deg, #3d73b5, #5a9bf5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #3d73b5;
  background: rgba(61, 115, 181, 0.1);
  border-radius: 50px;
  padding: 0.4rem 1rem;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  max-width: 520px;
  margin-top: 1.25rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #3d73b5;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-hero-primary:hover {
  background: #2c5a91;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(61, 115, 181, 0.3);
}

.btn-hero-primary .arrow-circle {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #133157;
  border: 2px solid #133157;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-hero-secondary:hover {
  background: #133157;
  color: #fff;
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #133157;
}

.trust-item i {
  color: #3d73b5;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s;
}

.hero-visual:hover .hero-main-img {
  transform: scale(1.02);
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-stat-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hsc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #3d73b5;
  line-height: 1;
}

.hsc-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #133157;
  margin-top: 0.15rem;
}

.industry-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #dde6f0;
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  text-decoration: none;
  background: #fff;
  transition: all 0.25s;
  cursor: pointer;
}

.industry-pill:hover,
.industry-pill.active {
  background: #133157;
  color: #fff;
  border-color: #133157;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(19, 49, 87, 0.15);
}

/* ─── IMAGE MASKS ───────────────────────────── */

.img-masked-blob {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='300' cy='200' rx='295' ry='195' fill='%23000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='300' cy='200' rx='295' ry='195' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* ─── ALT STATS RIBBON ──────────────────────── */
.stats-ribbon {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(19, 49, 87, 0.1);
  border-bottom: 4px solid #3d73b5;
  padding: 2.25rem 2rem;
}

.stat-col {
  text-align: center;
  border-right: 1px solid #e2e8f0;
  padding: 0 1rem;
}

.stat-col:last-child {
  border-right: none;
}

.stat-col .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #3d73b5;
  line-height: 1;
}

.stat-col h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #0e2240;
  margin: 0.4rem 0 0.25rem;
}

.stat-col p {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
}

@media(max-width:767px) {
  .stat-col {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  }

  .stat-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

/* ─── ALT INDUSTRY CARDS ────────────────────── */
.ind-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  height: 340px;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ind-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ind-card:hover img {
  transform: scale(1.07);
}

.ind-card .ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(14, 34, 64, 0.88));
}

.ind-card .ind-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.ind-card .ind-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
  text-decoration: none;
}

.ind-card .ind-link:hover {
  color: #fff;
}

/* ─── ALT WHY CARDS ─────────────────────────── */
.why-card {
  background: #fff;
  border: 1px solid #e2eaf3;
  border-radius: 1.25rem;
  padding: 2.25rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(19, 49, 87, 0.1);
  border-color: #3d73b5;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.85rem;
  background: #eef4fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #3d73b5;
  margin-bottom: 1.25rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.why-card:hover .why-icon {
  background: #3d73b5;
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e2240;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.92rem;
  color: #64748b;
  margin: 0;
}

/* ─── ALT GUARANTEE ─────────────────────────── */
.guarantee-section {
  background: linear-gradient(135deg, #0e2240 60%, #1a3a6a);
}

.guarantee-card {
  text-align: center;
  padding: 2rem 1rem;
}

.guarantee-card h4 {
  color: #3d73b5;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.guarantee-num {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.guarantee-unit {
  font-size: 1rem;
  font-weight: 700;
  color: #3d73b5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.guarantee-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

/* ─── ALT CTA BANNER ────────────────────────── */
.cta-banner {
  background: #3d73b5;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

/* ─── ALT SERVICE CARDS ─────────────────────── */
.svc-card {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2eaf3;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.svc-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.svc-card:hover .svc-img-wrap img {
  transform: scale(1.06);
}

.svc-body {
  padding: 1.75rem;
}

.svc-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e2240;
  margin-bottom: 0.5rem;
}

.svc-body p {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.svc-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #3d73b5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.svc-link:hover {
  color: #0e2240;
}

/* ─── ALT FOOTER ────────────────────────────── */
.footer-v2 {
  background: #06111f;
  color: rgba(255, 255, 255, 0.6);
  padding: 4.5rem 0 2rem;
  font-size: 0.9rem;
  border-top: 3px solid #3d73b5;
}

.footer-v2 h6 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
}

.footer-v2 a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-v2 a:hover {
  color: #3d73b5;
}

.footer-v2 ul {
  list-style: none;
  padding: 0;
}

.footer-v2 ul li {
  margin-bottom: 0.55rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  margin-right: 0.5rem;
  transition: background 0.25s, transform 0.25s;
}

.footer-social a:hover {
  background: #3d73b5;
  transform: translateY(-3px);
}

/* ─── ALT FOOTER COMPONENTS ─────────────────── */
.footer-alt-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.06em;
}

.footer-alt-sub {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #3d73b5;
  text-transform: uppercase;
}

.footer-alt-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-alt-phone {
  color: #3d73b5;
  font-weight: 700;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-alt-list {
  font-size: 0.82rem;
}

.footer-alt-hr {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 0 0 1.5rem;
}

.footer-alt-sm {
  font-size: 0.82rem;
}

/* ─── ALT V2 SPECIFIC BACKGROUNDS ──────────── */
.bg-alt-section {
  background: #f4f8fd;
}

.bg-alt-white {
  background: #fff;
}

.bg-alt-blue {
  background: #e8f1fb;
}

.bg-alt-dark {
  background: linear-gradient(135deg, #0e2240 60%, #1a3a6a);
}

/* ─── ALT V2 CALLOUT ────────────────────────── */
.text-accent-v2 {
  color: #3d73b5;
}

.fs-sm {
  font-size: 0.82rem;
}

/* ─── TEXTAREA LARGE ────────────────────────── */
.form-textarea-lg {
  height: 100px;
}

#quoteSubmitForm {
  display: flex;
  flex-direction: column;
}

#quoteSubmitForm .form-floating:last-of-type {
  flex: 1;
}

#quoteSubmitForm .form-floating:last-of-type textarea {
  height: 100% !important;
  min-height: 140px;
}

/* ─── V2 CONTACT FORM LABELS ────────────────── */
.form-label-required:after {
  content: ' *';
  color: #dc3545;
}

/* ─── HERO IMAGE OVERLAY WRAPPER ────────────── */
.img-overlay-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: inline-block;
}

.img-overlay-wrap img {
  display: block;
}

/* ─── CERTIFICATION STAMP LARGE ─────────────── */
.Charger-dashboard-img {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
}

.modal-sm-custom {
  max-width: 420px;
}

.cert-stamp-lg {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

/* ─── SERVICE CATEGORY CARDS ─────────────────── */
.service-category-card {
  background: #fff;
  border: 1px solid #e2eaf3;
  border-radius: 1.25rem;
  padding: 2.25rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(19, 49, 87, 0.1);
  border-color: #3d73b5;
}

.service-category-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #133157;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #3d73b5;
}

.service-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-category-list li {
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-category-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #3d73b5;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-category-list li a {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.2s;
}

.service-category-list li a:hover {
  color: #3d73b5;
}

/* ─── SINGLE SERVICE PAGE ──────────────────── */
.feature-compact {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid #e2eaf3;
  border-radius: 0.85rem;
  padding: 1rem 1.25rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19, 49, 87, 0.08);
  border-color: #3d73b5;
}

.feature-compact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3d73b5, #5a8fd4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  transition: transform 0.25s ease;
}

.feature-compact:hover .feature-compact-icon {
  transform: scale(1.1) rotate(-4deg);
}

.feature-compact span:last-child {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.45;
}

.service-benefits-visual {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ─── RESPONSIVE FIXES ────────────────────── */
@media (max-width: 991px) {
  .navbar-v2 .navbar-collapse {
    background: #fff;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 80vh;
    overflow-y: auto;
  }

  .navbar-v2 .nav-link {
    padding: 0.6rem 0 !important;
  }

  .navbar-v2 .mega-menu {
    width: 100% !important;
    box-shadow: none !important;
    padding: 0.5rem 0 0.5rem 1rem !important;
  }

  .navbar-v2 .mega-menu-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .navbar-v2 .mega-col {
    flex: none;
  }

  .navbar-v2 .mega-title {
    margin-bottom: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .navbar-v2 .mega-col .dropdown-item {
    padding: 0.25rem 0 !important;
    font-size: 0.82rem;
  }

  .navbar-v2 .dropdown-menu {
    border: none !important;
    box-shadow: none !important;
    padding-left: 0.75rem !important;
  }

  .navbar-v2 .btn-get-quote {
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
  }

  .hero-v2 {
    padding: 5rem 0 3rem;
  }

  .hero-main-img {
    height: 320px !important;
  }

  .hero-stat-card {
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
    margin-top: 1rem;
    display: inline-block;
  }

  .sub-hero {
    padding: 7rem 0 4rem;
  }

  .sub-hero h1 {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .service-category-card {
    padding: 1.5rem;
  }

  .svc-img-wrap {
    height: 160px;
  }

  .footer-v2 .col-6 {
    margin-bottom: 1rem;
  }

  .logo-carousel::before,
  .logo-carousel::after {
    width: 60px;
  }

  .logo-track {
    gap: 3rem;
  }

  .logo-item {
    width: 100px;
    height: 45px;
  }

  .navbar-v2 .navbar-toggler {
    padding: 0.25rem 0.4rem;
    font-size: 1rem;
  }

  .navbar-v2 .navbar-toggler-icon {
    width: 20px;
    height: 20px;
  }

  .sub-hero {
    padding: 6rem 0 3rem;
  }

  .sub-hero h1 {
    font-size: 2rem;
  }

  .btn-get-quote.btn-get-quote-lg {
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
  }

  .cta-banner {
    padding: 3rem 1rem;
  }

  .cta-banner h2 {
    font-size: 1.75rem;
  }

  .footer-v2 .row > .col-lg-4 {
    margin-bottom: 1.5rem;
  }

  .footer-v2 .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-v2 ul li a {
    font-size: 0.82rem;
  }

  .svc-img-wrap {
    height: 160px;
  }

  .svc-body {
    padding: 1.25rem;
  }

  .svc-body h4 {
    font-size: 1rem;
  }

  .service-benefits-visual {
    min-height: 220px;
  }

  .feature-compact {
    padding: 0.85rem 1rem;
  }

  .feature-compact span:last-child {
    font-size: 0.85rem;
  }

  .why-card {
    padding: 1.5rem;
  }

  .about-page .value-card {
    padding: 1.5rem 1rem;
  }

  .calculator-box {
    padding: 1.5rem;
  }

  .industry-showcase-view {
    padding: 1.5rem;
  }

  .industry-showcase-img {
    height: 200px;
  }

  .service-category-card {
    padding: 1.25rem;
  }

  .hero-stat-card {
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
    margin-top: 1rem;
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .hero-v2 {
    padding: 4.5rem 0 2.5rem;
  }

  .hero-v2-title {
    font-size: clamp(2rem, 8vw, 2.75rem) !important;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-main-img {
    height: 240px !important;
  }

  .sub-hero {
    padding: 5.5rem 0 3rem;
  }

  .sub-hero h1 {
    font-size: 1.75rem;
  }

  .sub-hero p {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section {
    padding: 3rem 0;
  }

  .preheading {
    font-size: 0.7rem;
  }

  .industry-pills {
    gap: 0.4rem;
  }

  .industry-pill {
    font-size: 0.62rem;
    padding: 0.3rem 0.75rem;
  }

  .cert-stamp-lg {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .stats-ribbon {
    padding: 1.5rem 1rem;
  }

  .stat-col .num {
    font-size: 2rem;
  }

  .feature-compact {
    padding: 0.85rem 1rem;
  }

  .feature-compact span:last-child {
    font-size: 0.85rem;
  }

  .svc-body {
    padding: 1.25rem;
  }

  .svc-body h4 {
    font-size: 1rem;
  }

  .service-benefits-visual {
    min-height: 200px;
    padding: 2rem !important;
  }

  .footer-v2 {
    padding: 3rem 0 1.5rem;
  }

  .logo-carousel::before,
  .logo-carousel::after {
    width: 40px;
  }

  .logo-track {
    gap: 2rem;
  }

  .logo-item {
    width: 80px;
    height: 36px;
  }

  .hero-stat-card {
    padding: 0.75rem 1rem;
  }

  .hsc-num {
    font-size: 1.25rem;
  }

  .ind-card {
    height: 240px;
  }

  .service-category-card {
    padding: 1.25rem;
  }

  .hero-v2 .row {
    flex-direction: column-reverse;
  }

  .hero-visual {
    margin-bottom: 1rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.65rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    font-size: 0.8rem;
    padding: 0.55rem 1.25rem;
  }

  .stats-ribbon .row {
    gap: 1rem;
  }

  .stat-col {
    border-right: none !important;
    padding: 0.75rem;
  }

  .stat-col .num {
    font-size: 1.75rem;
  }

  .stat-col h5 {
    font-size: 0.85rem;
  }

  .stat-col p {
    font-size: 0.75rem;
  }

  .guarantee-card {
    padding: 1.25rem;
  }

  .guarantee-card h4 {
    font-size: 0.95rem;
  }

  .guarantee-card p {
    font-size: 0.82rem;
  }

  .calc-price-amount {
    font-size: 1.5rem;
  }

  .form-textarea-lg {
    min-height: 100px;
  }

  .industry-nav-item {
    padding: 0.6rem 0.85rem;
    gap: 0.6rem;
  }

  .industry-nav-item i {
    font-size: 1rem;
  }

  .section #industriesShowcase .col-lg-4 .d-flex {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .section #industriesShowcase .col-lg-4 .industry-nav-item {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
  }

  .showcase-standards .row {
    flex-direction: column;
  }

  .showcase-standards .col-sm-6 {
    flex: 0 0 100%;
  }

  .hero-v2-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
  }

  .industry-pills {
    gap: 0.3rem;
  }

  .industry-pill {
    font-size: 0.6rem;
    padding: 0.25rem 0.6rem;
  }
}

@media (max-width: 575px) {
  .nav-logo {
    max-width: 100px;
  }

  .hero-v2-title {
    font-size: clamp(1.65rem, 7vw, 2rem) !important;
  }

  .sub-hero h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .btn-get-quote {
    font-size: 0.72rem;
    padding: 0.5rem 1rem 0.5rem 1.25rem;
  }

  .navbar-v2 .container-lg {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .footer-v2 .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero-visual {
    margin-top: 0;
  }

  .industry-nav-item {
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
  }

  .industry-showcase-view {
    padding: 1.25rem;
  }

  .industry-showcase-img {
    height: 180px;
  }

  .calc-type-selector {
    gap: 0.35rem;
  }

  .calc-type-btn {
    font-size: 0.72rem;
    padding: 0.4rem 0.65rem;
  }

  .calculator-box {
    padding: 1.25rem;
  }

  .quote-form-wrap {
    padding: 1.25rem;
  }

  .service-category-card {
    padding: 1rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  .value-letter {
    font-size: 2.5rem;
  }

  .value-title {
    font-size: 1rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .service-benefits-visual {
    min-height: 180px;
    padding: 1.5rem !important;
  }

  .why-card {
    padding: 1.5rem;
  }

  .hero-v2 .row {
    flex-direction: column-reverse;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.6rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .stat-col {
    border-right: none !important;
    padding: 0.5rem;
  }

  .stat-col .num {
    font-size: 1.5rem;
  }

  .stat-col h5 {
    font-size: 0.8rem;
  }

  .stat-col p {
    font-size: 0.72rem;
  }

  .ind-card {
    height: 200px;
  }

  .ind-label {
    font-size: 0.9rem;
    padding: 1rem;
  }

  .guarantee-card {
    padding: 1rem;
  }

  .guarantee-card h4 {
    font-size: 0.9rem;
  }

  .calc-price-amount {
    font-size: 1.35rem;
  }

  .calc-price-display {
    padding: 1rem;
  }

  .section #industriesShowcase .col-lg-4 .industry-nav-item {
    flex: 1 1 100%;
  }

  .industry-showcase-img {
    height: 140px;
  }

  .industry-showcase-content h3 {
    font-size: 1.1rem;
  }

  .image-wrap-about img {
    height: 200px;
  }

  .about-faq-wrap {
    padding: 1.25rem;
  }

  .sub-hero {
    padding: 4.5rem 0 2rem;
  }

  .sub-hero p {
    font-size: 0.85rem;
  }

  .navbar-v2 .btn-get-quote {
    font-size: 0.68rem;
    padding: 0.4rem 0.75rem 0.4rem 1rem;
  }

  .hero-stat-card {
    padding: 0.5rem 0.75rem;
  }

  .hsc-num {
    font-size: 1rem;
  }

  .hsc-label {
    font-size: 0.6rem;
  }

  .cta-banner h2 {
    font-size: 1.25rem;
  }

  .cta-banner p {
    font-size: 0.85rem;
  }

  .value-card {
    padding: 1.25rem;
  }

  .value-letter {
    font-size: 2rem;
  }

  .value-title {
    font-size: 0.9rem;
  }

  .value-card p {
    font-size: 0.82rem;
  }

  .feature-compact {
    padding: 0.7rem 0.85rem;
  }

  .service-benefits-visual {
    min-height: 150px;
    padding: 1.25rem !important;
  }

  .service-benefits-visual h3 {
    font-size: 1.1rem;
  }

  .logo-carousel {
    padding: 0.75rem 0;
  }

  .section #homePartners {
    padding: 2rem 0 !important;
  }

  .footer-v2 {
    padding: 2rem 0 1rem;
  }

  .footer-alt-desc {
    font-size: 0.82rem;
  }

  .footer-v2 h6 {
    font-size: 0.75rem;
  }

  .footer-v2 ul li a {
    font-size: 0.75rem;
  }

  .footer-v2 .d-flex.flex-wrap {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-alt-sm {
    font-size: 0.7rem;
  }

  form .row.g-2 {
    flex-direction: column;
  }

  form .row.g-2 .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-page .container-lg .row .col-lg-6 {
    margin-bottom: 1rem;
  }
}