
:root {
  --color-primary: #7357eb;
  --color-primary-light: #e6e0ff;
  --color-primary-dark: #5a45c0;
  --color-secondary: #75c278;
  --color-secondary-dark: #5ba35e;
  --color-background: #f8faff;
  --color-card: #ffffff;
  --color-text: #4a5568;
  --color-text-light: #718096;
  --color-text-dark: #2d3748;
  --color-border: #e2e8f0;
  --color-link: #7357eb;
  --color-website: #3182ce;
  --color-website-hover: #2c5282;
  --color-call: #38a169;
  --color-call-hover: #2f855a;
  --color-accent: #6247d0;
  --color-accent-hover: #5239b8;
  --color-sponsored: #f6ad55;
  --color-sponsored-dark: #ed8936;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;
}
.app-container{
 background: var(--color-background); 
}
/* Container */
.cp-container {
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-background);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
}

/* Hero Section - Enhanced with improved blur gradient effect */
.cp-hero {
  background: linear-gradient(135deg, var(--color-background) 0%, #f0f7ff 100%);
  color: var(--color-text-dark);
  padding: 2.5rem 1rem;
  position: relative;
  overflow: auto;
  border-bottom: 1px solid var(--color-border);
}

.cp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(115, 87, 235, 0.05), transparent 60%);
  z-index: 1;
}

@media (min-width: 768px) {
  .cp-hero {
      padding: 3.5rem 2rem 3rem;
  }
  .cp-modal__grid {
  display: flex;
  
}
}

.cp-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cp-hero__content {
  width: 100%;
  text-align: left;
}

.cp-hero__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin: 1rem 0;
  letter-spacing: -0.025em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.cp-hero__title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-full);
}

@media (min-width: 768px) {
  .cp-hero__title {
      font-size: 2.5rem;
      max-width: 800px;
  }
  
  .cp-hero__title::after {
      width: 4rem;
  }
}

.cp-hero__description {
  margin-top: 1.5rem;
  max-width: 100%;
  position: relative;
}

.cp-hero__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-align: left;
  transition: all 0.5s ease;
  position: relative;
  max-height: 150px;
  overflow: hidden;
}

/* Improved text clarity by removing blur effect */
.cp-hero__text[x-text*="content.split"] {
  position: relative;
}

.cp-hero__text[x-text*="content.split"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(248, 250, 255, 0.95), rgba(248, 250, 255, 0.1));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Hide gradient when expanded */
.cp-hero__text--expanded::after,
.cp-hero__description[x-data*="showFullContent: true"] .cp-hero__text::after {
  opacity: 0 !important;
  display: none !important;
}

