/* ==========================================================================
   RMS ASSOCIATES - LANDING PAGE STYLESHEET
   Primary Color: #3f4093
   Secondary Color: #0da9ed
   Heading Font: Montserrat SemiBold (600)
   Body Font: Poppins (400, 500, 600, 700)
   ========================================================================== */

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

:root {
  --primary-color: #3f4093;
  --primary-dark: #2d2e6d;
  --primary-light: #5254b8;
  --secondary-color: #0da9ed;
  --secondary-dark: #0983b9;
  --secondary-light: #44c2f6;
  --dark-neutral: #15162a;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(63, 64, 147, 0.06);
  --shadow-md: 0 8px 24px rgba(63, 64, 147, 0.1);
  --shadow-lg: 0 16px 40px rgba(63, 64, 147, 0.15);
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* ==========================================================================
   PREMIUM PAGE PRELOADER
   ========================================================================== */
.rms-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0d1e 0%, #151836 50%, #0d1228 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.32, 0.72, 0, 1), visibility 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.rms-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.preloader-logo-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-spinner-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 3.5px solid transparent;
  border-top-color: var(--secondary-color);
  border-right-color: rgba(13, 169, 237, 0.2);
  border-bottom-color: var(--primary-light);
  animation: preloaderSpin 1.4s linear infinite;
  box-shadow: 0 0 25px rgba(13, 169, 237, 0.35);
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.preloader-icon-badge {
  width: 110px;
  height: 110px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(13, 169, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: preloaderPulse 2s ease-in-out infinite alternate;
  padding: 18px;
}

@keyframes preloaderPulse {
  0% { transform: scale(0.95); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(13, 169, 237, 0.2); }
  100% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 35px rgba(13, 169, 237, 0.45); }
}

.preloader-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Typography Hierarchy strictly following Montserrat SemiBold & Poppins */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: 600; /* Montserrat SemiBold */
  color: var(--primary-color);
  line-height: 1.25;
}

p, li, span, body {
  font-family: var(--font-body);
}

/* Custom Container & Section Spacing */
.section-padding {
  padding: 42px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 30px 0;
  }
}

/* Section Header Styling */
.section-title-wrapper {
  margin-bottom: 28px;
}

.section-title-wrapper h1,
.section-title-wrapper h2 {
  font-size: 2.25rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title-wrapper h1::after,
.section-title-wrapper h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  margin-top: 10px;
  border-radius: 2px;
}

.section-title-wrapper.text-center h1::after,
.section-title-wrapper.text-center h2::after {
  margin: 10px auto 0;
}

/* Navigation Bar - Floating Deep Glassmorphic Pill */
.navbar-custom {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1280px;
  z-index: 1050;
  background: linear-gradient(135deg, rgba(14, 18, 38, 0.78) 0%, rgba(26, 32, 65, 0.70) 50%, rgba(16, 26, 52, 0.75) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 
              inset 0 1px 1px rgba(255, 255, 255, 0.2), 
              0 0 25px rgba(13, 169, 237, 0.12);
  padding: 6px 8px;
  transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.navbar-custom .container {
  padding-left: 4px;
  padding-right: 4px;
}

.navbar-custom.sticky-top {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0 0 24px 24px;
  border-top: none;
  border-left: none;
  border-right: none;
  background: linear-gradient(135deg, rgba(10, 13, 30, 0.96) 0%, rgba(20, 26, 55, 0.94) 50%, rgba(12, 20, 42, 0.95) 100%);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55), 
              inset 0 -1px 1px rgba(255, 255, 255, 0.2),
              0 0 30px rgba(13, 169, 237, 0.2);
  border-color: rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
}

.navbar-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #ffffff;
  padding: 6px 20px;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand-logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.brand-logo-img {
  height: 76px;
  width: auto;
  object-fit: contain;
  border-radius: 24px;
  display: block;
  transition: transform 0.3s ease;
}

.navbar-custom .btn-rms-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 9px 22px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 6px 20px rgba(13, 169, 237, 0.45);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .navbar-custom {
    padding: 4px 6px;
    width: calc(100% - 16px);
    top: 8px;
  }
  .brand-logo-img {
    height: 54px;
    border-radius: 16px;
  }
  .navbar-brand-logo {
    padding: 5px 14px;
  }
  .navbar-custom .btn-rms-primary {
    padding: 7px 14px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .brand-logo-img {
    height: 46px;
    border-radius: 14px;
  }
  .navbar-brand-logo {
    padding: 4px 12px;
  }
  .navbar-custom .btn-rms-primary {
    padding: 6px 10px;
    font-size: 0.72rem;
  }
}

.navbar-custom .btn-rms-primary:hover {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 169, 237, 0.65);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-logo-img {
  height: 56px;
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 8px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(63, 64, 147, 0.25);
}

.brand-text-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.brand-text-sub {
  font-size: 0.75rem;
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--secondary-color) !important;
}

/* Universal Button Glow Removal */
button, .btn, [class*="btn-"] {
  box-shadow: none !important;
}

button:hover, .btn:hover, [class*="btn-"]:hover {
  box-shadow: none !important;
}

/* Custom Buttons */
.btn-rms-primary {
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: none !important;
}

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

