:root {
  --themeColor: #85C226;
  --primaryColor: #29146A;
  --secondaryColor: #019240;
  --blackColor: #000;
  --whiteColor: #fff;
  --textcolor: #1a1e25;
  --textLightColor: #E8E8E8;
}

/* CUSTOM CSS HERE */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal !important;
}

/* SCROLL ANIMATIONS */

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Slide Up Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide In From Left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide In From Right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale In Animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in.animated {
  animation-name: fadeIn;
}

.slide-up.animated {
  animation-name: slideUp;
}

.slide-in-left.animated {
  animation-name: slideInLeft;
}

.slide-in-right.animated {
  animation-name: slideInRight;
}

.scale-in.animated {
  animation-name: scaleIn;
}

/* Stagger Animation Delays */
.animate-on-scroll.delay-1 {
  animation-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  animation-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  animation-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  animation-delay: 0.4s;
}

.animate-on-scroll.delay-5 {
  animation-delay: 0.5s;
}

.animate-on-scroll.delay-6 {
  animation-delay: 0.6s;
}

body {
  margin: 0;
  padding: 0;
  height: 100dvh;
  font-weight: 400;
  box-sizing: border-box;
  line-height: normal;
  background-color: var(--whiteColor) !important;
}

/* Custom Scrollbar */
.page-scroll-area {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.page-scroll-area::-webkit-scrollbar {
  width: 4px;
}

.page-scroll-area::-webkit-scrollbar-track {
  background: #b1b1b1c0;
  border-radius: 10px;
}

.page-scroll-area::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 10px;
}

.container {
  max-width: 1260px !important;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none !important;
}

/* FONT SIZE */
.font-36 {
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem) !important;
}

.font-24 {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem) !important;
}

.font-20 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem) !important;
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem) !important;
}

.font-16 {
  font-size: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem);
}

.font-14 {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) !important;
}

.font-12 {
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) !important;
}

.font-10 {
  font-size: 10px;
}

.max-w-100 {
  max-width: 100% !important;
}

/* FONT WEIGHT */
.light{
  font-weight: 300;
}
.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* COLOR */
.primaryColor {
  color: var(--primaryColor);
}

.themeColor {
  color: var(--themeColor);
}

.secondaryColor {
  color: var(--secondaryColor);
}

.textColor {
  color: var(--textcolor);
}

.line-height-26 {
  line-height: 26px !important;
}

.line-height-28 {
  line-height: 28px !important;
}

.line-height-22 {
  line-height: 22px !important;
}

.cursor-pointer {
  cursor: pointer;
}

/* ---------------- SECTION HEADER (COMMON) ---------------- */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 0.625rem + 0.4vw, 1rem);
  margin-bottom: clamp(2.5rem, 2rem + 1vw, 3.5rem);
  position: relative;
}

.section-heading {
  font-size: clamp(2rem, 1.75rem + 1.2vw, 3rem);
  color: var(--primaryColor);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(3.5rem, 3rem + 1vw, 5rem);
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 2px;
}

.section-subheading {
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  color: rgba(26, 30, 37, 0.65);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  max-width: 600px;
}

/* ---------------- NAVBAR GLOBAL ---------------- */
/* Top Header */
.top-header {
  background: linear-gradient(135deg, #001354 0%, #010D3E 100%);
  padding: clamp(0.5rem, 0.4rem + 0.4vw, 0.625rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.top-header-wrapper {
  z-index: 1;
}

.top-header-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.5rem, 0.4494rem + 0.2532vw, 0.75rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-header-link:hover {
  color: var(--themeColor);
}

.top-header-link svg {
  stroke: currentColor;
  width: 13px;
  height: 13px;
  transition: stroke 0.3s ease;
}

.top-header-link img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
  width: 13px;
  height: 13px;
}

.top-header-link:hover img {
  filter: brightness(0) saturate(100%) invert(73%) sepia(28%) saturate(1234%) hue-rotate(33deg) brightness(95%) contrast(85%);
}

.navbar-container {
  width: 100%;
  background: var(--whiteColor);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 998;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.nav-logo img {
  transition: all 0.3s ease;
  height: 70px;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-container {
  padding: 0;
}

.nav-toggle {
  width: 1.5rem;
  height: 1.125rem;
  display: flex;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.nav-toggle span {
  width: 100%;
  height: 0.1875rem;
  background: var(--primaryColor);
  border-radius: 0.125rem;
  transition: all 0.4s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 1rem;
  background: var(--whiteColor);
  width: 15rem;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  /* gap: 0.5rem; */
  margin-top: 0.5rem;
}

.nav-link-item {
  color: var(--primaryColor);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link-item::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 0.5rem;
  width: 0;
  height: 2px;
  background: var(--themeColor);
  transition: width 0.3s ease;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--themeColor);
  background: rgba(133, 194, 38, 0.05);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
  width: 2rem;
}

/* Search Bar in Navbar */
.nav-search-wrapper {
  margin-top: 0.5rem;
}

.nav-search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search-input {
  width: 100%;
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  border: 2px solid rgba(133, 194, 38, 0.2);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--primaryColor);
  background: var(--whiteColor);
  transition: all 0.3s ease;
  outline: none;
}

.nav-search-input:focus {
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(133, 194, 38, 0.1);
}

.nav-search-input::placeholder {
  color: rgba(26, 30, 37, 0.5);
}

.nav-search-btn {
  position: absolute;
  right: 0.5rem;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border: none;
  border-radius: 0.375rem;
  padding: 0.375rem 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-search-btn svg {
  stroke: var(--whiteColor);
  transition: transform 0.3s ease;
}

.nav-search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(133, 194, 38, 0.3);
}

.nav-search-btn:hover svg {
  transform: scale(1.1);
}

.nav-search-btn:active {
  transform: scale(0.95);
}

.nav-btn {
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  color: var(--whiteColor) !important;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 50%, var(--themeColor) 100%);
  background-size: 200% 200%;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: navGradientShift 3s ease infinite, navPulse 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.35), 0 0 0 0 rgba(133, 194, 38, 0.45);
  transition: all 0.3s ease;
}

@keyframes navGradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes navPulse {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(133, 194, 38, 0.35), 0 0 0 0 rgba(133, 194, 38, 0.45);
  }

  50% {
    box-shadow: 0 8px 25px rgba(133, 194, 38, 0.55), 0 0 0 10px rgba(133, 194, 38, 0);
  }
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: navShine 2.2s ease-in-out infinite;
}

@keyframes navShine {
  0% {
    left: -120%;
  }

  50%,
  100% {
    left: 120%;
  }
}

.nav-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(133, 194, 38, 0.6), 0 0 0 0 rgba(133, 194, 38, 0);
  animation: none;
  background-position: 100% 50%;
}

.nav-btn:active {
  transform: translateY(-1px) scale(0.97);
}


/* --- HOW IT WORKS SECTION----- */
.how-it-works-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #ffffff 100%);
  padding: clamp(4rem, 3.5rem + 2vw, 6rem) 0;
}

.how-it-works-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.how-it-works-bg-shape.shape-1 {
  width: clamp(18.75rem, 15rem + 15vw, 31.25rem);
  height: clamp(18.75rem, 15rem + 15vw, 31.25rem);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  top: -10%;
  left: -5%;
  animation: float 20s ease-in-out infinite;
}

.how-it-works-bg-shape.shape-2 {
  width: clamp(15.625rem, 12.5rem + 12.5vw, 25rem);
  height: clamp(15.625rem, 12.5rem + 12.5vw, 25rem);
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--secondaryColor) 100%);
  bottom: -5%;
  right: -5%;
  animation: float 25s ease-in-out infinite reverse;
}

.how-it-works-bg-shape.shape-3 {
  width: clamp(12.5rem, 10rem + 10vw, 18.75rem);
  height: clamp(12.5rem, 10rem + 10vw, 18.75rem);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 30s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* Section Badge */
.section-badge {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.08) 0%, rgba(1, 146, 64, 0.08) 100%);
  border: 1px solid rgba(133, 194, 38, 0.2);
  border-radius: 50px;
  color: var(--secondaryColor);
  letter-spacing: 0.5px;
  margin-bottom: clamp(0.75rem, 0.5rem + 0.5vw, 1rem);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.section-badge svg {
  stroke: var(--themeColor);
}


/* Connecting Line Between Cards - Individual Connectors */
.card-connector {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(133, 194, 38, 0.6) 0%,
      rgba(133, 194, 38, 0.3) 100%);
  z-index: 0;
  border-radius: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.card-connector::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  animation: connectorProgress 4s ease-in-out infinite;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(133, 194, 38, 0.5);
}

.card-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  background: rgba(133, 194, 38, 0.1);
  filter: blur(8px);
}

@keyframes connectorProgress {
  0% {
    width: 0;
    opacity: 0.7;
  }

  50% {
    width: 100%;
    opacity: 1;
  }

  100% {
    width: 0;
    opacity: 0.7;
  }
}

.how-it-works-card {
  background: var(--whiteColor);
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  padding: clamp(2rem, 1.75rem + 1vw, 3rem) clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
  padding-top: clamp(3.5rem, 3rem + 2vw, 5rem);
  box-shadow: 0 4px 20px rgba(41, 20, 106, 0.06);
  border: 1px solid rgba(41, 20, 106, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: visible;
  z-index: 2;
}

.how-it-works-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(41, 20, 106, 0.15);
  border-color: rgba(133, 194, 38, 0.3);
}

.step-number-wrapper {
  top: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  right: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  z-index: 3;
}

.step-number {
  width: clamp(2.5rem, 2.25rem + 1vw, 3.5rem);
  height: clamp(2.5rem, 2.25rem + 1vw, 3.5rem);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 50%;
  color: var(--whiteColor);
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.how-it-works-card:hover .step-number {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 6px 25px rgba(133, 194, 38, 0.5);
}

.step-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  opacity: 0.4;
  animation: stepPulse 2s ease-out infinite;
  z-index: 1;
}