/* New toggle container for centered button with animation */
.cp-hero__toggle-container {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.cp-hero__toggle {
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  background-color: var(--color-primary-light);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Added shining effect */
.cp-hero__toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

.cp-hero__toggle:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cp-hero__toggle:hover::before {
  left: 100%;
}

/* Animation for content expansion */
@keyframes expandContent {
  from { max-height: 150px; opacity: 0.8; }
  to { max-height: 1000px; opacity: 1; }
}

@keyframes collapseContent {
  from { max-height: 1000px; opacity: 1; }
  to { max-height: 150px; opacity: 0.8; }
}

.cp-hero__description[x-data*="showFullContent: true"] .cp-hero__text {
  animation: expandContent 0.5s ease forwards;
}

.cp-hero__description[x-data*="showFullContent: false"] .cp-hero__text {
  animation: collapseContent 0.5s ease forwards;
}

/* Breadcrumb in Hero */
.cp-hero .cp-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.cp-hero .cp-breadcrumb__link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.cp-hero .cp-breadcrumb__link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.cp-hero .cp-breadcrumb__separator {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.cp-hero .cp-breadcrumb__current {
  color: var(--color-text);
  margin: 0;
}

/* Top Companies Section */
.cp-top-companies {
  padding: 2rem 1rem;
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .cp-top-companies {
      padding: 3rem 1.5rem;
  }
}

.cp-top-companies__heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 1.5rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .cp-top-companies__heading {
      font-size: 1.75rem;
      margin-bottom: 2rem;
  }
}

.cp-top-companies__container {
  max-width: 1200px;
  margin: 0 auto;
}

.cp-top-companies__slider {
  position: relative;
  padding: 1rem 0 1.5rem;
}

.cp-top-companies__slider-container {
  overflow: hidden;
  position: relative;
}

.cp-top-companies__slider-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

.cp-top-companies__slider-item {
  flex: 0 0 calc(100% / 2);
  padding: 0 0.5rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .cp-top-companies__slider-item {
      flex: 0 0 calc(100% / 3);
  }
}

@media (min-width: 1024px) {
  .cp-top-companies__slider-item {
      flex: 0 0 calc(100% / 5);
  }
}

.cp-top-companies__slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.cp-top-companies__slider-button {
  background-color: white;
  color: var(--color-primary);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cp-top-companies__slider-button:hover {
  background-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Company Card */
.cp-company-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Added shining effect to card */
.cp-company-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(30deg);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.cp-company-card:hover::before {
  opacity: 1;
}

.cp-company-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.cp-company-card__rating-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: var(--color-secondary);
  color: white;
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: var(--shadow-sm);
}

.cp-company-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  height: 100%;
}

.cp-company-card__logo {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  border-radius: var(--radius-full);
  background-color: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.cp-company-card__logo:hover {
  transform: scale(1.05);
}

.cp-company-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
  height: 2.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.cp-company-card__link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

.cp-company-card__link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.cp-company-card__btn {
  margin-top: auto;
  width: 100%;
}

/* Banner Ad */
.cp-banner-ad {
  background-color: var(--color-background);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cp-banner-ad__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .cp-banner-ad__container {
      padding: 0 1.5rem;
  }
}

.cp-banner-ad__content {
  width: 100%;
  max-width: 720px;
  height: 90px;
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

/* Added shining effect */
.cp-banner-ad__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
  z-index: 1;
}

.cp-banner-ad__content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Content */
.cp-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 0.75rem;
  background-color: var(--color-background);
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .cp-content {
      padding: 2.5rem 1.5rem 3.5rem;
      overflow-x: visible;
  }
}

/* Filter */
.cp-filter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cp-filter {
      flex-direction: row;
      align-items: center;
      gap: 1.25rem;
      margin-bottom: 2.5rem;
  }
}

.cp-filter__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .cp-filter__title {
      font-size: 1.5rem;
  }
}

.cp-filter__highlight {
  color: var(--color-primary);
}

.cp-filter__select {
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--color-text);
  background-color: white;
  cursor: pointer;
  min-width: 200px;
  transition: all 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a5568' strokeWidth='2' strokeLinecap='round' strokeLinejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

.cp-filter__select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(115, 87, 235, 0.2);
}

.cp-filter__select:hover {
  border-color: var(--color-primary-light);
}

/* Layout */
.cp-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .cp-layout {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 2.5rem;
      align-items: flex-start;
  }
}


.cp-sponsored-badge__content {
  background: linear-gradient(135deg, var(--color-sponsored) 0%, var(--color-sponsored-dark) 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow: var(--shadow-md);
  animation: pulse 2s infinite;
  position: relative;
  overflow: hidden;
}

/* Enhanced shining effect */
.cp-sponsored-badge__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
      left: -100%;
  }
  100% {
      left: 100%;
  }
}

@media (min-width: 768px) {
  .cp-sponsored-badge__content {
      font-size: 0.875rem;
      padding: 0.5rem 1rem;
  }
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(246, 173, 85, 0.4);
  }
  70% {
      box-shadow: 0 0 0 10px rgba(246, 173, 85, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(246, 173, 85, 0);
  }
}