.btn-rms-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: none !important;
}

.btn-rms-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: none !important;
}

.btn-rms-outline {
  background-color: transparent;
  color: var(--primary-color);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: none !important;
}

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

.btn-rms-white {
  background-color: var(--white);
  color: var(--primary-color);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid var(--white);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: none !important;
}

.btn-rms-white:hover {
  background-color: var(--light-bg);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: none !important;
}

/* Hero Section - High-End Modern UI */
.hero-section {
  background: radial-gradient(circle at 85% 25%, rgba(13, 169, 237, 0.28) 0%, transparent 45%),
              radial-gradient(circle at 15% 75%, rgba(63, 64, 147, 0.45) 0%, transparent 50%),
              linear-gradient(135deg, rgba(11, 12, 25, 0.91) 0%, rgba(16, 17, 36, 0.86) 100%),
              url('../assets/images/hero-painting-bg.png') center center / cover no-repeat;
  color: var(--white);
  padding: 165px 0 50px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 140px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 125px 0 35px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--secondary-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 5px 12px;
    letter-spacing: 0.4px;
    margin-top: 12px;
    margin-bottom: 18px;
  }
}

.hero-eyebrow-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary-color);
  animation: heroPulse 2s infinite;
}

.hero-title {
  font-size: clamp(1.4rem, 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  max-width: 800px;
}

.hero-title .d-block {
  white-space: nowrap;
}

@media (max-width: 576px) {
  .hero-title .d-block {
    white-space: normal;
  }
}

.hero-title .text-accent {
  color: #44c2f6;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, var(--secondary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-rms-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.btn-rms-hero-primary i {
  font-size: 1.25rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.btn-rms-hero-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: none !important;
}

.btn-rms-hero-primary .btn-icon-wrapper {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.btn-rms-hero-primary:hover .btn-icon-wrapper {
  transform: translateX(4px);
}

.btn-rms-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-rms-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.metric-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.metric-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Lead Capture Form Card */
#heroLeadForm,
.hero-form-card {
  scroll-margin-top: 130px;
  background: linear-gradient(135deg, rgba(22, 26, 54, 0.92) 0%, rgba(14, 18, 38, 0.95) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 26px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 
              inset 0 1px 1px rgba(255, 255, 255, 0.2), 
              0 0 30px rgba(13, 169, 237, 0.15);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-form-card:hover {
  border-color: rgba(13, 169, 237, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(13, 169, 237, 0.25);
}

.hero-form-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: -0.3px;
}

.hero-form-subtitle {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

.form-label-custom {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 4px;
}

.hero-form-input {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 8px 12px !important;
  font-size: 0.85rem !important;
  transition: all 0.3s ease !important;
}

.hero-form-input::placeholder {
  color: rgba(255, 255, 255, 0.48) !important;
}

.hero-form-input:focus {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border-color: #0da9ed !important;
  box-shadow: 0 0 12px rgba(13, 169, 237, 0.35) !important;
  outline: none !important;
}

.hero-form-input option {
  background-color: #161833;
  color: #ffffff;
}

.btn-hero-form-submit {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.btn-hero-form-submit:hover {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: none !important;
  color: #ffffff;
}

.floating-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(21, 22, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease;
}

.badge-top-right {
  top: 0px;
  right: -15px;
  animation: floatSmooth 4s ease-in-out infinite;
}

.badge-bottom-left {
  bottom: 20px;
  left: -20px;
  animation: floatSmooth 4s ease-in-out infinite 2s;
}

.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
}

.badge-text span {
  display: block;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes heroPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(13, 169, 237, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(13, 169, 237, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(13, 169, 237, 0); }
}

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

@media (max-width: 991px) {
  .hero-section {
    padding: 40px 0 30px;
  }
  .floating-badge {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    margin-top: 15px;
    animation: none;
  }
  .metric-divider {
    display: none;
  }
  .hero-trust-metrics {
    gap: 18px;
  }
  .hero-section h1 {
    font-size: 2.1rem;
  }
  .hero-section h2 {
    font-size: 1.25rem;
  }
}

/* Highlights Section - Creative Floating Glass Pod */
.highlights-section {
  background: #f8fafc;
  padding: 25px 0 15px;
  position: relative;
  z-index: 10;
}

.highlights-floating-bar {
  background: linear-gradient(135deg, rgba(14, 18, 38, 0.94) 0%, rgba(26, 32, 65, 0.90) 50%, rgba(16, 26, 52, 0.92) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 28px 32px;
  box-shadow: 0 20px 50px rgba(11, 12, 25, 0.35), 
              inset 0 1px 1px rgba(255, 255, 255, 0.2),
              0 0 40px rgba(13, 169, 237, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlights-floating-bar:hover {
  box-shadow: 0 25px 60px rgba(11, 12, 25, 0.45), 
              inset 0 1px 1px rgba(255, 255, 255, 0.25),
              0 0 50px rgba(13, 169, 237, 0.2);
}

.highlight-item-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.highlight-item-inner:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.highlight-icon-glow {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13, 169, 237, 0.2) 0%, rgba(63, 64, 147, 0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #44c2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.highlight-item-inner:hover .highlight-icon-glow {
  background: linear-gradient(135deg, #0da9ed 0%, #3f4093 100%);
  color: #ffffff;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 25px rgba(13, 169, 237, 0.45);
}

.highlight-meta {
  display: flex;
  flex-direction: column;
}

.highlight-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 40%, #44c2f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.highlight-label-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  margin-top: 3px;
  line-height: 1.25;
}

/* Why Choose Us - Hub & Spoke Diagram UI */
.why-choose-section {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
  padding: 35px 0 115px;
}

.section-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(13, 169, 237, 0.08);
  border: 1px solid rgba(13, 169, 237, 0.22);
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--secondary-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.heading-accent-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.heading-decorative-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px auto 0;
}

.heading-decorative-line .line-left {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(13, 169, 237, 0), rgba(13, 169, 237, 0.6));
}

.heading-decorative-line .line-right {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(13, 169, 237, 0.6), rgba(13, 169, 237, 0));
}

.heading-decorative-line .line-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary-color);
  box-shadow: 0 0 10px rgba(13, 169, 237, 0.6);
}

.section-subtitle-modern {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.why-choose-diagram-wrapper {
  position: relative;
  max-width: 1120px;
  margin: 82px auto 0;
  padding-top: 10px;
}

.diagram-orbit-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border: 2px dashed rgba(13, 169, 237, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.diagram-inner-orbit-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  border: 2px dotted rgba(13, 169, 237, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Center Circle Node */
.diagram-center-circle {
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, #0da9ed 0%, #088ec9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 16px 45px rgba(13, 169, 237, 0.35), 0 0 0 10px rgba(13, 169, 237, 0.12);
  position: relative;
  z-index: 3;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.diagram-center-circle:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(13, 169, 237, 0.45), 0 0 0 14px rgba(13, 169, 237, 0.18);
}

.center-circle-inner {
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.center-brand-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease;
}

.diagram-center-circle:hover .center-logo-img {
  transform: scale(1.08);
}

.center-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.center-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  margin: 0;
}

/* Diagram Column & Capsules */
.diagram-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.diagram-capsule {
  background: linear-gradient(135deg, #3f4093 0%, #5254b8 100%);
  border-radius: 50px;
  padding: 10px 14px;
  color: #ffffff;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 28px rgba(63, 64, 147, 0.22);
  transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  position: relative;
}

.diagram-capsule:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 36px rgba(63, 64, 147, 0.35);
  background: linear-gradient(135deg, #2d2e6d 0%, #3f4093 100%);
}

.capsule-left {
  justify-content: space-between;
  padding-left: 24px;
}

.capsule-right {
  justify-content: flex-start;
  gap: 14px;
  padding-right: 24px;
}

.capsule-text {
  display: flex;
  flex-direction: column;
}

.capsule-left .capsule-text {
  text-align: right;
}

.capsule-right .capsule-text {
  text-align: left;
}

.capsule-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.capsule-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 2px;
}

/* Icon Box & Pointer Arrow */
.capsule-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.diagram-capsule:hover .capsule-icon-box {
  background: #f0f9ff;
  color: var(--secondary-color);
  transform: scale(1.08);
}

.pointer-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.left-pointer {
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border-width: 7px 0 7px 9px;
  border-color: transparent transparent transparent #ffffff;
}

.right-pointer {
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  border-width: 7px 9px 7px 0;
  border-color: transparent #ffffff transparent transparent;
}

.target-node-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #3f4093;
  box-shadow: 0 0 8px rgba(13, 169, 237, 0.5);
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  transition: all 0.3s ease;
}

.left-pointer .target-node-dot {
  right: -6px;
}

.right-pointer .target-node-dot {
  left: -6px;
}

.diagram-capsule:hover .target-node-dot {
  border-color: #0da9ed;
  background: #ffffff;
  transform: translateY(-50%) scale(1.3);
  box-shadow: 0 0 14px rgba(13, 169, 237, 0.85);
}

@media (min-width: 992px) {
  .diagram-orbit-line {
    width: 480px;
    height: 480px;
  }

  /* Precise Circular Trigonometric Curvature Alignment for 8 Capsules */
  .left-column .diagram-capsule:nth-child(1),
  .left-column .diagram-capsule:nth-child(4) {
    transform: translateX(56px);
  }
  .left-column .diagram-capsule:nth-child(1):hover,
  .left-column .diagram-capsule:nth-child(4):hover {
    transform: translateX(56px) translateY(-4px) scale(1.02);
  }

  .left-column .diagram-capsule:nth-child(2),
  .left-column .diagram-capsule:nth-child(3) {
    transform: translateX(6px);
  }
  .left-column .diagram-capsule:nth-child(2):hover,
  .left-column .diagram-capsule:nth-child(3):hover {
    transform: translateX(6px) translateY(-4px) scale(1.02);
  }

  .right-column .diagram-capsule:nth-child(1),
  .right-column .diagram-capsule:nth-child(4) {
    transform: translateX(-56px);
  }
  .right-column .diagram-capsule:nth-child(1):hover,
  .right-column .diagram-capsule:nth-child(4):hover {
    transform: translateX(-56px) translateY(-4px) scale(1.02);
  }

  .right-column .diagram-capsule:nth-child(2),
  .right-column .diagram-capsule:nth-child(3) {
    transform: translateX(-6px);
  }
  .right-column .diagram-capsule:nth-child(2):hover,
  .right-column .diagram-capsule:nth-child(3):hover {
    transform: translateX(-6px) translateY(-4px) scale(1.02);
  }
}

@media (max-width: 991px) {
  .diagram-center-circle {
    width: 200px;
    height: 200px;
  }
  .diagram-column {
    gap: 16px;
  }
  .capsule-left, .capsule-right {
    padding: 10px 16px;
  }
}

/* Protection Solutions Bento Grid Section with Rich Ambient Background */
.solutions-section {
  background: linear-gradient(180deg, #ebf3fa 0%, #f4f8fc 50%, #f8fafc 100%);
  padding: 85px 0;
  position: relative;
  overflow: hidden;
}

.solutions-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(13, 169, 237, 0.16) 0%, rgba(235, 243, 250, 0) 70%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}

.solutions-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(63, 64, 147, 0.14) 0%, rgba(248, 250, 252, 0) 70%);
  filter: blur(65px);
  pointer-events: none;
  z-index: 0;
}

.solutions-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(13, 169, 237, 0.14) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.solutions-section .container {
  position: relative;
  z-index: 1;
}

.location-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: rgba(13, 169, 237, 0.08);
  border: 1px solid rgba(13, 169, 237, 0.22);
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--secondary-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.solution-bento-card {
  background: #ffffff;
  border: 1px solid rgba(63, 64, 147, 0.1);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 12px 35px rgba(63, 64, 147, 0.06);
  transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  position: relative;
}

.solution-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 169, 237, 0.35);
  box-shadow: 0 20px 45px rgba(13, 169, 237, 0.12);
}

.featured-bento {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border: 1px solid rgba(13, 169, 237, 0.25);
}

/* Bento Image Frames & Visual Headers */
.bento-img-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(13, 169, 237, 0.2);
}