@keyframes stepPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.how-it-works-icon-wrapper {
  width: clamp(5rem, 4.5rem + 2vw, 7rem);
  height: clamp(5rem, 4.5rem + 2vw, 7rem);
  margin-bottom: clamp(0.75rem, 0.3956rem + 1.7722vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.icon-bg-circle {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.08) 0%, rgba(1, 146, 64, 0.08) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: 1;
}

.how-it-works-card:hover .icon-bg-circle {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  transform: scale(1.15) rotate(180deg);
  box-shadow: 0 8px 30px rgba(133, 194, 38, 0.3);
}

.how-it-works-icon {
  stroke: var(--themeColor);
  width: clamp(2rem, 1.75rem + 1vw, 3rem);
  height: clamp(2rem, 1.75rem + 1vw, 3rem);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  stroke-width: 2;
}

.how-it-works-card:hover .how-it-works-icon {
  stroke: var(--whiteColor);
  transform: scale(1.1);
}

.how-it-works-title {
  color: var(--primaryColor);
  margin-bottom: clamp(0.75rem, 0.625rem + 0.5vw, 1.25rem);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.how-it-works-card:hover .how-it-works-title {
  color: var(--secondaryColor);
}

.how-it-works-desc {
  color: rgba(26, 30, 37, 0.7);
  transition: color 0.3s ease;
}

.line-height-26 {
  line-height: 26px !important;
}

.how-it-works-card:hover .how-it-works-desc {
  color: rgba(26, 30, 37, 0.85);
}

.card-hover-effect {
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(133, 194, 38, 0.02) 100%);
  transition: height 0.4s ease;
  z-index: 1;
}

.how-it-works-card:hover .card-hover-effect {
  height: 100%;
}

.how-it-works-cta-btn {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: var(--whiteColor);
  border-radius: clamp(0.625rem, 0.5rem + 0.5vw, 1rem);
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(133, 194, 38, 0.35);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2s ease-in-out infinite, ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(133, 194, 38, 0.35);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(133, 194, 38, 0.5);
  }
}

@keyframes ctaGlow {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(133, 194, 38, 0.35), 0 0 0 0 rgba(133, 194, 38, 0.4);
  }

  50% {
    box-shadow: 0 12px 35px rgba(133, 194, 38, 0.5), 0 0 0 15px rgba(133, 194, 38, 0);
  }
}

.how-it-works-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: ctaShine 3s ease-in-out infinite;
}

@keyframes ctaShine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.how-it-works-cta-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 15px 40px rgba(133, 194, 38, 0.6);
  color: var(--whiteColor);
}

.how-it-works-cta-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.how-it-works-cta-btn svg {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.how-it-works-cta-btn:hover svg {
  transform: translateX(5px);
  animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateX(5px);
  }

  50% {
    transform: translateX(10px);
  }
}

.how-it-works-cta-btn span {
  position: relative;
  z-index: 1;
}

.cta-btn-shine {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  display: none;
}

.how-it-works-cta-btn:hover .cta-btn-shine {
  left: 100%;
}

@media (max-width: 991px) {
  .how-it-works-card {
    padding-top: clamp(3rem, 2.5rem + 2vw, 4rem);
  }

  .step-number-wrapper {
    top: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem);
    right: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem);
  }
}

@media (max-width: 767px) {
  .how-it-works-section {
    padding: clamp(3rem, 2.5rem + 2vw, 4rem) 0;
  }

  .how-it-works-card:hover {
    transform: translateY(-8px);
  }
}

/* Why Choose AssureShift */
.why-us-cards {
  padding: clamp(4rem, 3.5rem + 2vw, 6rem) 0;
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #85C226, #019240);
  color: #ffffff;
  font-size: 22px;
  box-shadow: 0 10px 28px rgba(133, 194, 38, 0.35);
}

/* ---------------- SERVICES SECTION ---------------- */
.services-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
  padding: clamp(4rem, 3.5rem + 2vw, 6rem) 0;
}

.service-card {
  background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  padding: 26px;
  padding-right: clamp(4.5rem, 4rem + 2vw, 6rem);
  box-shadow: 0 8px 30px rgba(41, 20, 106, 0.1);
  border: 1px solid rgba(41, 20, 106, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 50px rgba(41, 20, 106, 0.18);
}

.service-accent {
  width: clamp(2.5rem, 2rem + 2vw, 3rem);
  background: linear-gradient(180deg, var(--secondaryColor) 0%, var(--themeColor) 100%);
  border-radius: 0 clamp(1rem, 0.875rem + 0.5vw, 1.5rem) clamp(1rem, 0.875rem + 0.5vw, 1.5rem) 0;
}

.service-number {
  font-size: 34px;
  color: var(--whiteColor);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  background-color: #06943e;
  height: 60px;
  text-align: center;
  width: 50px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.service-icon-box {
  width: clamp(3.125rem, 2.9351rem + 0.9494vw, 4.0625rem);
  height: clamp(3.125rem, 2.9351rem + 0.9494vw, 4.0625rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1) 0%, rgba(1, 146, 64, 0.1) 100%);
  border-radius: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(133, 194, 38, 0.35);
}

.service-icon-box svg {
  stroke: var(--primaryColor);
  width: clamp(1.75rem, 1.5rem + 1vw, 2rem);
  height: clamp(1.75rem, 1.5rem + 1vw, 2rem);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-box svg {
  stroke: var(--whiteColor);
  transform: scale(1.05);
}

.service-title {
  color: var(--primaryColor);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--secondaryColor);
}

.service-desc {
  color: rgba(26, 30, 37, 0.65);
  line-height: 1.7;
  transition: color 0.3s ease;
}

.service-card:hover .service-desc {
  color: rgba(26, 30, 37, 0.8);
}

.service-tag {
  background: rgba(133, 194, 38, 0.08);
  color: var(--secondaryColor);
  padding: clamp(0.375rem, 0.3rem + 0.3vw, 0.5rem) clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  border-radius: clamp(0.375rem, 0.3rem + 0.3vw, 0.5rem);
  border: 1px solid rgba(133, 194, 38, 0.2);
  transition: all 0.3s ease;
}

.service-card:hover .service-tag {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: var(--whiteColor);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(133, 194, 38, 0.25);
}

@media (max-width: 991px) {
  .services-section {
    padding: clamp(3rem, 2.5rem + 2vw, 4rem) 0;
  }

  .service-card {
    padding-right: clamp(4rem, 3.5rem + 2vw, 5rem);
  }

  .service-card:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 767px) {
  .service-card {
    padding-right: clamp(3.5rem, 3rem + 2vw, 4.5rem);
  }

  .service-card:hover {
    transform: translateY(-4px);
  }
}

/* ---------------- FAQ SECTION ---------------- */
.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  padding: clamp(4rem, 3.5rem + 2vw, 6rem) 0;
}

.faq-list.accordion {
  gap: clamp(0.75rem, 0.625rem + 0.3vw, 1rem);
}

.faq-item.accordion-item {
  background: var(--whiteColor);
  border-radius: clamp(0.875rem, 0.75rem + 0.3vw, 1.125rem);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(41, 20, 106, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(41, 20, 106, 0.08);
  margin-bottom: clamp(0.75rem, 0.625rem + 0.3vw, 1rem);
}

.faq-item.accordion-item:last-child {
  margin-bottom: 0;
}

.faq-item.accordion-item:hover {
  box-shadow: 0 6px 24px rgba(41, 20, 106, 0.12);
  border-color: rgba(133, 194, 38, 0.3);
  transform: translateY(-2px);
}

.faq-question.accordion-button {
  background: var(--whiteColor);
  border: none;
  padding: clamp(1rem, 0.9rem + 0.3vw, 1.375rem) clamp(1.25rem, 1.125rem + 0.4vw, 1.625rem);
  padding-right: clamp(3.5rem, 3rem + 1vw, 4.5rem);
  color: var(--primaryColor);
  text-align: left;
  transition: all 0.3s ease;
  line-height: 1.4;
  box-shadow: none;
}

.faq-question.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.04) 0%, rgba(1, 146, 64, 0.04) 100%);
  color: var(--secondaryColor);
  border-bottom: 1px solid rgba(133, 194, 38, 0.1);
  box-shadow: none;
}

.faq-question.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-question.accordion-button:hover {
  color: var(--themeColor);
}

.faq-icon {
  min-width: clamp(2.5rem, 2.25rem + 0.5vw, 3rem);
  height: clamp(2.5rem, 2.25rem + 0.5vw, 3rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.08) 0%, rgba(1, 146, 64, 0.08) 100%);
  border-radius: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem);
  transition: all 0.3s ease;
  margin-right: clamp(0.875rem, 0.75rem + 0.3vw, 1.125rem);
}

.faq-icon svg {
  stroke: var(--themeColor);
  width: clamp(1.25rem, 1.125rem + 0.3vw, 1.5rem);
  height: clamp(1.25rem, 1.125rem + 0.3vw, 1.5rem);
  stroke-width: 2.5;
}

.faq-question.accordion-button:not(.collapsed) .faq-icon {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  box-shadow: 0 4px 12px rgba(133, 194, 38, 0.25);
}

.faq-question.accordion-button:not(.collapsed) .faq-icon svg {
  stroke: var(--whiteColor);
}

.faq-question.accordion-button::after {
  display: none;
}

.faq-arrow {
  right: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(1.75rem, 1.5rem + 0.5vw, 2.25rem);
  height: clamp(1.75rem, 1.5rem + 0.5vw, 2.25rem);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0.9;
  pointer-events: none;
}

.faq-arrow::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.375rem, 1.25rem + 0.3vw, 1.625rem);
  font-weight: 400;
  color: var(--whiteColor);
  transition: all 0.3s ease;
  line-height: 1;
}

.faq-question.accordion-button:not(.collapsed) .faq-arrow {
  opacity: 1;
  box-shadow: 0 4px 12px rgba(133, 194, 38, 0.25);
}

.faq-question.accordion-button:not(.collapsed) .faq-arrow::before {
  content: "−";
}

.faq-answer.accordion-body {
  padding: 0 clamp(1.25rem, 1.125rem + 0.4vw, 1.625rem);
  padding-left: clamp(4.25rem, 3.75rem + 1vw, 5.25rem);
  padding-bottom: clamp(1rem, 0.9rem + 0.3vw, 1.375rem);
  color: rgba(26, 30, 37, 0.7);
  line-height: 1.6;
}

.faq-answer-content {
  padding-top: clamp(0.375rem, 0.3rem + 0.2vw, 0.625rem);
  line-height: 22px !important;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: var(--whiteColor);
  padding: clamp(3.75rem, 3rem + 3vw, 5rem) 0 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--themeColor) 50%, transparent 100%);
  opacity: 0.6;
}

.footer-logo {
  width: clamp(8.75rem, 8rem + 3vw, 10rem);
  transition: transform 0.3s ease;
  background: var(--whiteColor);
  padding: 12px;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-desc {
  color: rgba(244, 244, 244, 0.75);
  line-height: 1.7;
}

.footer-title {
  margin-bottom: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  color: var(--whiteColor);
  letter-spacing: 0.5px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: clamp(2.5rem, 2rem + 2vw, 3.125rem);
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, transparent 100%);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 5px;
}

