/* CabConnect Main Styles - Ride Hailing Theme */

/* Navigation Styles */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.header {
  padding: 0;
}

.navbar {
  padding: 16px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

.navbar-button {
  margin-left: 32px;
}

.menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-icon-wrapper {
  width: 24px;
  height: 24px;
  position: relative;
}

.menu-icon,
.x-icon {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.x-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* Hero Section */
.hero {
  padding-top: 120px;
  background: linear-gradient(135deg, #fff7f0 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.blur-shape-left,
.blur-shape-right {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.blur-shape-left {
  background: radial-gradient(circle, rgba(253, 126, 20, 0.3) 0%, transparent 70%);
  top: 20%;
  left: -200px;
}

.blur-shape-right {
  background: radial-gradient(circle, rgba(25, 118, 210, 0.2) 0%, transparent 70%);
  top: 40%;
  right: -200px;
}

.blur-shape-left-2,
.blur-shape-right-2,
.blur-shape-left-3,
.blur-shape-right-3,
.blur-shape-left-4,
.blur-shape-right-4,
.blur-shape-left-5,
.blur-shape-right-5 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  pointer-events: none;
}

.blur-shape-left-2 {
  background: radial-gradient(circle, rgba(253, 126, 20, 0.2) 0%, transparent 70%);
  top: 10%;
  left: -150px;
}

.blur-shape-right-2 {
  background: radial-gradient(circle, rgba(40, 167, 69, 0.2) 0%, transparent 70%);
  bottom: 20%;
  right: -150px;
}

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

.home-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.home-hero-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.badge-group {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.badge {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-weight: 500;
}

.chevron-right {
  width: 16px;
  height: 16px;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.bottom-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 80px;
}

.hero-card-left,
.hero-card-right {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(253, 126, 20, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card-left:hover,
.hero-card-right:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.hero-card-left .title h4,
.hero-card-right .title h4 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.users-image {
  display: flex;
  align-items: center;
}

.user-image {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
}

.user-image:first-child {
  margin-left: 0;
}

.active-user h4 {
  color: var(--primary-color);
  margin: 0;
}

.active-user p {
  margin: 0;
  font-size: 0.875rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.i-phone {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(253, 126, 20, 0.2));
}

.hero-image-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: rgba(253, 126, 20, 0.1);
  border-radius: 50%;
  filter: blur(20px);
}

.trustpilot-rating-icon {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star-icon {
  width: 20px;
  height: 20px;
  filter: hue-rotate(15deg) saturate(1.2);
}

.line {
  width: 100%;
  height: 1px;
  background: var(--border-color);
  margin: 16px 0;
}

.trustpilot-reviewer-name {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

/* Brand Section */
.brand-section {
  padding: 60px 0;
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.brand {
  text-align: center;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.brand-logo {
  height: 70px;
  width: auto;
  filter: grayscale(1) opacity(0.6);
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

/* Numbers Section */
.numbers {
  position: relative;
  overflow: hidden;
}

.number {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.text-content.number {
  max-width: none;
}

.headline {
  margin-bottom: 24px;
}

.counters-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.counter {
  text-align: left;
}

.counter h4 {
  color: var(--primary-color);
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.counter-number {
  display: inline;
}

.counter-text {
  color: var(--text-light);
  font-size: 1rem;
  margin: 8px 0 0 0;
}

.image-box.number {
  position: relative;
  /* margin-left: 15%; */
}

.image-10 {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Feature Sections */
.feature-1 {
  padding: 10px 0;
  background: var(--white);
}

.feature-1-title {
  text-align: center;
  margin-bottom: 80px;
}

.feature-1-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-1-left-content,
.feature-1-right-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

/* Tab Features */
.feature-tab {
  position: relative;
  background: linear-gradient(135deg, #fff7f0 0%, #fff 100%);
}

.tab-feature-title {
  text-align: center;
  margin-bottom: 60px;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.feature-tab-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-tab-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.feature-tab-item:hover,
.feature-tab-item.w--current {
  background: var(--white);
  border-left-color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(253, 126, 20, 0.1);
  transform: translateX(8px);
}

.tab-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--background-light);
  border-radius: 12px;
  padding: 12px;
}

.feature-tab-item.w--current .tab-icon {
  background: var(--primary-color);
  filter: brightness(0) invert(1);
}

.tab-heading {
  flex: 1;
}

.tab-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 8px 0;
}

.tab-heading .body-text-16 {
  margin: 0;
  font-size: 0.875rem;
}

.feature-tabs-content {
  position: relative;
}

.tab-pane {
  display: none;
}

.tab-pane.w--tab-active {
  display: block;
}

.feature-tab-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.features {
  padding: 10px 0;
  background: var(--white);
}

.features-title {
  text-align: center;
  margin-bottom: 80px;
}

.features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.features-card-1,
.features-card-2,
.features-card-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-card-2 {
  grid-template-columns: 1fr 1fr;
}

.features-card-3 {
  grid-template-columns: 1fr 1fr;
}

.features-1-image-wrapper,
.features-2-image-wrapper,
.features-3-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.features-image {
  width: 30%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-card {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 200px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.features-content .title {
  margin-bottom: 2px;
}

.features-counter-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 32px 0;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.bullet {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.feature-list-text {
  margin: 0;
  flex: 1;
}

/* Key Benefits */
.key-benefits {
  background: linear-gradient(135deg, #fff7f0 0%, #fff 100%);
  position: relative;
}

.inner-hero-title {
  text-align: center;
  margin-bottom: 80px;
}

.key-benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.single-key-feature {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(253, 126, 20, 0.1);
}

.single-key-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.single-key-feature.border {
  border: 2px solid var(--primary-color);
  transform: translateY(-8px);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.icon {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.key-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

/* Smart Tools */
.smart-tools {
  padding: 10px 0;
  background: var(--white);
}

.smart-tools-title {
  text-align: center;
  margin-bottom: 80px;
}

.smart-tools-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.circle-box {
  width: 500px;
  height: 500px;
}

.smart-tools-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.i-phone-screenshot {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.circle-content {
  position: absolute;
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  max-width: 180px;
  text-align: center;
  transition: all 0.3s ease;
}

.circle-content:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.circle-content._1 {
  top: 10%;
  left: 15%;
}

.circle-content._2 {
  top: 15%;
  right: 15%;
}

.circle-content._3 {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

.circle-content._4 {
  bottom: 15%;
  right: 15%;
}

.circle-content._5 {
  bottom: 10%;
  left: 15%;
}

.circle-content._6 {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

.circle-content-title {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 8px 0;
  font-size: 1rem;
}

/* Testimonials */
.testimonial {
  background: linear-gradient(135deg, #fff7f0 0%, #fff 100%);
  position: relative;
}

.testimonial-slider {
  position: relative;
}

.mask {
  overflow: hidden;
  border-radius: 20px;
}

.slide {
  padding: 0 20px;
}

.slider-testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(253, 126, 20, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  justify-content: center;
}

.testimonial-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-content {
  text-align: center;
}

.apple-store {
  height: 24px;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.testimonial-author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: var(--primary-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-content .title {
  margin-bottom: 40px;
}

.cta-content .heading-3 {
  color: var(--white);
}

.cta-content .body-text-16 {
  color: rgba(255, 255, 255, 0.8);
}

.download-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.download-button {
  transition: transform 0.3s ease;
}

.download-button:hover {
  transform: translateY(-4px);
}

.download-button-img {
  height: 56px;
  width: auto;
}

.newsletter-form {
  margin-top: 40px;
}

.subscribe-form-wrapper {
  margin-bottom: 16px;
}

.subscribe-form {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  gap: 12px;
}

.email-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.email-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 8px;
  font-size: 1rem;
  color: var(--text-dark);
}

.email-input::placeholder {
  color: var(--text-light);
}

.email-input:focus {
  outline: none;
}

.submit-button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: var(--primary-dark);
}

.cta-image-wrapper {
  position: relative;
  text-align: center;
}

.cta-image {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.cta-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: auto;
  opacity: 0.1;
  pointer-events: none;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
}

.footer-content-wrapper {
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-widget-1 {
  max-width: 300px;
}

.footer-widget-1 .body-text-16 {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
}

.footer-items-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 40px;
}

.footer-widget-2 .body-text-16 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-item {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-item:hover {
  color: var(--primary-color);
}

.download-button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .body-text-16.medium {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }
  
  .menu-button {
    display: block;
  }
  
  .buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .bottom-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .number {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .feature-1-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .tabs {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .features-card-1,
  .features-card-2,
  .features-card-3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .key-benefits-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cta .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-items-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 100px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .counters-wrapper {
    grid-template-columns: 1fr 1fr 1fr;  /* Keep side-by-side layout */
    gap: 32px;
  }
  
  .features-counter-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .brand-logo-wrapper {
    gap: 32px;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .circle-content {
    max-width: 140px;
    padding: 16px;
  }
  
  .smart-tools-content {
    min-height: 500px;
  }
  
  .circle-box {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 479px) {
  .badge-group {
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .hero-card-left,
  .hero-card-right {
    padding: 24px;
  }
  
  .slider-testimonial-card {
    padding: 24px;
  }
  
  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .submit-button {
    width: 100%;
  }
}

/* Enhanced Numbers Section Styles */

/* Stats Image Wrapper */
.stats-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.stats-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stats-image:hover {
    transform: translateY(-8px);
}

/* Floating Statistics Cards */
.floating-stat {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 40px rgba(253, 126, 20, 0.15);
    border: 1px solid rgba(253, 126, 20, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 140px;
    transition: all 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.floating-stat:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(253, 126, 20, 0.25);
}

/* Individual Floating Stat Positions */
.floating-stat.stat-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-stat.stat-2 {
    top: 20%;
    right: -8%;
    animation-delay: 1s;
}

.floating-stat.stat-3 {
    bottom: 30%;
    left: -12%;
    animation-delay: 2s;
}

.floating-stat.stat-4 {
    bottom: 10%;
    right: -10%;
    animation-delay: 3s;
}

/* Stat Icon Styling */
.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Stat Content */
.stat-content h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 4px 0;
    line-height: 1;
}

.stat-content p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    line-height: 1.2;
}

/* Enhanced Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-4px) rotate(0deg);
    }
    75% {
        transform: translateY(-12px) rotate(-1deg);
    }
}

/* Pulse Animation for Icons */
@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.stat-icon {
    animation: pulse-icon 3s ease-in-out infinite;
}

.floating-stat.stat-1 .stat-icon {
    animation-delay: 0.5s;
}

.floating-stat.stat-2 .stat-icon {
    animation-delay: 1.5s;
}

.floating-stat.stat-3 .stat-icon {
    animation-delay: 2.5s;
}

.floating-stat.stat-4 .stat-icon {
    animation-delay: 3.5s;
}

/* Enhanced CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content .title {
    margin-bottom: 40px;
}

.cta-content .heading-3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content .body-text-16 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.download-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.download-button {
    transition: transform 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.download-button:hover {
    transform: translateY(-4px);
}

.download-button-img {
    height: 60px;
    width: auto;
}

/* Newsletter Form in CTA */
.newsletter-form {
    margin-top: 40px;
}

.subscribe-form-wrapper {
    margin-bottom: 16px;
}

.subscribe-form {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    padding: 8px;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.email-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    opacity: 0.7;
}

.email-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 8px;
    font-size: 1rem;
    color: var(--text-dark);
}

.email-input::placeholder {
    color: var(--text-light);
}

.email-input:focus {
    outline: none;
}

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-image-wrapper {
    position: relative;
    text-align: center;
}

.cta-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.cta-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: auto;
    opacity: 0.1;
    pointer-events: none;
}

/* Responsive Design for Numbers Section */
@media (max-width: 991px) {
    .stats-image-wrapper {
        min-height: 400px;
    }

    .stats-image { max-width: 500px; }

    .floating-stat {
        padding: 16px;
        min-width: 120px;
    }
    
    .floating-stat.stat-1,
    .floating-stat.stat-3 {
        left: -5%;
    }
    
    .floating-stat.stat-2,
    .floating-stat.stat-4 {
        right: -5%;
    }
    
    .stat-content h5 {
        font-size: 1.25rem;
    }
    
    .cta .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-content .heading-3 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .stats-image-wrapper {
        min-height: 300px;
    }

    .stats-image { max-width: 250px; }

    .feature-tabs-content, .features-2-image-wrapper, .features-3-image-wrapper{
      display: none;
    }

    .features-counter-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin: 32px 0;
    }
    
    .floating-stat {
        padding: 12px;
        min-width: 100px;
        gap: 8px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon-img {
        width: 20px;
        height: 20px;
    }
    
    .stat-content h5 {
        font-size: 1rem;
    }
    
    .stat-content p {
        font-size: 0.7rem;
    }
    
    .floating-stat.stat-1 {
        top: 5%;
        left: -2%;
    }
    
    .floating-stat.stat-2 {
        top: 15%;
        right: -2%;
    }
    
    .floating-stat.stat-3 {
        bottom: 35%;
        left: -2%;
    }
    
    .floating-stat.stat-4 {
        bottom: 5%;
        right: -2%;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .subscribe-form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
    }
    
    .submit-button {
        width: 100%;
    }
    
    .cta-content .heading-3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 479px) {
    .floating-stat {
        padding: 10px;
        min-width: 90px;
    }

    .stats-image { max-width: 280px; }

    .feature-tabs-content, .features-2-image-wrapper, .features-3-image-wrapper{
      display: none;
    }

    .features-counter-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin: 32px 0;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .stat-icon-img {
        width: 18px;
        height: 18px;
    }
    
    .stat-content h5 {
        font-size: 0.9rem;
    }
    
    .stat-content p {
        font-size: 0.65rem;
    }
    
    .stats-image-wrapper {
        min-height: 250px;
    }
    
    .cta-content .heading-3 {
        font-size: 1.5rem;
    }
}