/* Mobile positioning - below */
@media (max-width: 767px) {
  .cp-rating-popup {
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      width: 280px;
  }
  
  .cp-rating-popup::before {
      content: '';
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 16px;
      height: 16px;
      background-color: white;
      border-top: 1px solid var(--color-border);
      border-left: 1px solid var(--color-border);
  }
}

.cp-company-item__rating-wrapper:hover .cp-rating-popup {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Improved Rating Popup Header - Compact */
.cp-rating-popup__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.cp-rating-popup__score {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.cp-rating-popup__score i {
  color: var(--color-secondary);
}

.cp-rating-popup__text {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.cp-rating-popup__reviews-count {
  font-size: 15px;
}

/* Redesigned Rating Categories Layout - Horizontal with text on right - Compact */
.cp-rating-popup__categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Redesigned Rating Detail - Professional Layout with circle on left, text on right - Made Compact */
.cp-rating-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  padding: 0.375rem 0;
  border-bottom: 1px dashed rgba(226, 232, 240, 0.5);
  margin-top: -25px;
  margin-bottom:15px;
}

.cp-rating-detail:last-child {
  border-bottom: none;
}

.cp-rating-detail__chart {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(248,250,255,1) 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(117, 194, 120, 0.1);
}

.cp-rating-detail__circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
}

.cp-rating-detail__circle-bg {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 3;
}

.cp-rating-detail__circle-value {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 3;
  transition: stroke-dashoffset 1s ease;
  stroke-linecap: round;
}

/* Rating Value Inside Circle - Fixed to be Perfectly Centered */
.cp-rating-detail__value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* New info section for rating detail - Compact */
.cp-rating-detail__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.cp-rating-detail__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
}

.cp-rating-detail__description {
  font-size: 0.6875rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.3;
}


/* Services Grid */
.cp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .cp-services-grid {
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.25rem;
  }
}

.cp-service-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background-color: white;
  transition: all 0.2s;
  border: 1px solid var(--color-border);
}

.cp-service-item:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary-light);
}

.cp-service-item__icon {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.cp-service-item__icon--active {
  background-color: var(--color-secondary);
  color: white;
}

.cp-service-item__icon--inactive {
  background-color: #fed7d7;
  color: #e53e3e;
}

.cp-service-item__name {
  font-size: 0.9375rem;
  color: var(--color-text);
  font-weight: 500;
}

/* Pricing */
.cp-pricing {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.cp-pricing__discuss {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2.5rem;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.cp-pricing__discuss-icon {
  font-size: 3.5rem;
  color: var(--color-primary);
}

.cp-pricing__discuss-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.cp-pricing__empty {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.cp-pricing__empty p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin: 0;
}

.cp-pricing__model {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .cp-pricing__model {
      grid-template-columns: 1fr 1fr;
  }
}

.cp-pricing__practices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cp-pricing__practice {
  display: grid;
  grid-template-columns: 4fr 1fr;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cp-pricing__practice-name {
  padding: 0.75rem 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text);
  background-color: white;
}

@media (min-width: 768px) {
  .cp-pricing__practice-name {
      padding: 0.875rem;
      font-size: 0.9375rem;
  }
}

.cp-pricing__practice-value {
  padding: 0.875rem;
  font-size: 0.9375rem;
  color: var(--color-text-dark);
  font-weight: 600;
  border-left: 1px solid var(--color-border);
  text-align: center;
  background-color: var(--color-background);
}

.cp-pricing__options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cp-pricing__option {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem;
  background-color: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all 0.2s;
}

.cp-pricing__option:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary-light);
}

.cp-pricing__option-icon {
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.cp-pricing__option-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.cp-pricing__option-name {
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-left: auto;
}

/* Reviews Summary */
.cp-reviews-summary {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.cp-reviews-summary__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cp-reviews-summary__rating {
  background-color: var(--color-secondary);
  color: white;
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow: var(--shadow-sm);
}

.cp-reviews-summary__count {
  font-size: 0.9375rem;
  color: var(--color-text);
}

.cp-reviews-summary__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .cp-reviews-summary__content {
      grid-template-columns: 1fr 1fr;
  }
}

/* Rating Detail */
.cp-rating-detail {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cp-rating-detail:last-child {
  margin-bottom: 0;
}

.cp-rating-detail__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-dark);
  width: 5.5rem;
  flex-shrink: 0;
}

.cp-rating-detail__bar-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  position: relative;
}