.footer-links {
  gap: 12px;
}

.footer-links a {
  color: rgba(244, 244, 244, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  color: var(--themeColor);
  transition: all 0.3s ease;
  font-weight: bold;
}

.footer-links a:hover {
  color: var(--themeColor);
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-contact p {
  color: rgba(244, 244, 244, 0.7);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(244, 244, 244, 0.7);
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--whiteColor);
  transform: translateX(5px);
}

.footer-contact a svg {
  stroke: rgba(244, 244, 244, 0.7);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-contact a:hover svg {
  stroke: var(--themeColor);
}

.footer-contact-link {
  color: rgba(244, 244, 244, 0.7);
  transition: color 0.3s ease;
}

.footer-contact a:hover .footer-contact-link {
  color: var(--whiteColor);
}

.footer-contact .semibold {
  color: var(--whiteColor);
}

.footer-icon {
  width: clamp(2.5rem, 2.25rem + 1vw, 2.875rem);
  height: clamp(2.5rem, 2.25rem + 1vw, 2.875rem);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  aspect-ratio: 1;
}

.footer-icon img {
  filter: brightness(0) invert(1);
  width: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  height: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  object-fit: contain;
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-color: var(--themeColor);
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 20px rgba(133, 194, 38, 0.4);
}

.footer-icon:hover img {
  transform: scale(1.1);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent 100%);
}

.footer-legal-link {
  color: rgba(244, 244, 244, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.footer-legal-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--themeColor);
  transition: width 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--whiteColor);
}

.footer-legal-link:hover::after {
  width: 100%;
}

.footer-separator {
  color: rgba(244, 244, 244, 0.3);
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    gap: 0.5rem;
    margin-top: 0;
  }

  .nav-link-item {
    padding: 0.5rem 1rem;
  }

  .nav-link-item::after {
    left: 50%;
    bottom: 0.25rem;
    transform: translateX(-50%);
  }

  .nav-link-item:hover,
  .nav-link-item.active {
    transform: translateY(0);
  }

  .nav-link-item:hover::after,
  .nav-link-item.active::after {
    width: 50%;
  }

  .nav-search-wrapper {
    margin-top: 0;
    margin-left: 1rem;
  }

  .nav-search-form {
    width: 200px;
  }

  .nav-search-input {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 991px) {
  .nav-menu {
    align-items: flex-start;
  }
}


/* ---------------- WHY CHOOSE SECTION ---------------- */
.why-choose-section {
  background: linear-gradient(135deg, #29146A 0%, #1a0d4a 50%, #29146A 100%);
  padding: clamp(4rem, 3.5rem + 2vw, 6rem) 0;
}

.why-choose-section .section-heading {
  color: var(--whiteColor);
}

.why-choose-section .section-heading::after {
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
}

.why-choose-section .section-subheading {
  color: rgba(255, 255, 255, 0.8);
}

.why-choose-section .section-badge {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.15) 0%, rgba(1, 146, 64, 0.15) 100%);
  border: 1px solid rgba(133, 194, 38, 0.3);
  color: var(--themeColor);
}

.why-choose-bg-pattern {
  width: clamp(18.75rem, 15rem + 15vw, 31.25rem);
  height: clamp(18.75rem, 15rem + 15vw, 31.25rem);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}

.why-choose-bg-pattern.pattern-1 {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  top: -10%;
  right: -5%;
  animation: floatPattern 25s ease-in-out infinite;
}

.why-choose-bg-pattern.pattern-2 {
  background: linear-gradient(135deg, var(--secondaryColor) 0%, var(--themeColor) 100%);
  bottom: -10%;
  left: -5%;
  animation: floatPattern 30s ease-in-out infinite reverse;
}

@keyframes floatPattern {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, -50px) scale(1.1);
  }
}

.why-feature-item {
  transition: all 0.3s ease;
  padding: clamp(1rem, 0.75rem + 1vw, 1.5rem);
  border-radius: clamp(0.75rem, 0.625rem + 0.5vw, 1.25rem);
}

.why-feature-item:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(8px);
}

.why-feature-icon-wrapper {
  width: clamp(3rem, 2.75rem + 1vw, 3.75rem);
  height: clamp(3rem, 2.75rem + 1vw, 3.75rem);
}

.why-feature-icon-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.15) 0%, rgba(1, 146, 64, 0.15) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.why-feature-item:hover .why-feature-icon-bg {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  transform: scale(1.15) rotate(180deg);
  box-shadow: 0 8px 25px rgba(133, 194, 38, 0.4);
}

.why-feature-icon {
  stroke: var(--themeColor);
  transition: all 0.4s ease;
}

.why-feature-item:hover .why-feature-icon {
  stroke: var(--whiteColor);
  transform: scale(1.1);
}

.why-feature-title {
  color: var(--whiteColor);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.why-feature-item:hover .why-feature-title {
  color: var(--themeColor);
}

.why-feature-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6 !important;
  transition: color 0.3s ease;
}

.why-feature-item:hover .why-feature-desc {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
  .why-choose-section {
    padding: clamp(3rem, 2.5rem + 2vw, 4rem) 0;
  }

  .why-feature-item:hover {
    transform: translateX(5px);
  }
}

/* ---------------- SERVICES SECTION ---------------- */

.service-block {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  padding: clamp(3.5rem, 3rem + 1.5vw, 5rem) 0;
}


/* ---------------- CITY COVERAGE SECTION - OPTIMIZED ---------------- */
.city-coverage-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
  padding: clamp(4rem, 3.5rem + 2vw, 6rem) 0;
}

.city-card-modern {
  background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid rgba(133, 194, 38, 0.15);
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  padding: clamp(1rem, 0.875rem + 0.5vw, 1.25rem);
  padding-top: clamp(4rem, 3.5rem + 1.5vw, 5rem);
  box-shadow: 0 6px 24px rgba(41, 20, 106, 0.08);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
  position: relative;
  will-change: transform;
}

.city-card-modern:hover {
  transform: translateY(-10px);
  border-color: rgba(133, 194, 38, 0.35);
  box-shadow: 0 16px 48px rgba(41, 20, 106, 0.12), 0 0 30px rgba(133, 194, 38, 0.1);
}

.city-icon-modern {
  position: absolute;
  top: clamp(1rem, 0.875rem + 0.5vw, 1.25rem);
  left: clamp(1rem, 0.875rem + 0.5vw, 1.25rem);
  z-index: 2;
}

.icon-outer-ring {
  width: clamp(2.5rem, 2.25rem + 0.75vw, 3rem);
  height: clamp(2.5rem, 2.25rem + 0.75vw, 3rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.12) 0%, rgba(1, 146, 64, 0.12) 100%);
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 0 20px rgba(133, 194, 38, 0.2), 0 0 40px rgba(133, 194, 38, 0.1);
}

.icon-inner-circle {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.15) 0%, rgba(1, 146, 64, 0.15) 100%);
  border-radius: 50%;
  border: 2px solid rgba(133, 194, 38, 0.25);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.city-card-modern:hover .icon-inner-circle {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.25) 0%, rgba(1, 146, 64, 0.25) 100%);
  border-color: rgba(133, 194, 38, 0.4);
}

.city-icon-stroke {
  stroke: var(--themeColor);
  filter: drop-shadow(0 0 8px rgba(133, 194, 38, 0.5));
  transition: stroke 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.city-card-modern:hover .city-icon-stroke {
  stroke: var(--secondaryColor);
  filter: drop-shadow(0 0 12px rgba(133, 194, 38, 0.7));
  transform: scale(1.1);
}

.city-title-modern {
  color: var(--primaryColor);
  line-height: 1.2 !important;
  transition: color 0.3s ease;
}

.city-card-modern:hover .city-title-modern {
  color: var(--themeColor);
}

.city-desc-modern {
  color: rgba(26, 30, 37, 0.5);
  line-height: 1.4 !important;
  transition: color 0.3s ease;
}

.city-card-modern:hover .city-desc-modern {
  color: rgba(26, 30, 37, 0.65);
}

.divider-modern {
  height: 2px;
  background: linear-gradient(90deg, rgba(133, 194, 38, 0.3) 0%, rgba(133, 194, 38, 0.1) 100%);
  width: clamp(3rem, 2.5rem + 2vw, 4rem);
  transition: background 0.3s ease, width 0.3s ease;
}

.city-card-modern:hover .divider-modern {
  background: linear-gradient(90deg, rgba(133, 194, 38, 0.6) 0%, rgba(133, 194, 38, 0.2) 100%);
  width: clamp(4rem, 3.5rem + 2vw, 5rem);
}

.stat-modern {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.04) 0%, rgba(1, 146, 64, 0.04) 100%);
  border: 1px solid rgba(133, 194, 38, 0.15);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.city-card-modern:hover .stat-modern {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.08) 0%, rgba(1, 146, 64, 0.08) 100%);
  border-color: rgba(133, 194, 38, 0.3);
  transform: translateY(-3px);
}

.stat-value-modern {
  color: var(--themeColor);
  line-height: 1.1 !important;
  transition: color 0.3s ease, transform 0.3s ease;
}

.city-card-modern:hover .stat-value-modern {
  color: var(--secondaryColor);
  transform: scale(1.05);
}

.stat-label-modern {
  color: rgba(26, 30, 37, 0.55);
  line-height: 1.3 !important;
  transition: color 0.3s ease;
}

.city-card-modern:hover .stat-label-modern {
  color: rgba(26, 30, 37, 0.7);
}

.cta-modern {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.06) 0%, rgba(1, 146, 64, 0.06) 100%);
  border: 1px solid rgba(133, 194, 38, 0.2);
  border-radius: 14px;
  padding: 12px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.city-card-modern:hover .cta-modern {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1) 0%, rgba(1, 146, 64, 0.1) 100%);
  border-color: rgba(133, 194, 38, 0.35);
}