.bento-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.bento-img-frame:hover .bento-card-img {
  transform: scale(1.06);
}

.bento-img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(14, 18, 38, 0.85);
  backdrop-filter: blur(10px);
  color: var(--secondary-color);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  border: 1px solid rgba(13, 169, 237, 0.3);
}

.bento-header-banner {
  position: relative;
  height: 155px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.bento-header-banner .bento-card-title {
  font-size: 1.15rem;
}

.bento-header-banner.featured-banner {
  height: 220px;
}

.bento-header-banner.featured-banner .bento-card-title {
  font-size: 1.3rem;
}

.bento-header-banner.featured-banner .bento-banner-img {
  object-position: center 75%;
}

.bento-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-header-banner:hover .bento-banner-img {
  transform: scale(1.06);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.88) 100%);
}

.banner-content-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.sm-pod {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 1.15rem;
}

.bento-icon-pod {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.bento-icon-secondary {
  background: linear-gradient(135deg, rgba(13, 169, 237, 0.15), rgba(9, 131, 185, 0.25));
  color: var(--secondary-dark);
}

.bento-icon-primary {
  background: linear-gradient(135deg, rgba(63, 64, 147, 0.15), rgba(45, 46, 109, 0.25));
  color: var(--primary-color);
}

.bento-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-neutral);
  margin-bottom: 2px;
}