.cp-rating-detail__bar {
  flex: 1;
  height: 0.75rem;
  background: linear-gradient(to right, rgba(226, 232, 240, 0.3), rgba(226, 232, 240, 0.7));
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
  margin-right: 2.5rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cp-rating-detail__progress {
  height: 100%;
  background: linear-gradient(90deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-full);
  position: absolute;
  left: 0;
  top: 0;
  transition: width 1s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Add animated stripes to progress bars */
.cp-rating-detail__progress::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent
  );
  background-size: 25px 25px;
  animation: progressStripes 1s linear infinite;
  border-radius: var(--radius-full);
}

@keyframes progressStripes {
  0% {
      background-position: 0 0;
  }
  100% {
      background-position: 25px 0;
  }
}

/* Add label to progress bars */
.cp-rating-detail__bar::after {
  content: attr(data-label);
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6875rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.cp-rating-detail__value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-dark);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-border);
  position: absolute;
  right: 0;
}

/* Review Card */
.cp-review-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.cp-review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cp-review-card__user {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.cp-review-card__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.cp-review-card__user-info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.cp-review-card__user-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.cp-review-card__date {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.cp-review-card__content {
  margin-bottom: 0.5rem;
}

.cp-review-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  border-left: 4px solid var(--color-primary);
  padding-left: 1.25rem;
  margin: 0;
}

.cp-review-card__link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.5rem;
  transition: color 0.2s;
}

.cp-review-card__link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.cp-review-card__empty {
  font-size: 1rem;
  color: var(--color-text-light);
  text-align: center;
  padding: 1.5rem 0;
  margin: 0;
}

/* Sidebar */
.cp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Added section for sidebar spacing */
.cp-sidebar__section {
  margin-bottom: 2rem;
}

/* Only the last ad section is sticky - FIXED */
.cp-sidebar__section--sticky {
  position: sticky !important;
  top: 2rem !important;
  z-index: 10 !important;
}

.cp-sidebar__section:last-child {
  margin-bottom: 0;
}

.cp-sidebar__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Redesigned Contact Card - Modern Professional Style */
.cp-contact-card {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(115, 87, 235, 0.2);
}

.cp-contact-card--modern {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 0;
  border: none;
}

.cp-contact-card__bg-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -150px;
  right: -150px;
  z-index: 1;
}

.cp-contact-card__bg-shape--2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  top: auto;
  right: auto;
}

.cp-contact-card__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cp-contact-card__icon-container {
  margin-bottom: 1.5rem;
}

.cp-contact-card__icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1);
}

.cp-contact-card__icon {
  font-size: 2.5rem;
  color: white;
}

.cp-contact-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
}

.cp-contact-card__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cp-contact-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background-color: white;
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Added shining effect */
.cp-contact-card__button::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: shimmer 3s infinite;
  z-index: 1;
}

.cp-contact-card__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cp-contact-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.cp-contact-card__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

.cp-contact-card__feature i {
  color: rgba(255, 255, 255, 0.8);
}

.cp-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.cp-contact-card__header {
  padding: 1.75rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.cp-contact-card__body {
  padding: 1.75rem;
}

/* Ad */
.cp-ad {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

/* Added shining effect */
.cp-ad::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
  z-index: 1;
}

.cp-ad:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}


/* Newsletter */
.cp-newsletter-modern {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3 ease;
  position: relative;
}

.cp-newsletter-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.cp-newsletter-modern__wrapper {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  color: white;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cp-newsletter-modern__bg-icon {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.1);
  z-index: -1;
}