.cta-text-modern {
  color: var(--themeColor);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.city-card-modern:hover .cta-text-modern {
  color: var(--secondaryColor);
}

.badge-modern {
  position: absolute;
  top: clamp(1rem, 0.875rem + 0.5vw, 1.25rem);
  right: clamp(1rem, 0.875rem + 0.5vw, 1.25rem);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: var(--whiteColor);
  padding: clamp(0.375rem, 0.3rem + 0.25vw, 0.5rem) clamp(0.75rem, 0.625rem + 0.4vw, 1rem);
  border-radius: clamp(0.5rem, 0.4rem + 0.3vw, 0.75rem);
  font-size: clamp(0.625rem, 0.6rem + 0.1vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  z-index: 3;
}

.city-card-modern:hover .badge-modern {
  box-shadow: 0 6px 20px rgba(133, 194, 38, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Other Cities - Inline Compact Design */
.other-cities-inline {
  padding: clamp(1.25rem, 1rem + 0.75vw, 1.75rem) clamp(0.75rem, 0.5rem + 0.5vw, 1rem);
  background: rgba(133, 194, 38, 0.03);
  border-radius: 12px;
  border: 1px dashed rgba(133, 194, 38, 0.2);
}

.other-cities-label {
  color: var(--primaryColor);
}

.city-tag {
  background: var(--whiteColor);
  border: 1px solid rgba(133, 194, 38, 0.2);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  font-weight: 500;
  color: var(--primaryColor);
  transition: all 0.25s ease;
  cursor: pointer;
}

.city-tag:hover {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: var(--whiteColor);
  border-color: transparent;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .city-coverage-section {
    padding: clamp(3rem, 2.5rem + 2vw, 4rem) 0;
  }

  .city-card-modern:hover {
    transform: translateY(-8px);
  }
}



/* ---------------- RESOURCES/BLOG SECTION ---------------- */
.blog-editorial {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  padding: clamp(4rem, 3.5rem + 2vw, 6rem) 0;
}

.blog-feature {
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  min-height: clamp(300px, 25vw + 200px, 450px);
  box-shadow: 0 4px 20px rgba(41, 20, 106, 0.08);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.blog-feature:hover {
  box-shadow: 0 12px 40px rgba(41, 20, 106, 0.15);
  transform: translateY(-4px);
}

.blog-feature-img::after {
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  z-index: 1;
}

.blog-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-feature:hover .blog-feature-img img {
  transform: scale(1.08);
}

.blog-feature-content {
  padding: clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
  color: var(--whiteColor);
  z-index: 2;
}

.blog-feature-content h4 {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  line-height: 1.4 !important;
  color: var(--whiteColor);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.blog-mini {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.blog-mini:hover {
  transform: translateX(4px);
}

.blog-mini-img {
  width: clamp(90px, 80px + 3vw, 120px);
  height: clamp(68px, 60px + 2vw, 90px);
  border-radius: clamp(0.5rem, 0.4rem + 0.3vw, 0.75rem);
  box-shadow: 0 2px 8px rgba(41, 20, 106, 0.08);
  transition: box-shadow 0.3s ease;
}

.blog-mini:hover .blog-mini-img {
  box-shadow: 0 4px 16px rgba(41, 20, 106, 0.15);
}

.blog-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-mini:hover .blog-mini-img img {
  transform: scale(1.12);
}

.blog-mini-content h6 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  color: var(--primaryColor);
  line-height: 1.5 !important;
  transition: color 0.3s ease;
}

.blog-mini:hover .blog-mini-content h6 {
  color: var(--themeColor);
}

.blog-read {
  font-size: clamp(0.8125rem, 0.775rem + 0.2vw, 0.9375rem);
  color: var(--themeColor);
  transition: all 0.3s ease;
}

.blog-read svg {
  transition: transform 0.3s ease;
  stroke: var(--themeColor);
}

.blog-read:hover {
  color: var(--secondaryColor);
  gap: 0.5rem !important;
}

.blog-read:hover svg {
  transform: translateX(4px);
  stroke: var(--secondaryColor);
}

.blog-feature-content .blog-read {
  color: var(--whiteColor);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: clamp(0.5rem, 0.4rem + 0.3vw, 0.625rem) clamp(1rem, 0.875rem + 0.5vw, 1.25rem);
  border-radius: clamp(0.5rem, 0.4rem + 0.3vw, 0.625rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.blog-feature-content .blog-read svg {
  stroke: var(--whiteColor);
}

.blog-feature-content .blog-read:hover {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-color: transparent;
  color: var(--whiteColor);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(133, 194, 38, 0.4);
}

@media (max-width: 991px) {
  .blog-editorial {
    padding: clamp(3rem, 2.5rem + 2vw, 4rem) 0;
  }

  .blog-feature-content {
    padding: clamp(1.25rem, 1rem + 1vw, 2rem);
  }

  .blog-feature {
    min-height: clamp(280px, 30vw + 150px, 400px);
  }
}

@media (max-width: 767px) {
  .blog-mini:hover {
    transform: translateX(2px);
  }

  .blog-feature:hover {
    transform: translateY(-2px);
  }
}

/* ---------------- OUR IMPACT SECTION ---------------- */
.impact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  padding: clamp(4rem, 3.5rem + 2vw, 6rem) 0;
}

.impact-card {
  background: var(--whiteColor);
  border-left: 3px solid var(--themeColor);
  border-radius: clamp(0.625rem, 0.5rem + 0.4vw, 0.875rem);
  padding: clamp(1rem, 0.875rem + 0.5vw, 1.25rem);
  box-shadow: 0 2px 12px rgba(41, 20, 106, 0.06);
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(41, 20, 106, 0.12);
  border-left-color: var(--secondaryColor);
}

.impact-icon-box {
  width: clamp(2.75rem, 2.5rem + 0.75vw, 3.25rem);
  height: clamp(2.75rem, 2.5rem + 0.75vw, 3.25rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1) 0%, rgba(1, 146, 64, 0.1) 100%);
  border-radius: clamp(0.5rem, 0.4rem + 0.3vw, 0.75rem);
  transition: all 0.3s ease;
}

.impact-card:hover .impact-icon-box {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  transform: scale(1.05);
}

.impact-icon-box svg {
  stroke: var(--themeColor);
  transition: stroke 0.3s ease;
}

.impact-card:hover .impact-icon-box svg {
  stroke: var(--whiteColor);
}

.impact-value {
  font-size: clamp(1.5rem, 1.375rem + 0.5vw, 1.875rem);
  color: var(--primaryColor);
  line-height: 1.2 !important;
  transition: color 0.3s ease;
}

.impact-suffix {
  color: var(--themeColor);
}

.impact-card:hover .impact-value {
  color: var(--themeColor);
}

.impact-title {
  font-size: clamp(0.8125rem, 0.775rem + 0.2vw, 0.9375rem);
  color: rgba(26, 30, 37, 0.7);
  line-height: 1.3 !important;
  transition: color 0.3s ease;
}

.impact-card:hover .impact-title {
  color: var(--primaryColor);
}

.impact-cta-banner {
  background: linear-gradient(135deg, var(--primaryColor) 0%, #1a0d4a 100%);
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  padding: clamp(2rem, 1.75rem + 1vw, 2.5rem);
}

.impact-cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(133, 194, 38, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.impact-cta-heading {
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.75rem);
  color: var(--whiteColor);
  line-height: 1.3 !important;
}

.impact-cta-text {
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5 !important;
}

@media (max-width: 991px) {
  .impact-section {
    padding: clamp(3rem, 2.5rem + 2vw, 4rem) 0;
  }
}

@media (max-width: 767px) {
  .impact-card:hover {
    transform: translateX(2px);
  }
}






/* ============================================
   CUSTOMER REVIEWS SECTION - PREMIUM ENHANCED
   ============================================ */

.customer-reviews-premium {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #ffffff 100%);
  padding: clamp(3.5rem, 3rem + 2vw, 5rem) 0;
}

.customer-reviews-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 25%, rgba(133, 194, 38, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(1, 146, 64, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.customer-reviews-premium .container {
  z-index: 1;
}

/* Review Card Video Section */
.review-video-section {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem) clamp(1rem, 0.875rem + 0.5vw, 1.5rem) 0 0;
}

.review-video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0.85);
}

.review-card-premium:hover .review-video-thumbnail {
  transform: scale(1.08);
  filter: brightness(1);
}

.review-video-play-btn {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 3;
  filter: drop-shadow(0 8px 20px rgba(133, 194, 38, 0.4));
}

.review-video-play-btn svg {
  animation: playButtonPulse 2.5s ease-in-out infinite;
}

@keyframes playButtonPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 8px 20px rgba(133, 194, 38, 0.4));
  }

  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 12px 30px rgba(133, 194, 38, 0.7));
  }
}

.review-video-play-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(133, 194, 38, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: playButtonRipple 2s ease-out infinite;
  z-index: -1;
}

@keyframes playButtonRipple {
  0% {
    width: 70px;
    height: 70px;
    opacity: 1;
  }

  100% {
    width: 140px;
    height: 140px;
    opacity: 0;
  }
}

.review-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.25) rotate(90deg) !important;
  filter: drop-shadow(0 15px 40px rgba(133, 194, 38, 0.8));
}

.review-video-play-btn:hover svg {
  animation: playButtonSpin 0.6s ease-in-out;
}

@keyframes playButtonSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.2);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.review-video-player {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem) clamp(1rem, 0.875rem + 0.5vw, 1.5rem) 0 0;
}

.review-content-section {
  position: relative;
  background: var(--whiteColor);
  padding: clamp(1.25rem, 1rem + 1vw, 2rem) !important;
  border-radius: 0 0 clamp(1rem, 0.875rem + 0.5vw, 1.5rem) clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
}

/* Video Badge Overlay */
.review-video-section::after {
  content: 'VIDEO';
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.95) 0%, rgba(1, 146, 64, 0.95) 100%);
  color: var(--whiteColor);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: badgeFadeIn 0.6s ease-out;
}

@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .review-video-section {
    height: 200px;
  }

  .review-content-section {
    padding: clamp(1rem, 0.875rem + 0.5vw, 1.5rem) !important;
  }
}

@media (max-width: 767px) {
  .review-video-section {
    height: 220px;
  }

  .review-video-play-btn svg {
    width: 40px;
    height: 40px;
  }

  .review-content-section {
    padding: 1rem !important;
  }
}

