/* Custom CSS Variables */
:root {
  --primary-color: #0d9488;
  --secondary-color: #14b8a6;
  --accent-color: #06b6d4;
  --background-color: #ffffff;
  --foreground-color: #4b5563;
  --muted-color: #6b7280;
  --card-color: #f0f4f8;
  --border-color: #e5e7eb;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Skip Link */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  z-index: 1000;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--foreground-color);
  scroll-behavior: smooth;
}

/* Bootstrap Overrides */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gradient-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

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

/* Override Bootstrap's default primary color */
.text-primary {
  color: var(--primary-color) !important;
}

/* Navigation */
.custom-navbar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 0;
  position: relative;
}

.custom-navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.02) 0%, rgba(20, 184, 166, 0.02) 100%);
  pointer-events: none;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 800;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.navbar-brand:hover {
  transform: scale(1.05);
  text-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.navbar-logo {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(13, 148, 136, 0.2));
}

.nav-link {
  font-weight: 600;
  color: var(--foreground-color) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  margin: 0 0.25rem;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(13, 148, 136, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
}

.navbar-toggler {
  border: none;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 12px;
  padding: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
  position: relative;
  z-index: 2;
}

.navbar-toggler:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.4);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Active nav link */
.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 700;
  background: rgba(13, 148, 136, 0.1);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
}

/* Navbar buttons */
.custom-navbar .btn {
  border-radius: 25px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-navbar .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.custom-navbar .btn-outline-primary {
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
}

.custom-navbar .btn-outline-primary:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
}

.custom-navbar .btn-primary {
  background: var(--gradient-primary);
  border: none;
}

.custom-navbar .btn-primary:hover {
  background: var(--gradient-accent);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
}

/* Dropdown Menu Styles */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-top: 0.5rem;
  min-width: 200px;
  z-index: 1050;
  position: absolute;
}

.dropdown-item {
  color: var(--foreground-color);
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 2px 4px;
}

.dropdown-item:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateX(5px);
}

.dropdown-item i {
  font-size: 0.9rem;
  opacity: 0.8;
}

.dropdown-item:hover i {
  opacity: 1;
}

/* Dropdown toggle arrow animation */
.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.dropdown.show .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Ensure dropdown is visible */
.dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Mobile dropdown adjustments */
@media (max-width: 991.98px) {
  .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    margin-top: 0.25rem;
  }
  
  .dropdown-item {
    padding: 0.75rem 1rem;
  }
}

/* Skip Link */

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
  /* Prevent overlay from capturing clicks */
  pointer-events: none;
}

.hero-badges .badge {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.hero-cta .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.stats-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--muted-color);
  font-weight: 500;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

/* Service Cards */
.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card ul li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

/* Process Cards - Redesigned without absolute positioning */
.process-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

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

/* Process number as part of the card header */
.process-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.process-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.process-icon i {
  font-size: 1.5rem;
  color: white;
}

/* Result Cards */
.result-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.result-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

/* Case Study Cards */
.case-study-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.case-study-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.metric-label {
  font-size: 0.875rem;
  color: var(--muted-color);
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  /* Prevent overlay from blocking button clicks */
  pointer-events: none;
}

.cta-buttons .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  /* Ensure buttons sit above any decorative overlays */
  position: relative;
  z-index: 1;
}

/* Accordion Customization */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: white;
  border: none;
  font-weight: 600;
  padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: var(--card-color);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 1.5rem;
  background: white;
}

/* Footer */
footer {
  background: #1f2937 !important;
}

.social-links a {
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color) !important;
}

/* Footer text improvements */
footer .text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

footer .text-white-50:hover {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .display-2 {
    font-size: 2.5rem;
  }

  .hero-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .hero-cta .btn:last-child {
    margin-bottom: 0;
  }

  .stats-card {
    margin-top: 3rem;
  }

  .process-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Navbar mobile improvements */
  .navbar-nav {
    text-align: center;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    margin-top: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
  }

  .navbar-nav .nav-item {
    margin-bottom: 0.75rem;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    margin: 0.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(13, 148, 136, 0.1);
    transform: translateY(-1px);
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .navbar-toggler {
    margin: 0.5rem;
  }

  /* Mobile button styling */
  .navbar-nav .btn {
    display: block;
    width: 90%;
    margin: 0.5rem auto;
    padding: 0.75rem 1rem;
  }
}

/* Smooth Animations */
* {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Section Spacing */
section {
  padding: 5rem 0;
}

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

/* Hero Badge */
.hero-badge {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge .badge {
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(13, 148, 136, 0.2);
  background: rgba(13, 148, 136, 0.1) !important;
  color: var(--primary-color) !important;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-sm);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.indicator-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(20, 184, 166, 0.1));
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.indicator-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.indicator-badge i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

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

.pricing-card.recommended {
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(13, 148, 136, 0.2);
}

.pricing-card.premium {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 2px solid #f59e0b;
}

/* Enhanced Pricing Card Styling */
.pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.1);
  animation: cardEntrance 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes cardEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }
.pricing-card:nth-child(5) { animation-delay: 0.5s; }

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px 20px 0 0;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.03) rotateX(5deg);
  box-shadow: 0 25px 80px rgba(13, 148, 136, 0.2), 0 0 40px rgba(13, 148, 136, 0.1);
  border-color: rgba(13, 148, 136, 0.2);
}

.pricing-card.recommended {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.98));
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.15);
}

.pricing-card.recommended::before {
  opacity: 1;
  height: 6px;
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
  }
}

.premium-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-price {
  margin: 1.5rem 0;
  position: relative;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted-color);
  position: relative;
  top: -0.5rem;
}

.pricing-price .amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(13, 148, 136, 0.1);
  line-height: 1;
}

.pricing-price .period {
  font-size: 1.25rem;
  color: var(--muted-color);
  font-weight: 500;
  position: relative;
  top: -0.5rem;
  margin-left: 0.25rem;
}

.pricing-body {
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  line-height: 1.5;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 2rem;
}

.pricing-features li:hover {
  background: rgba(13, 148, 136, 0.02);
  border-radius: 8px;
  padding-left: 2.25rem;
}

.pricing-features li i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 0.75rem;
  transition: all 0.3s ease;
}

.pricing-features li:hover i {
  transform: scale(1.1);
  color: var(--secondary-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.nested-features {
  margin-left: 1.5rem !important;
  font-size: 0.85rem !important;
}

.nested-features li {
  border-bottom: none !important;
  padding: 0.25rem 0 !important;
}

.pricing-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  position: relative;
}

.pricing-footer .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-footer .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.pricing-footer .btn:hover::before {
  left: 100%;
}

.pricing-footer .btn-primary {
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.pricing-footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.pricing-footer .btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.2);
}

/* Pricing Preview Cards for Services Page */
.pricing-preview-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.pricing-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-preview-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(13, 148, 136, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.pricing-preview-header {
  margin-bottom: 1.5rem;
}

.pricing-preview-header .price {
  margin: 1rem 0 0.5rem;
}

.pricing-preview-header .price .currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--muted-color);
}

.pricing-preview-header .price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.pricing-preview-header .price .period {
  font-size: 1rem;
  color: var(--muted-color);
  font-weight: 500;
}

/* Alert Styles */
.alert {
  border-radius: 16px;
  border: none;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.alert::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: currentColor;
}

.alert-warning {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border-left: 4px solid #f59e0b;
}

.alert-info {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  border-left: 4px solid #3b82f6;
}

.alert-success {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  border-left: 4px solid #10b981;
}

.alert-primary {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  border-left: 4px solid var(--primary-color);
}

/* Industry Cards */
.industry-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.industry-icon {
  margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

/* Green themed feature icons for Why Choose Our Plans section */
.feature-icon-green {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-icon-green::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.feature-icon-green:hover::before {
  left: 100%;
}

.feature-icon-green:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.feature-icon-green i {
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Why Choose Our Plans Section */
.why-choose-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

/* Enhanced Feature Cards for Why Choose Section */
.why-choose-section .feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2.5rem 2rem;
}

.why-choose-section .feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.2);
}

.why-choose-section .feature-card h5 {
  color: #065f46;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.why-choose-section .feature-card p {
  color: #374151;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Comparison Table in Why Choose Section */
.why-choose-section .table {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.why-choose-section .table th,
.why-choose-section .table td {
  padding: 1rem 0.75rem;
  border: none;
  vertical-align: middle;
  text-align: center;
}

.why-choose-section .table thead th {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.why-choose-section .table tbody tr:nth-child(even) {
  background: rgba(16, 185, 129, 0.02);
}

.why-choose-section .table tbody tr:hover {
  background: rgba(16, 185, 129, 0.05);
  transition: background 0.3s ease;
}

.why-choose-section .table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #065f46;
  background: rgba(255, 255, 255, 0.8);
}

/* Feature Sections in Pricing Cards */
.feature-section {
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
}

.feature-section .feature-title {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.feature-section .pricing-features {
  padding-left: 0.5rem;
}

/* Enhanced Pricing Body Padding */
.pricing-body {
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

/* Row Spacing for Pricing Grid */
.pricing-grid .row:first-child {
  margin-bottom: 3rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1050;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: whatsappPulse 3s infinite;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
  animation: none;
}

.whatsapp-float i {
  transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
  transform: scale(1.1);
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3), 0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
}

/* Big Pricing Button */
.btn-pricing-large {
  padding: 1rem 3rem;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-pricing-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-pricing-large:hover::before {
  left: 100%;
}

.btn-pricing-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(13, 148, 136, 0.4);
}

.btn-pricing-large i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}