.cp-newsletter-modern__header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.cp-newsletter-modern__icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-sm);
}

.cp-newsletter-modern__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem;
  letter-spacing: -0.025em;
}

.cp-newsletter-modern__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cp-newsletter-modern__form {
  position: relative;
  z-index: 1;
}

.cp-newsletter-modern__input-group {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

.cp-newsletter-modern__input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  font-size: 1rem;
  color: white;
  background-color: transparent;
}

.cp-newsletter-modern__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cp-newsletter-modern__input:focus {
  outline: none;
}

.cp-newsletter-modern__button {
  background-color: white;
  color: var(--color-accent);
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Added shining effect */
.cp-newsletter-modern__button::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: shimmer 3s infinite;
  z-index: 1;
}

.cp-newsletter-modern__button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.cp-newsletter-modern__privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.25rem;
  justify-content: center;
}

.cp-newsletter-modern__privacy-icon {
  font-size: 1rem;
}

/* Related Blogs */
.cp-related-blogs {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

.cp-related-blogs:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.cp-related-blogs__header {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  padding: 1.25rem;
  position: relative;
}

.cp-related-blogs__link {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 0.875rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.cp-related-blogs__link:hover {
  opacity: 0.9;
  text-decoration: underline;
}

.cp-related-blogs__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: -0.025em;
}

.cp-related-blogs__content {
  padding: 1.25rem;
}

.cp-blog-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.2s;
}

.cp-blog-item:hover {
  transform: translateX(5px);
}

.cp-blog-item:last-child {
  border-bottom: none;
}

.cp-blog-item__image {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-full);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  border: 2px solid white;
}

.cp-blog-item__title {
  font-size: 0.9375rem;
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

/* Button */
.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

/* Added shining effect to buttons */
.cp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
  z-index: 1;
}

.cp-btn--primary {
  background-color: var(--color-accent);
  color: white;
  border: 1px solid var(--color-accent);
}

.cp-btn--primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(98, 71, 208, 0.25);
}

.cp-btn--website {
  background-color: var(--color-website);
  color: white;
}

.cp-btn--website:hover {
  background-color: var(--color-website-hover);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(49, 130, 206, 0.25);
}

.cp-btn--call {
  background-color: white;
  color: var(--color-text-dark);
  border: 1px solid var(--color-border);
}

.cp-btn--call:hover {
  background-color: var(--color-background);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.cp-btn--outline {
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.cp-btn--outline:hover {
  background-color: var(--color-background);
  border-color: var(--color-text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.cp-btn__icon {
  font-size: 1.125rem;
  position: relative;
  z-index: 2;
}

/* Modal - Completely Redesigned for Compact Layout and Mobile Responsive */
.cp-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.cp-modal__content {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem;
  width: 100%;
  max-width: 550px;
  overflow: visible;
  position: relative;
  margin: auto;
  animation: modalFadeIn 0.3s ease, modalSlideUp 0.3s ease;
  /* Make the modal content more compact */
  max-height: 90vh;
  overflow-y: auto;
}

/* Enhanced mobile responsive modal adjustments */
@media (max-width: 576px) {
  .cp-modal {
      align-items: flex-end; /* Position at bottom on mobile */
      padding: 0;
  }
  
  .cp-modal__content {
      padding: 1.5rem 1rem;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0; /* Rounded corners only at top */
      margin-bottom: 0;
  }
  
  .cp-modal__title {
      font-size: 1.25rem;
  }
  
  .cp-modal__subtitle {
      font-size: 0.875rem;
      margin-bottom: 1rem;
  }
  
  .cp-modal__grid {
      grid-template-columns: 1fr;
      gap: 0.75rem;
  }
  
  .cp-modal__field {
      margin-bottom: 0.5rem;
  }
  
  .cp-modal__company-field {
      margin-bottom: 0.75rem;
  }
  
  .cp-modal__label {
      margin-bottom: 0.25rem;
  }
  
  .cp-modal__input {
      padding: 0.625rem 0.75rem;
      font-size: 0.875rem;
  }
  
  .cp-modal__actions {
      flex-direction: column-reverse;
      gap: 0.75rem;
      margin-top: 1rem;
  }
  
  .cp-modal__actions .cp-btn {
      width: 100%;
      padding: 0.75rem;
  }
  
  .cp-modal__captcha {
      transform: scale(0.77);
      transform-origin: left center;
      margin: 0 auto;
      width: 100%;
      display: flex;
      justify-content: center;
  }
  
  /* Improve touch targets for mobile */
  .cp-modal__close {
      top: 0.5rem;
      right: 0.5rem;
      width: 2.5rem;
      height: 2.5rem;
      font-size: 1.25rem;
  }
}

/* Close button */
.cp-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background-color: var(--color-background);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
}

.cp-modal__close:hover {
  background-color: var(--color-text-light);
  color: white;
  transform: rotate(90deg);
}

.cp-modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 0.5rem;
  text-align: center;
  letter-spacing: -0.025em;
}

.cp-modal__subtitle {
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.5;
}

/* Improved modal form layout */
.cp-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cp-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cp-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

/* Added separate field for company name */
.cp-modal__company-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
}

.cp-modal__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.cp-modal__input {
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--color-text);
  transition: all 0.2s;
}