/* Rating Box - Premium Enhanced */
.rating-box-premium {
  background: linear-gradient(135deg, #85c226 0%, #019240 100%);
  border-radius: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  padding: clamp(2rem, 1.75rem + 1vw, 2.75rem);
  box-shadow:
    0 15px 40px rgba(133, 194, 38, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rating-box-premium:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(133, 194, 38, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.rating-content-wrapper {
  z-index: 1;
}

.rating-number-premium {
  font-size: clamp(3.5rem, 3rem + 2vw, 5rem);
  font-weight: 900;
  color: var(--whiteColor);
  margin-bottom: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  letter-spacing: -0.03em;
}

.rating-stars-premium {
  gap: clamp(0.375rem, 0.3rem + 0.3vw, 0.5rem);
  margin-bottom: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
}

.rating-stars-premium .star {
  font-size: clamp(1.375rem, 1.25rem + 0.5vw, 1.75rem);
  color: #FFD700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: starTwinkle 2s ease-in-out infinite;
}

.rating-stars-premium .star:nth-child(1) {
  animation-delay: 0s;
}

.rating-stars-premium .star:nth-child(2) {
  animation-delay: 0.2s;
}

.rating-stars-premium .star:nth-child(3) {
  animation-delay: 0.4s;
}

.rating-stars-premium .star:nth-child(4) {
  animation-delay: 0.6s;
}

.rating-stars-premium .star:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes starTwinkle {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

.rating-count-premium {
  font-size: clamp(0.875rem, 0.8125rem + 0.25vw, 1rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Stats Grid - Premium Enhanced */
.stats-grid-premium {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
}

.stat-card-premium {
  background: var(--whiteColor);
  border: 1px solid rgba(133, 194, 38, 0.15);
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  padding: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.stat-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(133, 194, 38, 0.08), transparent);
  transition: left 0.6s ease;
}

.stat-card-premium:hover::before {
  left: 100%;
}

.stat-card-premium:hover {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.05), rgba(1, 146, 64, 0.05));
  border-color: rgba(133, 194, 38, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(133, 194, 38, 0.2);
}

.stat-icon-wrapper {
  width: clamp(3rem, 2.75rem + 1vw, 3.75rem);
  height: clamp(3rem, 2.75rem + 1vw, 3.75rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1), rgba(1, 146, 64, 0.1));
  border-radius: 50%;
  margin-bottom: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  transition: all 0.3s ease;
}

.stat-card-premium:hover .stat-icon-wrapper {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(133, 194, 38, 0.3);
}

.stat-icon-wrapper svg {
  stroke: var(--themeColor);
  transition: stroke 0.3s ease;
}

.stat-card-premium:hover .stat-icon-wrapper svg {
  stroke: var(--whiteColor);
}

.stat-value-premium {
  font-size: clamp(2rem, 1.75rem + 1vw, 2.75rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}

.stat-label-premium {
  font-size: clamp(0.875rem, 0.8125rem + 0.25vw, 1rem);
  color: rgba(26, 30, 37, 0.7);
  font-weight: 600;
}

/* Review Cards - Premium Enhanced */
.review-card-premium {
  background: var(--whiteColor);
  border: 1px solid rgba(133, 194, 38, 0.12);
  border-radius: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor), var(--secondaryColor));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.review-card-premium:hover::before {
  transform: scaleX(1);
}

.review-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 12px rgb(133 194 38 / 27%);
  border-color: rgb(133 194 38 / 47%);
}

.review-quote-mark {
  top: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  right: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-size: clamp(4rem, 3.5rem + 2vw, 6rem);
  font-weight: 900;
  color: rgba(133, 194, 38, 0.08);
  font-family: Georgia, serif;
  transition: all 0.3s ease;
}

.review-card-premium:hover .review-quote-mark {
  color: rgba(133, 194, 38, 0.15);
  transform: scale(1.1);
}

.review-header-premium {
  gap: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem);
  margin-bottom: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  z-index: 1;
}

.reviewer-avatar-premium {
  width: clamp(3rem, 2.75rem + 1vw, 3.75rem);
  height: clamp(3rem, 2.75rem + 1vw, 3.75rem);
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  border-radius: 50%;
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.625rem);
  font-weight: 800;
  color: var(--whiteColor);
  box-shadow: 0 6px 18px rgba(133, 194, 38, 0.3);
  border: 3px solid var(--whiteColor);
  transition: all 0.3s ease;
}

.review-card-premium:hover .reviewer-avatar-premium {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(133, 194, 38, 0.4);
}

.reviewer-info-premium {}

.reviewer-name-premium {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 700;
  color: var(--primaryColor);
  margin-bottom: 0.25rem;
}

.review-stars-premium {
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
  color: #FFD700;
  letter-spacing: 2px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.review-text-premium {
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
  color: rgba(26, 30, 37, 0.75);
  line-height: 1.7;
  z-index: 1;
}

.review-verified {
  gap: 0.5rem;
  padding: clamp(0.5rem, 0.375rem + 0.5vw, 0.75rem) clamp(0.875rem, 0.75rem + 0.5vw, 1.125rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.08), rgba(1, 146, 64, 0.08));
  border: 1px solid rgba(133, 194, 38, 0.2);
  border-radius: clamp(0.5rem, 0.375rem + 0.5vw, 0.75rem);
  font-size: clamp(0.8125rem, 0.75rem + 0.25vw, 0.9375rem);
  font-weight: 600;
  color: var(--secondaryColor);
  z-index: 1;
}

.review-verified svg {
  stroke: var(--themeColor);
}

/* Trust Badges - Premium Enhanced */
.trust-badges-premium {
  flex-wrap: wrap;
  gap: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  padding: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.06), rgba(1, 146, 64, 0.06));
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  border: 1.5px solid rgba(133, 194, 38, 0.15);
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.08);
}

.trust-badges-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
  pointer-events: none;
}

.trust-badge-premium {
  gap: clamp(0.625rem, 0.5rem + 0.5vw, 0.875rem);
  padding: clamp(0.75rem, 0.625rem + 0.5vw, 1rem) clamp(1.25rem, 1rem + 1vw, 1.75rem);
  background: var(--whiteColor);
  border: 1px solid rgba(133, 194, 38, 0.2);
  border-radius: clamp(0.625rem, 0.5rem + 0.5vw, 0.875rem);
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  z-index: 1;
}

.trust-badge-premium:hover {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.08), rgba(1, 146, 64, 0.08));
  border-color: rgba(133, 194, 38, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(133, 194, 38, 0.2);
}

.trust-badge-icon {
  width: clamp(2.5rem, 2.25rem + 0.75vw, 3rem);
  height: clamp(2.5rem, 2.25rem + 0.75vw, 3rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1), rgba(1, 146, 64, 0.1));
  border-radius: 50%;
  transition: all 0.3s ease;
}

.trust-badge-premium:hover .trust-badge-icon {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.3);
}

.trust-badge-icon svg {
  stroke: var(--themeColor);
  transition: stroke 0.3s ease;
}

.trust-badge-premium:hover .trust-badge-icon svg {
  stroke: var(--whiteColor);
}

.trust-badge-premium span {
  font-size: clamp(0.875rem, 0.8125rem + 0.25vw, 1rem);
  font-weight: 700;
  color: var(--primaryColor);
  letter-spacing: 0.3px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .stats-grid-premium {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .customer-reviews-premium {
    padding: clamp(3rem, 2.5rem + 2vw, 4rem) 0;
  }

  .stats-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card-premium {
    padding: 1.5rem;
  }

  .trust-badges-premium {
    gap: 0.875rem;
  }
}

@media (max-width: 575px) {
  .rating-box-premium {
    margin-bottom: 1.5rem;
  }

  .trust-badge-premium {
    flex: 1 1 100%;
  }

  .icon-bg-circle {
    width: 80%;
    height: 80%;
  }

  .trust-badge-premium {
    flex-direction: column;
  }
}


/* Common Page Hero Section */
.page-hero {
  min-height: clamp(18rem, 20rem + 20vw, 35rem);
}

.page-hero.about-bg {
  background: url('../images/png/about-banner-img.png') center/cover no-repeat;
}

.page-hero.services-bg {
  background: url('../images/png/services-banner-img.png') center/cover no-repeat;
}

.page-hero.blog-inner-bg {
  background: url('../images/png/DeclutterBeforeMoving.jpg') center/cover no-repeat;
}

.page-hero-overlay {
  inset: 0;
  background: linear-gradient(135deg,
      rgba(41, 20, 106, 0.92) 0%,
      rgba(29, 14, 74, 0.88) 30%,
      rgba(1, 146, 64, 0.85) 70%,
      rgba(1, 146, 64, 0.82) 100%);
}

.page-hero-overlay::before {
  content: "";
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(133, 194, 38, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(1, 146, 64, 0.12) 0%, transparent 60%);
  animation: overlayPulse 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes overlayPulse {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

.page-hero-content {
  z-index: 3;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: clamp(0.5rem, 0.4rem + 0.3vw, 0.625rem) clamp(1.25rem, 1rem + 1vw, 1.5rem);
  animation: badgeSlideDown 0.8s ease-out 0.3s both;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-hero-badge i {
  filter: drop-shadow(0 0 8px rgba(133, 194, 38, 0.6));
}

@keyframes badgeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero-heading {
  font-size: clamp(1.75rem, 1.5rem + 2vw, 3.75rem);
  line-height: 1.25;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: headingZoomIn 1s ease-out 0.5s both;
}

.text-highlight {
  background: linear-gradient(135deg, var(--themeColor) 0%, #a8e063 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.text-highlight::after {
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(2px, 0.15rem + 0.1vw, 3px);
  background: linear-gradient(90deg, var(--themeColor) 0%, #a8e063 100%);
  border-radius: 2px;
  animation: underlineExpand 0.8s ease-out 1.3s both;
  transform-origin: left;
  transform: scaleX(0);
}

@keyframes headingZoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes underlineExpand {
  to {
    transform: scaleX(1);
  }
}

.page-hero-text {
  font-size: clamp(0.9375rem, 0.875rem + 0.4vw, 1.25rem);
  line-height: 1.5 !important;
  max-width: clamp(600px, 50vw + 200px, 800px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: textFadeIn 1s ease-out 0.7s both;
}

@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Content Section */

/* Services Intro Section */
.services-intro-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  padding: clamp(2.5rem, 2rem + 3vw, 5rem) 0;
}

.services-intro-card {
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  padding: clamp(1.5rem, 1.25rem + 2vw, 3rem);
  box-shadow: 0 4px 20px rgba(41, 20, 106, 0.08);
  border: 1px solid rgba(41, 20, 106, 0.06);
  transition: all 0.3s ease;
}

.services-intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(41, 20, 106, 0.12);
}

.services-grid-section {
  padding: clamp(3rem, 2.5rem + 3vw, 6rem) 0px;
}

.service-item-card {
  border-radius: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem);
  padding: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
  border: 2px solid rgba(133, 194, 38, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-item-card::before {
  content: "";
  inset: 0;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.05) 0%, rgba(1, 146, 64, 0.05) 100%);
  transition: left 0.4s ease;
  z-index: 0;
  left: -100%;
}

.service-item-card:hover::before {
  left: 0;
}

.service-item-card:hover {
  transform: translateY(clamp(-6px, -0.5rem - 0.5vw, -10px));
  border-color: var(--themeColor);
  box-shadow: 0 15px 40px rgba(133, 194, 38, 0.2);
}

.service-item-icon {
  width: clamp(3.5rem, 3rem + 2vw, 5rem);
  height: clamp(3.5rem, 3rem + 2vw, 5rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1) 0%, rgba(1, 146, 64, 0.1) 100%);
  border-radius: 50%;
  margin-bottom: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  transition: all 0.4s ease;
  z-index: 1;
}

.service-item-card:hover .service-item-icon {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 8px 25px rgba(133, 194, 38, 0.3);
}

.service-item-card:hover .service-item-title {
  color: var(--secondaryColor);
}


/* Cities Page Background */
.page-hero.cities-bg {
  background: url('../images/png/cities-banner-img.png') center/cover no-repeat;
}

/* Cities Section */
.cities-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  padding: clamp(3rem, 2.5rem + 3vw, 6rem) 0 0;
}

.city-card {
  padding: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  border-radius: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  box-shadow: 0 4px 15px rgba(41, 20, 106, 0.08);
  border: 1px solid rgba(41, 20, 106, 0.06);
  gap: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.03) 0%, rgba(1, 146, 64, 0.03) 100%);
  border-radius: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.city-card:hover::before {
  opacity: 1;
}

.city-card:hover {
  transform: translateY(clamp(-4px, -0.4rem - 0.2vw, -8px));
  box-shadow: 0 12px 35px rgba(133, 194, 38, 0.15);
  border-color: rgba(133, 194, 38, 0.3);
}

.city-icon-wrapper {
  min-width: clamp(2.75rem, 2.5rem + 1vw, 3.5rem);
  height: clamp(2.75rem, 2.5rem + 1vw, 3.5rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1) 0%, rgba(1, 146, 64, 0.1) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: 1;
}

.city-icon-wrapper i {
  color: var(--secondaryColor);
  transition: all 0.4s ease;
}

.city-card:hover .city-icon-wrapper {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 6px 20px rgba(133, 194, 38, 0.3);
}

.city-card:hover .city-icon-wrapper i {
  color: var(--whiteColor);
}

.city-content {
  flex: 1;
  z-index: 1;
}

.city-name {
  transition: color 0.3s ease;
}

.city-card:hover .city-name {
  color: var(--secondaryColor) !important;
}

.city-subtitle {
  color: rgba(26, 30, 37, 0.6);
  transition: color 0.3s ease;
}

.city-card:hover .city-subtitle {
  color: rgba(26, 30, 37, 0.8);
}

.city-arrow {
  color: var(--secondaryColor);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
  z-index: 1;
}

.city-card:hover .city-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Tips Section */
.tips-section {
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
  padding: clamp(3rem, 2.5rem + 3vw, 6rem) 0;
}

.tips-card {
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  padding: clamp(2rem, 1.75rem + 2vw, 3.5rem);
  box-shadow: 0 4px 20px rgba(41, 20, 106, 0.08);
  border: 1px solid rgba(41, 20, 106, 0.06);
}

.tips-heading {
  color: #d32f2f;
}

.tips-list {
  list-style: none;
  padding-left: 0;
}

.tips-list li {
  padding-left: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  position: relative;
}

.tips-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondaryColor);
  font-weight: 700;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
}