.bento-card-sub {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.price-pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tag-secondary {
  background: rgba(13, 169, 237, 0.12);
  color: var(--secondary-dark);
  border: 1px solid rgba(13, 169, 237, 0.28);
}

.tag-primary {
  background: rgba(63, 64, 147, 0.12);
  color: var(--primary-color);
  border: 1px solid rgba(63, 64, 147, 0.25);
}

/* High Contrast Banner Pill Badges */
.bento-header-banner .tag-secondary {
  background: linear-gradient(135deg, #0da9ed 0%, #0983b9 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 14px rgba(13, 169, 237, 0.4);
}

.bento-header-banner .tag-primary {
  background: linear-gradient(135deg, #3f4093 0%, #2d2e6d 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(63, 64, 147, 0.4);
}

.bento-header-banner .bento-icon-pod {
  background: #ffffff;
  color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.solution-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.solution-chip-grid.columns-2 {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.solution-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid rgba(63, 64, 147, 0.08);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.featured-bento .solution-chip {
  background: rgba(255, 255, 255, 0.85);
}

.solution-chip:hover {
  background: #ffffff;
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 169, 237, 0.15);
  color: var(--primary-color);
}

.solution-chip i {
  color: var(--secondary-color);
  font-size: 1.05rem;
}

.solution-chip i.text-amber {
  color: #d97706 !important;
}

/* Creative Asymmetric Split CTA Decks */
.creative-cta-deck {
  background: linear-gradient(135deg, #1e1f53 0%, #3f4093 50%, #15163e 100%);
  border-radius: 28px;
  padding: 38px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 169, 237, 0.35);
  box-shadow: 0 25px 60px rgba(30, 31, 83, 0.35);
}

.creative-cta-deck.deck-reverse {
  background: linear-gradient(135deg, #15163e 0%, #2d2e6d 60%, #3f4093 100%);
}

.cta-mesh-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(13, 169, 237, 0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.cta-hero-image-pod {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-pod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.cta-hero-image-pod:hover .cta-pod-img {
  transform: scale(1.08);
}

.cta-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.cta-floating-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(13, 169, 237, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(13, 169, 237, 0.2);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.badge-title {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.badge-sub {
  display: block;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(13, 169, 237, 0.16);
  border: 1px solid rgba(13, 169, 237, 0.4);
  border-radius: 30px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 1px;
}

.cta-deck-heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.cta-deck-sub {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.cta-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 0.84rem;
  color: #ffffff;
}

.cta-meta-badge strong {
  color: var(--secondary-color);
  margin-left: 4px;
}

.cta-action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-creative-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  background: linear-gradient(135deg, #0da9ed 0%, #0983b9 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(13, 169, 237, 0.35);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-creative-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(13, 169, 237, 0.55);
  background: linear-gradient(135deg, #1cb6fa 0%, #0da9ed 100%);
  color: #ffffff !important;
}

.btn-creative-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  background: #ffffff;
  color: var(--primary-color) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-creative-secondary:hover {
  transform: translateY(-3px);
  background: #f0f9ff;
  color: var(--secondary-dark) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* Before & After Dual Transformation Cards */
.transform-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(63, 64, 147, 0.1);
  box-shadow: 0 12px 35px rgba(63, 64, 147, 0.06);
  transition: all 0.4s ease;
}

.transform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(13, 169, 237, 0.12);
  border-color: rgba(13, 169, 237, 0.35);
}

.transform-icon-pod {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.transform-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-neutral);
}

.transform-card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.transform-img-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(63, 64, 147, 0.12);
}

.transform-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.transform-badge-bar {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: 2;
  gap: 8px;
}

.badge-before {
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-after {
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: var(--secondary-color);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(13, 169, 237, 0.4);
}

.transform-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.sm-tag {
  font-size: 0.76rem;
  padding: 4px 12px;
}

/* Transform Carousels & Auto Sliders */
.transform-carousel {
  position: relative;
  padding-bottom: 24px;
}

.transform-indicators {
  position: absolute;
  bottom: 0;
  right: 6px;
  left: auto;
  top: auto;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.transform-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.25;
  border: none;
  transition: all 0.3s ease;
}

.transform-indicators .active {
  width: 22px;
  border-radius: 10px;
  background-color: var(--secondary-color);
  opacity: 1;
}

.transform-control {
  width: 38px;
  height: 38px;
  top: calc(50% - 12px);
  transform: translateY(-50%);
  opacity: 0.85;
  z-index: 5;
  transition: all 0.3s ease;
}

.transform-control:hover {
  opacity: 1;
}

.transform-control.carousel-control-prev {
  left: 10px;
}

.transform-control.carousel-control-next {
  right: 10px;
}

.control-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.transform-control:hover .control-circle {
  background: var(--secondary-color);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(13, 169, 237, 0.55);
}

/* Solutions for Every Type of Property - Modern Bento Grid */
.property-bento-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(63, 64, 147, 0.1);
  box-shadow: 0 10px 30px rgba(63, 64, 147, 0.05);
  transition: all 0.4s ease;
}

.property-bento-card.visual-bento-card {
  padding: 0 0 24px 0;
  overflow: hidden;
}

.visual-bento-card .property-chip-list {
  padding: 0 22px;
}

.property-card-banner {
  position: relative;
  height: 155px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.property-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.visual-bento-card:hover .property-banner-img {
  transform: scale(1.08);
}

.property-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.88) 100%);
}

.property-card-banner .banner-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: #ffffff !important;
  color: var(--primary-color) !important;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.property-banner-header {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 2;
}

.property-card-banner .property-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0da9ed 0%, #0983b9 100%) !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.property-banner-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.property-banner-sub {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.85);
  display: block;
}

.property-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(13, 169, 237, 0.12);
  border-color: rgba(13, 169, 237, 0.35);
}

.property-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.property-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-neutral);
}

.property-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.property-chip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.property-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.property-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: #ffffff;
  border: 1px solid rgba(63, 64, 147, 0.08);
  border-left: 3px solid rgba(13, 169, 237, 0.25);
  border-radius: 12px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--dark-neutral);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(63, 64, 147, 0.04);
}