.cp-modal__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(115, 87, 235, 0.2);
}

.cp-modal__input:hover {
  border-color: var(--color-primary-light);
}

.cp-modal__captcha {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transform: scale(0.85);
  transform-origin: center;
}

.cp-modal__captcha-error {
  font-size: 0.875rem;
  color: #e53e3e;
}

.cp-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 0.75rem;
}

/* Partner Form Popup */
.cp-partner-popup {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.cp-partner-popup.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .cp-newsletter-modern__wrapper {
      padding: 1.75rem;
  }

  .cp-newsletter-modern__input-group {
      flex-direction: column;
      background-color: transparent;
      border: none;
      box-shadow: none;
  }

  .cp-newsletter-modern__input {
      width: 100%;
      padding: 0.875rem 1rem;
      border-radius: var(--radius-md);
      background-color: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
      margin-bottom: 0.875rem;
  }

  .cp-newsletter-modern__button {
      width: 100%;
      border-radius: var(--radius-md);
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from { transform: translateY(30px); }
  to { transform: translateY(0); }
}

.cp-company-item, .cp-company-card, .cp-sidebar > * {
  animation: slideUp 0.5s ease forwards;
}

[x-cloak] {
  display: none !important;
}

@media (max-width: 768px) {
  .cp-modal__grid {
      display: flex;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      flex-direction: column;
  }
}

/* Partner Form Popup specific styles */
#partner-form-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

#partner-form-popup.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

#partner-form-container {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.25rem;
  width: 100%;
  max-width: 800px;
  position: relative;
  animation: modalFadeIn 0.3s ease, modalSlideUp 0.3s ease;
}

@media (min-width: 768px) {
  #partner-form-container {
      width: 80%;
      max-height: 80vh;
      overflow-y: auto;
  }
}

.partner-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background-color: var(--color-background);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
}

.partner-popup-close:hover {
  background-color: var(--color-text-light);
  color: white;
  transform: rotate(90deg);
}

/* Force sticky positioning */
.force-sticky {
  position: sticky !important;
  top: 2rem !important;
  z-index: 10 !important;
}

/* Call Now Popup Styles */
#call-now-popup {
  opacity: 0;
  transition: opacity 0.3s ease;
}

#call-now-popup .cp-modal__content {
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

#call-now-popup.active .cp-modal__content {
  transform: scale(1);
}

#company-phone-display {
  position: relative;
  display: inline-block;
}

#company-phone-display::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

/* Enhanced Rating Detail Progress Bars - Additional Styles */
.cp-rating-popup__categories {
  margin-top: 1.5rem;
}

.cp-rating-popup {
  width: 200px;
}