/* Privacy Policy Section */
.page-hero.privacy-bg {
  background: url('../images/png/privacy-banner-img.png') center/cover no-repeat;
}

.privacy-policy-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  padding: clamp(3rem, 2.5rem + 3vw, 6rem) 0;
}

.privacy-intro {
  padding: clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
  background: linear-gradient(135deg, rgb(133 194 38 / 11%) 0%, rgba(1, 146, 64, 0.03) 100%);
  border-radius: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  border-left: 4px solid var(--themeColor);
}

.privacy-section {
  padding: clamp(1.5rem, 1.25rem + 1vw, 2rem) 0;
  border-bottom: 1px solid rgba(41, 20, 106, 0.08);
}

.privacy-section:last-child {
  border-bottom: none;
}


.privacy-list {
  list-style: none;
  padding-left: 0;
}

.privacy-list li {
  padding-left: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  position: relative;
}

.privacy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondaryColor);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
}

.privacy-contact-box {
  padding: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.05) 0%, rgba(1, 146, 64, 0.05) 100%);
  border-radius: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  border: 1px solid rgba(133, 194, 38, 0.15);
}

.privacy-contact-card {
  padding: clamp(1rem, 0.875rem + 0.5vw, 1.25rem);
  background: var(--whiteColor);
  border-radius: clamp(0.5rem, 0.4rem + 0.3vw, 0.75rem);
  box-shadow: 0 2px 8px rgba(41, 20, 106, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.privacy-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(133, 194, 38, 0.12);
  border-color: rgba(133, 194, 38, 0.2);
}

.privacy-contact-icon-wrapper {
  position: relative;
}

.privacy-contact-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -6px;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1) 0%, rgba(1, 146, 64, 0.1) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
  opacity: 0;
}

.privacy-contact-card:hover .privacy-contact-icon-wrapper::before {
  opacity: 1;
  transform: scale(1.1);
}

.privacy-contact-icon {
  width: clamp(2.5rem, 2.25rem + 1vw, 3rem);
  height: clamp(2.5rem, 2.25rem + 1vw, 3rem);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 12px rgba(133, 194, 38, 0.2);
}

.privacy-contact-icon i {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  color: var(--whiteColor);
}

.privacy-contact-card:hover .privacy-contact-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 6px 18px rgba(133, 194, 38, 0.3);
}

.privacy-contact-link {
  color: var(--secondaryColor);
  transition: all 0.3s ease;
  position: relative;
}

.privacy-contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  transition: width 0.3s ease;
}

.privacy-contact-card:hover .privacy-contact-link::after {
  width: 100%;
}

.privacy-contact-link:hover {
  color: var(--themeColor);
}

/* terms & Conditions */
.page-hero.terms-bg {
  background: url('../images/png/terms-condition-banner-img.png') center/cover no-repeat;
}

/* Contact Page Styles */
.page-hero.contact-bg {
  background: url('../images/png/contact-banner-img.png') center/cover no-repeat;
}

.contact-section {
  padding: clamp(3.75rem, 3rem + 3vw, 6.25rem) 0;
  background: #f8f9fa;
}

.contact-badge {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  letter-spacing: 0.5px;
}

.contact-section-title {
  font-size: clamp(1.75rem, 1.5rem + 1.25vw, 2.5rem);
}

.contact-section-desc {
  max-width: 700px;
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
}