.property-chip .chip-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(13, 169, 237, 0.12) 0%, rgba(63, 64, 147, 0.1) 100%);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(13, 169, 237, 0.15);
}

.property-chip:hover {
  background: #f0f9ff;
  border-left-color: var(--secondary-color);
  box-shadow: 0 4px 18px rgba(13, 169, 237, 0.12);
  transform: translateX(3px);
  color: var(--primary-color);
}

.property-chip:hover .chip-icon {
  background: linear-gradient(135deg, #0da9ed 0%, #0983b9 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(13, 169, 237, 0.4);
  border-color: transparent;
}

.property-bento-card:hover .property-chip {
  border-left-color: rgba(13, 169, 237, 0.4);
}

.property-hero-card {
  background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
  border: 1px solid rgba(13, 169, 237, 0.25);
}

.property-img-pod {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(63, 64, 147, 0.15);
}

.property-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.property-hero-card:hover .property-img-cover {
  transform: scale(1.06);
}

.property-img-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(13, 169, 237, 0.4);
}

.bento-icon-dark {
  background: rgba(15, 23, 42, 0.08);
  color: var(--primary-color);
}

/* Connected 6-Step Easy Process Workflow (Matching Reference UI) */
.easy-step-card {
  position: relative;
  padding: 38px 24px 28px;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid rgba(13, 169, 237, 0.3);
  box-shadow: 0 10px 30px rgba(63, 64, 147, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-top: 20px;
  height: calc(100% - 20px);
}

.easy-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-color);
  box-shadow: 0 18px 45px rgba(13, 169, 237, 0.18);
}