@media (max-width: 767px) {
  .cp-rating-popup {
      width: 200px;
  }
}

/* Enhanced Rating Detail Progress Bars */
.cp-rating-detail__bar {
  height: 0.75rem;
  background: linear-gradient(to right, rgba(226, 232, 240, 0.3), rgba(226, 232, 240, 0.7));
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cp-rating-detail__progress {
  height: 100%;
  background: linear-gradient(90deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-full);
  position: absolute;
  left: 0;
  top: 0;
  transition: width 1s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Add animated stripes to progress bars */
.cp-rating-detail__progress::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent
  );
  background-size: 25px 25px;
  animation: progressStripes 1s linear infinite;
  border-radius: var(--radius-full);
}

@keyframes progressStripes {
  0% {
      background-position: 0 0;
  }
  100% {
      background-position: 25px 0;
  }
}

/* Add label to progress bars */
.cp-rating-detail__bar::after {
  content: attr(data-label);
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6875rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Improve rating detail layout */
.cp-rating-detail {
  margin-bottom: 1rem;
}

.cp-rating-detail__label {
  font-weight: 600;
  color: var(--color-text-dark);
}

.cp-rating-detail__value {
  font-weight: 700;
  color: var(--color-text-dark);
  background: white;
  border-radius: var(--radius-full);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-border);
}

/* Modern Contact Form Styles */
.cp-contact-form {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cp-contact-form__header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cp-contact-form__header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cp-contact-form__title {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  position: relative;
}

.cp-contact-form__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
  position: relative;
}

.cp-contact-form__body {
  padding: 2rem;
  background-color: white;
}

.cp-contact-form__fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .cp-contact-form__fields-grid {
    grid-template-columns: 1fr;
  }
}

.cp-contact-form__field {
  margin-bottom: 1.25rem;
  position: relative;
}

.cp-contact-form__field--full {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .cp-contact-form__field--full {
    grid-column: span 1;
  }
}

.cp-contact-form__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.cp-contact-form__label-icon {
  color: var(--color-primary);
  font-size: 1rem;
}

.cp-contact-form__input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--color-text-dark);
  background-color: var(--color-background);
  transition: all 0.2s ease;
}

.cp-contact-form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(115, 87, 235, 0.15);
}

.cp-contact-form__input::placeholder {
  color: var(--color-text-light);
}

.cp-contact-form__submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.cp-contact-form__submit::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: shimmer 3s infinite;
  z-index: 1;
}

.cp-contact-form__submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(98, 71, 208, 0.25);
}

.cp-contact-form__submit-icon {
  margin-right: 0.5rem;
  position: relative;
  z-index: 2;
}

.cp-contact-form__captcha {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}

/* Call Popup Styles */
.cp-call-popup {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cp-call-popup__header {
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.cp-call-popup__title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.cp-call-popup__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  margin: 0;
}

.cp-call-popup__body {
  background-color: white;
  padding: 1.5rem;
  text-align: center;
}

.cp-call-popup__phone-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.cp-call-popup__phone-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.cp-call-popup__phone-number::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.cp-call-popup__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cp-call-popup__button::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: shimmer 3s infinite;
  z-index: 1;
}

.cp-call-popup__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(98, 71, 208, 0.25);
}

.cp-call-popup__button-icon {
  position: relative;
  z-index: 2;
}

.cp-ad__content {
  height: auto;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}
.custom-submit-btn {
    background-color: #6E52E4;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(110, 82, 228, 0.3);
}

.custom-submit-btn:hover {
    background-color: #5a42c9;
    box-shadow: 0px 6px 15px rgba(110, 82, 228, 0.5);
}

.custom-submit-btn:active {
    background-color: #4a36b0;
    transform: scale(0.98);
}

.custom-submit-icon {
    font-size: 18px;
}
/* Custom Bullet Points - Targeted Styles with Two-Color Design */
.hero__container {
    max-width: 800px;
    margin: 0 auto;
    width: 90%;
}