.contact-card {
  background: var(--whiteColor);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.contact-card-top-line {
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 16px 16px 0 0;
  margin: -30px -25px 25px -25px;
}

.contact-icon-box {
  height: 70px;
  background: linear-gradient(135deg, #4a5f3a 0%, var(--themeColor) 100%);
  border-radius: 16px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(133, 194, 38, 0.25);
  max-width: 70px;
}

.contact-link-item {
  background: rgba(133, 194, 38, 0.08);
  border: 1px solid rgba(133, 194, 38, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link-item span {
  color: #333;
}

.contact-link-item:hover {
  background: rgba(133, 194, 38, 0.15);
  border-color: rgba(133, 194, 38, 0.3);
  transform: translateX(3px);
}

.contact-divider-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--themeColor) 50%, transparent 100%);
  margin: 50px auto;
  max-width: 600px;
  opacity: 0.3;
}


.contact-divider::after {
  right: 0;
}


/* Blog Filter Section */
.page-hero.blog-bg {
  background: url('../images/png/blog-banner-img.png') center/cover no-repeat;
}

.blog-filter-section {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #fafbfc 100%);
  padding: clamp(2.5rem, 2rem + 2vw, 3rem) 0;
  border-bottom: 1px solid rgba(41, 20, 106, 0.06);
}

.blog-filter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(133, 194, 38, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(1, 146, 64, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.blog-tabs {
  justify-content: center;
  gap: clamp(0.625rem, 0.5rem + 0.5vw, 1rem);
  list-style: none;
  padding: 0.5rem 0 0;
  margin: 0;
}

.blog-tab-btn {
  gap: clamp(0.375rem, 0.3rem + 0.3vw, 0.75rem);
  padding: clamp(0.5rem, 0.45rem + 0.3vw, 1rem) clamp(0.875rem, 0.75rem + 0.6vw, 1.75rem);
  background: var(--whiteColor);
  border: 2px solid rgba(41, 20, 106, 0.06);
  border-radius: clamp(0.625rem, 0.55rem + 0.3vw, 1rem);
  color: rgba(41, 20, 106, 0.5);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 2px 8px rgba(41, 20, 106, 0.04),
    0 1px 3px rgba(41, 20, 106, 0.02);
  min-width: clamp(6.5rem, 5.5rem + 3vw, 8.5rem);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.blog-tab-btn .filter-icon {
  justify-content: center;
  width: clamp(1.375rem, 1.25rem + 0.5vw, 2.25rem);
  height: clamp(1.375rem, 1.25rem + 0.5vw, 2.25rem);
  background: rgba(41, 20, 106, 0.04);
  border-radius: 50%;
  padding: clamp(0.275rem, 0.25rem + 0.15vw, 0.5rem);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-tab-btn .filter-icon svg {
  stroke: rgba(41, 20, 106, 0.5);
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.blog-tab-btn .filter-text {
  letter-spacing: 0.3px;
  text-transform: capitalize;
}

.blog-tab-btn:hover:not(.active) {
  border-color: rgba(133, 194, 38, 0.2);
  transform: translateY(-4px);
  box-shadow:
    0 8px 24px rgba(133, 194, 38, 0.12),
    0 4px 12px rgba(41, 20, 106, 0.06);
  color: var(--primaryColor);
}

.blog-tab-btn:hover:not(.active) .filter-icon {
  background: rgba(133, 194, 38, 0.08);
  transform: scale(1.1);
}

.blog-tab-btn:hover:not(.active) .filter-icon svg {
  stroke: var(--themeColor);
  transform: rotate(5deg);
}

.blog-tab-btn.active {
  background: linear-gradient(135deg, #85C226 0%, #019240 100%);
  border-color: transparent;
  color: var(--whiteColor);
  box-shadow:
    0 8px 25px rgba(133, 194, 38, 0.3),
    0 4px 12px rgba(1, 146, 64, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.blog-tab-btn.active .filter-text {
  color: var(--whiteColor);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.blog-tab-btn.active .filter-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-tab-btn.active .filter-icon svg {
  stroke: var(--whiteColor);
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.blog-tab-btn:focus {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(133, 194, 38, 0.15),
    0 8px 24px rgba(133, 194, 38, 0.12);
}

.tab-pane {
  display: none;
  animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tab-pane.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-cards-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  padding: clamp(3rem, 2.5rem + 2vw, 4.5rem) 0;
}

.blog-card {
  background: var(--whiteColor);
  border-radius: clamp(0.875rem, 0.75rem + 0.4vw, 1.125rem);
  box-shadow:
    0 2px 12px rgba(41, 20, 106, 0.06),
    0 1px 4px rgba(41, 20, 106, 0.04);
  border: 1px solid rgba(41, 20, 106, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.blog-card:hover::before {
  transform: scaleX(1);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 35px rgba(41, 20, 106, 0.12),
    0 6px 18px rgba(133, 194, 38, 0.08);
  border-color: rgba(133, 194, 38, 0.15);
}

.blog-card-badge {
  top: clamp(0.75rem, 0.65rem + 0.4vw, 1rem);
  right: clamp(0.75rem, 0.65rem + 0.4vw, 1rem);
  z-index: 10;
}

.badge-top-label {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: var(--whiteColor);
  padding: clamp(0.25rem, 0.22rem + 0.15vw, 0.35rem) clamp(0.5rem, 0.45rem + 0.25vw, 0.65rem);
  border-radius: clamp(0.3125rem, 0.28rem + 0.15vw, 0.4375rem);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(133, 194, 38, 0.35);
}

.blog-card-image {
  height: clamp(8.5rem, 7.5rem + 4vw, 11rem);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-overlay {
  top: 0;
  left: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-card:hover .blog-card-overlay {
  opacity: 1;
}

.blog-card-content {
  padding: clamp(1rem, 0.875rem + 0.5vw, 1.375rem);
}

.blog-card-meta {
  margin-bottom: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
}

.blog-meta-item {
  color: rgba(26, 30, 37, 0.55);
  transition: color 0.3s ease;
}

.blog-meta-item svg {
  stroke: var(--themeColor);
  flex-shrink: 0;
  width: 13px;
  height: 13px;
}

.blog-card:hover .blog-meta-item {
  color: var(--secondaryColor);
}

.blog-card-title {
  color: var(--primaryColor);
  line-height: 1.35;
  transition: color 0.3s ease;
  margin-bottom: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
}

.blog-card:hover .blog-card-title {
  color: var(--secondaryColor);
}

.blog-card-excerpt {
  color: rgba(26, 30, 37, 0.65);
  line-height: 1.55;
  margin-bottom: clamp(0.75rem, 0.65rem + 0.4vw, 1rem);
}

.blog-card-link {
  color: var(--themeColor);
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 0.375rem;
}

.blog-card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  transition: width 0.3s ease;
}

.blog-card-link:hover {
  color: var(--secondaryColor);
  gap: 0.5rem;
}

.blog-card-link:hover::after {
  width: calc(100% - 1.25rem);
}

.blog-card-link svg {
  stroke: currentColor;
  transition: transform 0.3s ease;
  width: 15px;
  height: 15px;
}

.blog-card-link:hover svg {
  transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .blog-cards-section {
    padding: clamp(2.5rem, 2rem + 2vw, 3.5rem) 0;
  }
}

@media (max-width: 767px) {
  .blog-card:hover {
    transform: translateY(-6px);
  }

  .blog-card-image {
    height: clamp(9rem, 8rem + 4vw, 11rem);
  }
}

/*  AWARDS & RECOGNITION SECTION - PREMIUM */
.awards-recognition-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #ffffff 100%);
  padding: clamp(2.5rem, 2rem + 3vw, 6rem) 0;
  position: relative;
}

.awards-bg-shape {
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.awards-bg-shape.shape-1 {
  width: clamp(15rem, 10rem + 20vw, 35rem);
  height: clamp(15rem, 10rem + 20vw, 35rem);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  top: -10%;
  right: -5%;
  animation: floatAward 25s ease-in-out infinite;
}

.awards-bg-shape.shape-2 {
  width: clamp(13rem, 8rem + 18vw, 30rem);
  height: clamp(13rem, 8rem + 18vw, 30rem);
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--themeColor) 100%);
  bottom: -10%;
  left: -5%;
  animation: floatAward 30s ease-in-out infinite reverse;
}

@keyframes floatAward {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

.awards-slider-wrapper {
  width: 100%;
  margin-bottom: 2rem;
}

.awards-slider {
  animation: slideAwards 25s linear infinite;
  will-change: transform;
}

.awards-slider:hover {
  animation-play-state: paused;
}

@keyframes slideAwards {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 1rem));
  }
}

.award-slide {
  min-width: clamp(260px, 20vw + 180px, 320px);
  flex-shrink: 0;
}

.award-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfd 100%);
  border: 2px solid rgba(133, 194, 38, 0.15);
  border-radius: clamp(0.875rem, 0.5rem + 1vw, 1.5rem);
  padding: clamp(1rem, 0.75rem + 1.2vw, 1.5rem);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.award-card:hover {
  transform: translateY(clamp(-8px, -0.5rem - 0.5vw, -15px)) scale(clamp(1.02, 1 + 0.03vw, 1.05));
  border-color: rgba(133, 194, 38, 0.4);
}

.award-image-wrapper {
  width: 100%;
  height: clamp(140px, 8vw + 100px, 180px);
  border-radius: clamp(0.625rem, 0.375rem + 0.75vw, 1rem);
  overflow: hidden;
  position: relative;
}

.award-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: brightness(0.9) saturate(1.1);
}

.award-card:hover .award-image {
  transform: scale(1.1);
  filter: brightness(1) saturate(1.2);
}

.award-badge {
  top: 10px;
  right: 10px;
  width: clamp(40px, 2vw + 30px, 55px);
  height: clamp(40px, 2vw + 30px, 55px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
  z-index: 2;
}

.award-badge svg {
  stroke: var(--whiteColor);
  width: clamp(16px, 1vw + 12px, 24px);
  height: clamp(16px, 1vw + 12px, 24px);
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(133, 194, 38, 0.4);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(133, 194, 38, 0.6);
  }
}

.award-card:hover .award-badge {
  animation: badgeSpin 0.6s ease-in-out;
}

@keyframes badgeSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.2);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.award-title {
  color: var(--primaryColor);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.award-card:hover .award-title {
  color: var(--secondaryColor);
}

.award-year {
  color: rgba(26, 30, 37, 0.6);
  font-weight: 600;
  transition: color 0.3s ease;
}

.award-card:hover .award-year {
  color: var(--themeColor);
}

.award-org {
  color: rgba(26, 30, 37, 0.5);
  font-style: italic;
}

.award-shine {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.award-card:hover .award-shine {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.recognition-stats {
  border-top: 2px solid rgba(133, 194, 38, 0.15);
  margin-top: clamp(1.5rem, 1rem + 2vw, 3rem);
  padding-top: clamp(1.5rem, 1rem + 2vw, 3rem);
}

.recognition-stat-item {
  padding: clamp(0.875rem, 0.5rem + 1.25vw, 1.5rem);
  border-radius: clamp(0.625rem, 0.375rem + 0.75vw, 1rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.05) 0%, rgba(1, 146, 64, 0.05) 100%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.recognition-stat-item:hover {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1) 0%, rgba(1, 146, 64, 0.1) 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(133, 194, 38, 0.15);
}

.recognition-number {
  color: var(--secondaryColor);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  animation: numberCount 2s ease-out;
}

@keyframes numberCount {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.recognition-label {
  color: rgba(26, 30, 37, 0.7);
  font-weight: 500;
}


/* QUOTE MODAL - PREMIUM DESIGN */
.quote-modal-content {
  border-radius: clamp(1rem, 0.75rem + 0.75vw, 1.5rem) !important;
  box-shadow: 0 20px 60px rgba(41, 20, 106, 0.15);
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfd 100%);
}

.quote-modal-header {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  padding: clamp(1.25rem, 1rem + 0.75vw, 1.75rem);
}

.quote-modal-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: modalShapeFloat 6s ease-in-out infinite;
}

@keyframes modalShapeFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, 20px) scale(1.1);
  }
}

.quote-modal-title-wrapper {
  z-index: 2;
}

.quote-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: clamp(0.25rem, 0.2rem + 0.2vw, 0.375rem) clamp(0.625rem, 0.5rem + 0.4vw, 0.875rem);
  color: var(--whiteColor);
  backdrop-filter: blur(10px);
}

.quote-badge svg {
  stroke: var(--whiteColor);
}

.modal-title {
  color: var(--whiteColor);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quote-modal-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.quote-modal-close {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: clamp(1.75rem, 1.6994rem + 0.2532vw, 2rem);
  height: clamp(1.75rem, 1.6994rem + 0.2532vw, 2rem);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.quote-modal-close::before,
.quote-modal-close::after {
  content: '';
  position: absolute;
  width: clamp(0.75rem, 0.7247rem + 0.1266vw, 0.875rem);
  height: 2px;
  background: var(--whiteColor);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.quote-modal-close::before {
  transform: rotate(45deg);
}

.quote-modal-close::after {
  transform: rotate(-45deg);
}

.quote-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg) scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quote-modal-close:hover::before,
.quote-modal-close:hover::after {
  background: var(--whiteColor);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.quote-modal-body {
  padding: clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
}

.quote-form-group {
  margin-bottom: 0;
}

.quote-form-label {
  margin-bottom: clamp(0.375rem, 0.3rem + 0.25vw, 0.5rem);
}

.quote-form-label svg {
  stroke: var(--themeColor);
  flex-shrink: 0;
}

.quote-form {
  .quote-form-input {
    border: 1px solid rgba(133, 194, 38, 0.25);
    border-radius: clamp(0.5rem, 0.4rem + 0.3vw, 0.75rem);
    padding: clamp(0.625rem, 0.5rem + 0.35vw, 0.875rem) clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem);
    color: var(--primaryColor);
    background: var(--whiteColor);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 1px 3px rgba(41, 20, 106, 0.05);
  }

  .quote-form-input:hover {
    border-color: rgba(133, 194, 38, 0.4);
    box-shadow: 0 2px 6px rgba(41, 20, 106, 0.08);
  }

  .quote-form-input:focus {
    border-color: var(--themeColor);
    box-shadow: 0 0 0 3px rgba(133, 194, 38, 0.1), 0 2px 8px rgba(133, 194, 38, 0.12);
    outline: none;
    background: var(--whiteColor);
  }

  .quote-form-input::placeholder {
    color: rgba(26, 30, 37, 0.45);
  }

  .quote-form-input.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2385C226' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 14px 10px;
    cursor: pointer;
    padding-right: 2.5rem;
  }

  .quote-form-input.form-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2385C226' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  }

  textarea.quote-form-input {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
  }

}

.quote-form-note {
  color: rgba(26, 30, 37, 0.6);
}

.quote-form-note svg {
  stroke: var(--themeColor);
  flex-shrink: 0;
}

.modal.fade .modal-dialog {
  transform: scale(0.8) translateY(-50px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.quote-modal-close .btn-close {
  display: none;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .quote-modal-body {
    padding: clamp(1.25rem, 1rem + 1vw, 2rem);
  }

  .btn-quote-submit {
    font-size: clamp(0.8125rem, 0.75rem + 0.2vw, 0.9375rem);
    padding: clamp(0.625rem, 0.5rem + 0.3vw, 0.8125rem) clamp(1rem, 0.875rem + 0.5vw, 1.375rem);
  }

}


/* Auto Slide Animation for Review Cards */
.review-cards-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0 15px;
}

.review-cards-slider {
  display: flex;
  gap: 1.5rem;
  animation: autoSlideReviews 30s linear infinite;
}

.review-cards-slider:hover {
  animation-play-state: paused;
}

@keyframes autoSlideReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-33.333% - 1rem));
  }
}

.review-card-clone {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .review-card-clone {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }

  @keyframes autoSlideReviews {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-50% - 0.75rem));
    }
  }

  .review-cards-slider {
    animation: autoSlideReviews 25s linear infinite;
  }
}