/* Top Centered Number Badge Overlapping Top Border */
.easy-step-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0da9ed 0%, #3f4093 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(13, 169, 237, 0.4);
  border: 3px solid #ffffff;
  z-index: 3;
}

/* Inner Centered Icon Box */
.easy-step-icon-box {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e1f53 0%, #3f4093 100%);
  border: 1px solid rgba(13, 169, 237, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(30, 31, 83, 0.25);
  transition: all 0.4s ease;
}

.easy-step-card:hover .easy-step-icon-box {
  background: linear-gradient(135deg, #0da9ed 0%, #0983b9 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(13, 169, 237, 0.45);
  border-color: transparent;
  transform: scale(1.06);
}

.easy-step-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark-neutral);
  margin-bottom: 10px;
}

.easy-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── About Modern Section ── */
.about-modern-section {
  background: #f8faff;
}

/* Story Panel */
.about-story-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(63, 64, 147, 0.1);
  box-shadow: 0 10px 40px rgba(63, 64, 147, 0.06);
}

.about-story-accent {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-accent-line {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0da9ed, #3f4093);
  flex-shrink: 0;
}
.about-accent-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.about-story-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-neutral);
  line-height: 1.65;
}

.about-story-body {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}





/* Leadership Row */
.about-leadership-row {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(63, 64, 147, 0.1);
  box-shadow: 0 10px 40px rgba(63, 64, 147, 0.05);
}

.about-section-sub-badge {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.about-sub-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-neutral);
}

/* Mission & Vision — Modern Cards */
.mv-card-modern {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid rgba(63, 64, 147, 0.1);
  box-shadow: 0 10px 40px rgba(63, 64, 147, 0.05);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mv-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0da9ed, #3f4093);
  border-radius: 24px 24px 0 0;
}

.mv-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(63, 64, 147, 0.12);
  border-color: rgba(13, 169, 237, 0.25);
}