@media (max-width: 767px) {
  .review-card-clone {
    flex: 0 0 100%;
    max-width: 100%;
  }

  @keyframes autoSlideReviews {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-100% - 1.5rem));
    }
  }

  .review-cards-slider {
    animation: autoSlideReviews 20s linear infinite;
  }
}


/* ========================================
   HOUSE SHIFTING SECTION STYLES
   ======================================== */

/* House Shifting Section */
.house-shifting-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.house-shifting-card {
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
}

.house-shifting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Section Badge */
.section-badge-wrapper {
  margin-bottom: 1.5rem;
}

.section-badge {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1) 0%, rgba(133, 194, 38, 0.05) 100%);
  border: 1px solid rgba(133, 194, 38, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primaryColor);
  transition: all 0.3s ease;
}

.section-badge:hover {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.15) 0%, rgba(133, 194, 38, 0.08) 100%);
  border-color: rgba(133, 194, 38, 0.3);
}

.section-badge i {
  font-size: 18px;
}

/* House Shifting Title */
.house-shifting-title {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.3;
  color: var(--primaryColor);
  margin-bottom: 1.5rem;
}

.house-shifting-title .themeColor {
  color: var(--themeColor);
}

/* House Shifting Features List */
.house-shifting-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.house-shifting-features li {
  padding: clamp(0rem, -0.1013rem + 0.5063vw, 0.5rem) 0;
  transition: transform 0.2s ease;
}

.house-shifting-features li:hover {
  transform: translateX(5px);
}

.house-shifting-features i {
  font-size: 20px;
  color: var(--themeColor);
}

.house-shifting-features span {
  color: var(--primaryColor);
}

/* Get Quote Button */
.btn-get-quote {
  background: linear-gradient(135deg, var(--themeColor) 0%, #6fa01e 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-get-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(133, 194, 38, 0.4);
  background: linear-gradient(135deg, #6fa01e 0%, var(--themeColor) 100%);
  color: white;
}

.btn-get-quote:active {
  transform: translateY(0);
}

.btn-get-quote i {
  font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .house-shifting-section {
    padding: 40px 0;
  }

  .house-shifting-card {
    padding: 30px 20px;
  }

  .house-shifting-title {
    font-size: 1.5rem;
  }


  .btn-get-quote {
    padding: 12px 28px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .house-shifting-section {
    padding: 30px 0;
  }

  .house-shifting-card {
    padding: 25px 15px;
  }

  .house-shifting-title {
    font-size: 1.25rem;
  }

  .house-shifting-desc {
    font-size: 14px;
  }

  .section-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
}

/* Animation for House Shifting Section */
.house-shifting-section .house-shifting-card {
  animation: fadeInUp 0.8s ease-out;
}

.form-control:focus {
  box-shadow: none !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========================================
   CITY LINKS SECTION
======================================== */

.city-links-section {
  position: relative;
}

.city-links-grid {
  position: relative;
  overflow: hidden;
}

.city-links-grid::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.05) 0%, rgba(1, 146, 64, 0.05) 100%);
  border-radius: 50%;
  z-index: 0;
}

.city-links-grid::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(41, 20, 106, 0.03) 0%, rgba(133, 194, 38, 0.03) 100%);
  border-radius: 50%;
  z-index: 0;
}

.city-links-grid .row {
  position: relative;
  z-index: 1;
}

.city-link-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--textcolor);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.city-link-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(133, 194, 38, 0.05), transparent);
  transition: left 0.5s ease;
}

.city-link-item:hover::before {
  left: 100%;
}

.city-link-item svg {
  flex-shrink: 0;
  color: var(--themeColor);
  transition: transform 0.3s ease;
}

.city-link-item:hover {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.08) 0%, rgba(1, 146, 64, 0.08) 100%);
  border-color: rgba(133, 194, 38, 0.2);
  transform: translateX(5px);
  color: var(--primaryColor);
  box-shadow: 0 2px 8px rgba(133, 194, 38, 0.1);
}

.city-link-item:hover svg {
  transform: translateX(3px);
  color: var(--secondaryColor);
}

.city-link-item span {
  position: relative;
  z-index: 1;
}

.city-highlight {
  font-weight: 600;
  color: var(--primaryColor);
  transition: color 0.3s ease;
}

.city-link-item:hover .city-highlight {
  color: var(--secondaryColor);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .city-link-item {
    padding: 10px 12px;
    font-size: 13px;
  }

  .city-links-grid {
    padding: 1.5rem !important;
  }
}

@media (max-width: 575px) {
  .city-link-item {
    padding: 8px 10px;
    font-size: 12px;
  }

  .city-link-item svg {
    width: 12px;
    height: 12px;
  }
  .nav-logo img{
    height: 50px;
  }
}

/* Animation on scroll */
.city-links-grid .col-12 {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.city-links-grid .col-12:nth-child(1) {
  animation-delay: 0.1s;
}

.city-links-grid .col-12:nth-child(2) {
  animation-delay: 0.2s;
}

.city-links-grid .col-12:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========================================
   CUSTOMER SUPPORT SECTION
======================================== */

.customer-support-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.support-content-card {
  position: relative;
  overflow: hidden;
}

.support-content-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(133, 194, 38, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.support-text-content {
  position: relative;
  z-index: 1;
}

.support-feature-item svg {
  color: var(--themeColor);
  flex-shrink: 0;
}

.support-contact-card {
  position: relative;
  border: 1px solid rgba(133, 194, 38, 0.1);
}

.contact-method-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-method-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(133, 194, 38, 0.15);
  border-color: rgba(133, 194, 38, 0.3);
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1) 0%, rgba(1, 146, 64, 0.1) 100%);
  border-radius: 12px;
}

.contact-icon-wrapper svg {
  color: var(--themeColor);
}

.support-hours-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-response-badge {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.3);
}

/* Complaint Process */
.complaint-process-card {
  position: relative;
  overflow: hidden;
}

.complaint-process-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(41, 20, 106, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.process-step {
  position: relative;
  padding: 20px;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.3);
  position: relative;
}

.process-step-number::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .support-contact-card {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .support-content-card,
  .complaint-process-card {
    padding: 1.5rem !important;
  }
  
  .process-step-number {
    width: 60px;
    height: 60px;
  }
  
  .process-step-number span {
    font-size: 20px;
  }
}


/* Custom Multiselect Dropdown Styles */
.custom-multiselect-wrapper {
  position: relative;
}

.custom-multiselect-trigger {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.custom-multiselect-trigger .selected-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  order: 1;
}

.custom-multiselect-trigger .dropdown-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  order: 2;
  margin-left: auto;
}

.custom-multiselect-trigger.active .dropdown-arrow {
  transform: rotate(180deg);
}

.custom-multiselect-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  margin-top: 4px;
  padding: 8px 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  display: none;
  max-height: 120px;
  overflow-y: auto;
}

.custom-multiselect-dropdown::-webkit-scrollbar {
  width: 6px;
}

.custom-multiselect-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.custom-multiselect-dropdown::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 10px;
}

.custom-multiselect-dropdown::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
}

.custom-multiselect-dropdown.show {
  display: block;
}

.custom-checkbox-label {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin: 0;
}

.custom-checkbox-label:hover {
  background-color: #f8f9fa;
}

.custom-checkbox-label input[type="checkbox"] {
  margin-right: 10px;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.custom-checkbox-label span {
  font-size: 14px;
  color: #495057;
}




/* New Contact Page Premium Design */
.new-contact-section {
  background: #f8f9fa;
}

.contact-badge {
  background: var(--themeColor);
  color: #fff;
  border-radius: 50px;
}

.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--themeColor) 0%, var(--primaryColor) 100%);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-card-icon-wrapper {
  margin-bottom: 20px;
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.contact-card-icon i {
  font-size: 28px;
  color: #fff;
}

.contact-link {
  color: var(--textcolor);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.contact-link:hover {
  color: var(--themeColor);
  transform: translateX(5px);
}

.contact-link i {
  color: var(--themeColor);
}

.contact-map-card {
  padding: 0;
  overflow: hidden;
}

/* Branch Cards */
.branch-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.branch-card-header {
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--textcolor) 100%);
  padding: 20px 24px;
  position: relative;
}

.branch-card-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}

.branch-card-header h3 {
  color: #fff;
  position: relative;
  z-index: 1;
}

.branch-card-body {
  padding: 24px;
  background: #fff;
}

.branch-manager {
  display: flex;
  align-items: center;
  color: var(--primaryColor);
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
}

.branch-manager i {
  font-size: 20px;
  color: var(--themeColor);
}

.branch-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.branch-phone-link {
  color: var(--textcolor);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #f8f9fa;
}

.branch-phone-link:hover {
  background: var(--themeColor);
  color: #fff;
  transform: translateX(5px);
}

.branch-phone-link:hover i {
  color: #fff;
}

.branch-phone-link i {
  color: var(--themeColor);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-card {
    padding: 24px;
  }
  
  .contact-card-icon {
    width: 50px;
    height: 50px;
  }
  
  .contact-card-icon i {
    font-size: 24px;
  }
  
  .branch-card-header {
    padding: 16px 20px;
  }
  
  .branch-card-header::after {
    width: 70px;
  }
  
  .branch-card-body {
    padding: 20px;
  }
}