.story-card-modern::before {
  background: linear-gradient(90deg, #0da9ed, #1e1f53);
}

.mission-card-modern::before {
  background: linear-gradient(90deg, #1e1f53, #3f4093);
}

.vision-card-modern::before {
  background: linear-gradient(90deg, #3f4093, #0da9ed);
}

.mv-card-icon-modern {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.mv-card-icon-modern.story-icon {
  background: linear-gradient(135deg, #0da9ed, #1e1f53);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(13, 169, 237, 0.25);
}

.mv-card-icon-modern.mission-icon {
  background: linear-gradient(135deg, #1e1f53, #3f4093);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(30, 31, 83, 0.25);
}

.mv-card-icon-modern.vision-icon {
  background: linear-gradient(135deg, #0da9ed, #0983b9);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(13, 169, 237, 0.3);
}

.mv-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-neutral);
  margin-bottom: 14px;
}

.mv-card-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Executive Leadership Section */
.about-leadership-row {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(63, 64, 147, 0.1);
  box-shadow: 0 12px 40px rgba(63, 64, 147, 0.05);
  position: relative;
  overflow: hidden;
  max-width: 840px;
  margin: 0 auto;
}

.about-leadership-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0da9ed, #3f4093, #0da9ed);
}

.executive-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border-radius: 24px;
  padding: 32px 16px;
  border: 1px solid rgba(63, 64, 147, 0.12);
  box-shadow: 0 10px 30px rgba(63, 64, 147, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.executive-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 169, 237, 0.35);
  box-shadow: 0 20px 45px rgba(13, 169, 237, 0.16);
  background: #ffffff;
}

.executive-img-wrapper {
  position: relative;
  width: 165px;
  height: 165px;
  margin: 0 auto 24px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #0da9ed 0%, #3f4093 100%);
  box-shadow: 0 10px 28px rgba(13, 169, 237, 0.25);
  transition: all 0.4s ease;
}

.executive-card:hover .executive-img-wrapper {
  transform: scale(1.04);
  box-shadow: 0 14px 36px rgba(13, 169, 237, 0.4);
}

.executive-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 3px solid #ffffff;
  transition: all 0.4s ease;
}

.executive-role-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0f172a 0%, #1e1f53 100%);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  white-space: nowrap;
  border: 1px solid rgba(13, 169, 237, 0.45);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
  display: inline-flex;
  align-items: center;
}

.executive-name {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 800;
  color: var(--dark-neutral);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.executive-card:hover .executive-name {
  color: var(--secondary-color);
}

/* Mission & Vision Section */
.mv-card {
  background: var(--white);
  border-radius: 16px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

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

.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(63, 64, 147, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.mv-card.vision-card .mv-icon {
  background: rgba(13, 169, 237, 0.1);
  color: var(--secondary-color);
}

/* Testimonials Section */
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 26px;
  border: 1px solid rgba(63, 64, 147, 0.12);
  box-shadow: 0 10px 30px rgba(63, 64, 147, 0.05);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 169, 237, 0.35);
  box-shadow: 0 18px 40px rgba(13, 169, 237, 0.14);
}

.testimonial-stars {
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary-color);
  background: rgba(13, 169, 237, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(13, 169, 237, 0.25);
  white-space: nowrap;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.65;
  font-style: italic;
}

.testimonial-author {
  border-color: rgba(63, 64, 147, 0.08) !important;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e1f53, #3f4093);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 31, 83, 0.2);
}

.author-avatar.avatar-purple {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.author-avatar.avatar-cyan {
  background: linear-gradient(135deg, #0da9ed, #0983b9);
}

.author-avatar.avatar-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-neutral);
}

.author-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Testimonial Carousel Controls & Indicators */
.testimonial-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: var(--secondary-color) !important;
  opacity: 0.3 !important;
  border: none !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
}

.testimonial-indicators button.active {
  width: 32px !important;
  border-radius: 20px !important;
  opacity: 1 !important;
  background-color: var(--secondary-color) !important;
}

.testimonial-control-prev,
.testimonial-control-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(63, 64, 147, 0.15);
  box-shadow: 0 6px 18px rgba(63, 64, 147, 0.1);
  color: var(--primary-color);
  font-size: 1.2rem;
  top: 42%;
  transform: translateY(-50%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.testimonial-control-prev {
  left: -24px;
}

.testimonial-control-next {
  right: -24px;
}

.testimonial-control-prev:hover,
.testimonial-control-next:hover {
  background: var(--secondary-color);
  color: #ffffff;
  border-color: var(--secondary-color);
  opacity: 1;
  box-shadow: 0 8px 24px rgba(13, 169, 237, 0.35);
}

@media (max-width: 768px) {
  .testimonial-control-prev {
    left: 0;
  }
  .testimonial-control-next {
    right: 0;
  }
}

/* FAQ Modern Section */
.faq-modern-section {
  background: #ffffff;
  padding: 40px 0 !important;
}

.faq-item-modern {
  background: #ffffff;
  border-radius: 16px !important;
  border: 1px solid rgba(63, 64, 147, 0.12) !important;
  box-shadow: 0 6px 20px rgba(63, 64, 147, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 4px solid rgba(13, 169, 237, 0.25) !important;
}

.faq-item-modern:hover {
  border-left-color: var(--secondary-color) !important;
  box-shadow: 0 10px 28px rgba(13, 169, 237, 0.1);
  transform: translateY(-2px);
}

.faq-btn-modern {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-neutral);
  background: #ffffff;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.faq-btn-modern:not(.collapsed) {
  background: linear-gradient(135deg, rgba(13, 169, 237, 0.06) 0%, rgba(63, 64, 147, 0.03) 100%);
  color: var(--primary-color);
  border-bottom: 1px solid rgba(63, 64, 147, 0.08);
}

.faq-num-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0da9ed18 0%, #3f409318 100%);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(13, 169, 237, 0.2);
  transition: all 0.3s ease;
}

.faq-btn-modern:not(.collapsed) .faq-num-badge {
  background: linear-gradient(135deg, #0da9ed 0%, #3f4093 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(13, 169, 237, 0.3);
}

.faq-question-text {
  flex-grow: 1;
}

.faq-body-modern {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  padding: 18px 22px 22px 22px;
  background: #ffffff;
}

.solutions-section {
  padding: 32px 0 !important;
  position: relative;
}

/* Bottom Modern CTA Banner Section */
.cta-section-modern {
  background: #f8faff;
  padding: 30px 0 !important;
}

.cta-banner-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e1f53 60%, #0c2040 100%);
  border-radius: 28px;
  border: 1px solid rgba(13, 169, 237, 0.35);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.orb-1 {
  width: 250px;
  height: 250px;
  background: rgba(13, 169, 237, 0.25);
  top: -50px;
  left: -50px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, 0.2);
  bottom: -80px;
  right: -50px;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}

.text-cyan-glow {
  background: linear-gradient(135deg, #0da9ed 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.cta-action-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer-custom {
  background: linear-gradient(135deg, #0f172a 0%, #1e1f53 100%) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 70px 0 30px;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.footer-custom h3,
.footer-custom h4 {
  color: #ffffff !important;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.footer-brand-logo:hover {
  transform: translateY(-2px);
}

.footer-logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

.footer-desc-text {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  line-height: 1.65;
  font-size: 0.92rem;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-social-icon:hover {
  background: linear-gradient(135deg, #0da9ed 0%, #3f4093 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(13, 169, 237, 0.4);
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.footer-contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(13, 169, 237, 0.2) 0%, rgba(63, 64, 147, 0.3) 100%);
  border: 1px solid rgba(13, 169, 237, 0.35);
  color: #0da9ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-call-card {
  background: linear-gradient(135deg, rgba(13, 169, 237, 0.12) 0%, rgba(63, 64, 147, 0.18) 100%);
  border: 1px solid rgba(13, 169, 237, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.footer-call-card:hover {
  transform: translateY(-2px);
  border-color: var(--secondary-color);
}

.footer-office-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-office-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(13, 169, 237, 0.4);
  transform: translateY(-3px);
}

.footer-phone-link {
  font-size: 1rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer-email-link {
  font-size: 0.82rem;
  white-space: nowrap;
  display: block;
  letter-spacing: -0.02em;
}

.x-small {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.leading-relaxed {
  line-height: 1.6;
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Sticky Mobile Quick Call Bar */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  padding: 5px 10px;
  display: flex;
  gap: 8px;
  z-index: 1000;
}

.mobile-call-bar a {
  flex: 1;
  text-align: center;
  padding: 6px 10px;
  font-size: 0.78rem;
  border-radius: 6px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .mobile-call-bar {
    display: none;
  }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE & RESPONSIVE BREAKPOINTS (320px to 991px)
   ========================================================================== */

/* Tablet & Mobile Landscape (< 991px) */
@media (max-width: 991px) {
  .section-main-heading {
    font-size: 1.85rem !important;
  }
  
  .section-title-wrapper {
    margin-bottom: 24px !important;
  }

  .cta-banner-title {
    font-size: 1.75rem !important;
  }

  .easy-step-card {
    margin-bottom: 12px;
  }
}

/* Mobile Devices & Small Tablets (< 767px) */
@media (max-width: 767px) {
  body {
    padding-bottom: 45px; /* Space for reduced sticky mobile quick call bar */
  }

  .navbar-custom {
    top: 8px;
    width: calc(100% - 16px);
    padding: 4px 10px;
  }

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

  .navbar-custom .btn-rms-primary {
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  .hero-section {
    padding: 145px 0 35px !important;
  }

  .hero-title {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
  }

  .hero-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
  }

  .hero-form-card {
    padding: 18px !important;
    border-radius: 20px !important;
  }

  .highlights-floating-bar {
    padding: 16px 12px !important;
    border-radius: 20px !important;
  }

  .highlight-item-inner {
    padding: 6px 4px !important;
    gap: 8px !important;
  }

  .highlight-icon-glow {
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
  }

  .highlight-stat-num {
    font-size: 1.2rem !important;
    white-space: nowrap !important;
    letter-spacing: -0.02em !important;
  }

  .highlight-label-text {
    font-size: 0.72rem !important;
    line-height: 1.2 !important;
  }

  .bento-banner-img {
    height: 180px !important;
  }

  .banner-content-wrap {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .price-pill-tag {
    align-self: flex-start !important;
    font-size: 0.75rem !important;
    padding: 4px 10px !important;
  }

  .transform-img-frame img,
  .transform-img {
    height: 220px !important;
    object-fit: cover !important;
  }

  .transform-badge-bar {
    font-size: 0.72rem !important;
    flex-direction: column;
    gap: 4px;
  }

  .testimonial-control-prev {
    left: -4px !important;
  }

  .testimonial-control-next {
    right: -4px !important;
  }

  .testimonial-control-prev,
  .testimonial-control-next {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
  }

  .faq-btn-modern {
    padding: 14px 16px !important;
    font-size: 0.95rem !important;
  }

  .faq-body-modern {
    padding: 14px 16px 18px 16px !important;
    font-size: 0.88rem !important;
  }

  .cta-banner-card {
    padding: 20px 16px !important;
    border-radius: 20px !important;
  }

  .cta-trust-pill {
    font-size: 0.75rem !important;
    padding: 4px 10px !important;
  }

  .footer-custom {
    padding: 40px 0 25px !important;
  }

  .footer-office-card {
    padding: 16px !important;
  }
}

/* Small Smartphone Screen Widths (< 575px) */
@media (max-width: 575px) {
  .solution-chip-grid {
    grid-template-columns: 1fr !important;
  }

  .solution-chip {
    font-size: 0.82rem !important;
    padding: 8px 12px !important;
  }

  .hero-cta-group a {
    width: 100%;
    justify-content: center;
  }

  .footer-call-card {
    padding: 12px 14px !important;
  }

  .footer-phone-link {
    font-size: 0.95rem !important;
  }

  .footer-email-link {
    font-size: 0.82rem !important;
  }
}

/* Floating WhatsApp Action Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 85px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45) !important;
  transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 1040;
}

.whatsapp-float-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6) !important;
  color: #ffffff !important;
}

/* Floating Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0da9ed 0%, #1e1f53 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  box-shadow: none !important;
  transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 1050;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: linear-gradient(135deg, #3f4093 0%, #0da9ed 100%);
  transform: translateY(-4px);
  color: #ffffff !important;
}

@media (max-width: 767px) {
  .whatsapp-float-btn {
    bottom: 58px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }

  .scroll-top-btn {
    bottom: 58px;
    right: 64px;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

/* Authorised Distributors & Brand Partners Section */
.distributors-section {
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  position: relative;
}

.distributor-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(13, 169, 237, 0.12);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  position: relative;
  overflow: hidden;
}

.distributor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(13, 169, 237, 0.2);
  border-color: rgba(13, 169, 237, 0.4);
  background: #ffffff;
}

.distributor-logo-img {
  max-height: 64px;
  max-width: 92%;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

