/* Enhanced Price Page Styles */
:root {
  --primary-color: #2E7D32;
  --primary-dark: #1B5E20;
  --secondary-color: #FF6F00;
  --accent-color: #1565C0;
  --text-primary: #212121;
  --text-secondary: #424242;
  --text-light: #757575;
  --background-light: #FAFAFA;
  --background-white: #ffffff;
  --border-color: #E0E0E0;
  --shadow-light: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-medium: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-heavy: 0 8px 32px rgba(0,0,0,0.16);
  --gradient-primary: linear-gradient(135deg, #2E7D32 0%, #388E3C 100%);
  --gradient-secondary: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
  --gradient-accent: linear-gradient(135deg, #1565C0 0%, #1976D2 100%);
  --border-radius: 16px;
  --border-radius-large: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background:white;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

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

.main-content {
  min-height: calc(100vh - 80px);
}

/* Header and Footer will use the same styling as all other pages from custom.css */

/* Hero Section */
.hero-section {
  padding: 70px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 50%, #0D4A14 100%);
  color: white;
  border-radius: 0 0 20px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(46, 125, 50, 0.15);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="15" cy="15" r="0.8" fill="%23ffffff" opacity="0.08"/><circle cx="45" cy="45" r="0.8" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
  opacity: 0.4;
  animation: backgroundFloat 20s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(255,255,255,0.1) 0%, transparent 100%);
  pointer-events: none;
}

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

.hero-section h1 {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-section h1:hover {
  animation: titleGlow 2s ease-in-out infinite;
}

.hero-section h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50 0%, #81C784 100%);
  border-radius: 2px;
  animation: underlineSlide 1.5s ease-out 0.5s both;
}

.hero-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.3s both;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-section p:hover {
  transform: scale(1.02);
  color: rgba(255, 255, 255, 1);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 18px 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  min-width: 100px;
  position: relative;
  overflow: hidden;
  animation: statCardFloat 3s ease-in-out infinite;
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 0.5s; }
.stat-item:nth-child(3) { animation-delay: 1s; }

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50 0%, #81C784 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #2E7D32;
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: numberPulse 2s ease-in-out infinite;
}

.stat-item:hover .stat-number {
  color: #1B5E20;
  transform: scale(1.05);
}

.stat-label {
  font-size: 0.8rem;
  color: #666;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
  color: #333;
}

/* Service Highlights */
.service-highlights {
  padding: 60px 0;
  background: var(--background-white);
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(46, 125, 50, 0.1);
  position: relative;
  overflow: hidden;
}

.service-highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.02) 0%, rgba(46, 125, 50, 0.05) 100%);
  pointer-events: none;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--text-primary);
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.highlight-card {
  padding: 30px 25px;
  background: var(--background-white);
  border-radius: var(--border-radius);
  border: 2px solid rgba(46, 125, 50, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(46, 125, 50, 0.2));
}

.highlight-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-primary);
  line-height: 1.3;
}

.highlight-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  flex-grow: 1;
}

/* Pricing Section */
.pricing-section {
  background: transparent;
  position: relative;
}

.pricing-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
  opacity: 0.3;
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.toggle-label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 40px;
}

.toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-label-switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(46, 125, 50, 0.1);
  border-radius: 20px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.toggle-label-switch::before {
  content: '';
  position: absolute;
  height: 32px;
  width: 32px;
  left: 4px;
  bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-input:checked + .toggle-label-switch::before {
  transform: translateX(80px);
}

.toggle-option {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1;
}

.savings-badge {
  background: var(--gradient-secondary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: pulse 2s infinite;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.savings-badge.show {
  opacity: 1;
  transform: scale(1);
}

/* Enhanced Pricing Cards */
.card-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-secondary);
  color: white;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-light);
}

.card-badge.featured-badge {
  background: var(--gradient-primary);
}

.price-container {
  position: relative;
  margin-bottom: 30px;
}

.original-price {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff4444;
  color: white;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.original-price.show {
  opacity: 1;
  transform: scale(1);
}

.feature-icon {
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 10px;
}

.card-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 20px;
}

.compare-btn {
  padding: 10px 20px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.compare-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.compare-btn.selected {
  background: var(--primary-color);
  color: white;
}

/* Comparison Modal */
.comparison-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}

.comparison-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: var(--border-radius-large);
  width: 95%;
  max-width: 1000px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-heavy);
  animation: slideInUp 0.3s ease-out;
  position: relative;
}

.comparison-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid var(--border-color);
  background: var(--gradient-primary);
  color: white;
}

.comparison-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.close-modal {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.close-modal:hover {
  background: rgba(255,255,255,0.2);
}

.comparison-table {
  padding: 0;
  overflow-x: auto;
  min-width: 600px;
  border-collapse: collapse;
  width: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.comparison-row {
  display: table-row;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row.header {
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border-bottom: 2px solid var(--primary-color);
}

.comparison-row.header .comparison-cell {
  background: transparent;
  color: white;
  border: none;
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.comparison-cell {
  display: table-cell;
  text-align: center;
  padding: 15px 12px;
  vertical-align: middle;
  border-right: 1px solid #e0e0e0;
  word-wrap: break-word;
  min-height: 50px;
}

.comparison-cell:last-child {
  border-right: none;
}

.comparison-cell.feature {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  background: #f8f9fa;
  border-right: 2px solid #dee2e6;
  padding: 15px 20px;
  width: 200px;
  min-width: 200px;
}

.comparison-cell.available {
  color: var(--primary-color);
  font-weight: 600;
  background: #f0f8f0;
  border: 1px solid #d4edda;
}

.comparison-cell.unavailable {
  color: #6c757d;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
}

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

/* Removed background pattern */

.pricing-section .header {
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.pricing-section .header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--text-primary);
}

.pricing-section .header .subtitle {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-section .header .description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.8;
  font-weight: 400;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  max-width: 80%;
  margin: 0 auto;
}

.pricing-card {
  background: var(--background-white);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  border: 2px solid rgba(46, 125, 50, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 550px;
}

.pricing-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #ffffff 0%, #f8faf8 100%);
  border: 3px solid var(--primary-color);
  position: relative;
  transform: scale(1.02);
}

.pricing-card.featured::before {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}



/* Removed hover effects */

.plan-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  color: var(--primary-color);
  filter: drop-shadow(0 2px 4px rgba(46, 125, 50, 0.2));
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
  line-height: 1.2;
  position: relative;
}

.plan-description {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.8;
}

.price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(46, 125, 50, 0.1);
}

.price-period {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 600;
  opacity: 0.8;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  flex-grow: 1;
}

.features li {
  padding: 8px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 25px;
  font-size: 0.8rem;
  line-height: 1.4;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 0.8rem;
  background: rgba(46, 125, 50, 0.1);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button {
  display: inline-block;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  max-width: 180px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.cta-button::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;
}

.cta-button:hover::before {
  left: 100%;
}

/* Removed hover effects */

.cta-button.secondary {
  background: var(--gradient-secondary);
}

/* Mission Section */
.our-mission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faf8 0%, #ffffff 100%);
  border-radius: 20px;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}

.our-mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mission-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%234CAF50" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23mission-dots)"/></svg>');
  opacity: 0.5;
}

.our-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.our-mission-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--text-primary);
  line-height: 1.1;
  position: relative;
}

.our-mission-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

.our-mission-desc {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 400;
}

.our-mission-cta {
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.our-mission-cta::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;
}

.our-mission-cta:hover::before {
  left: 100%;
}

.our-mission-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.our-mission-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

.our-mission-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 35px 30px;
  background: var(--background-white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid rgba(46, 125, 50, 0.08);
  position: relative;
  overflow: hidden;
}

.our-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.our-mission-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.our-mission-card:hover::before {
  transform: scaleY(1);
}

.our-mission-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  color: var(--primary-color);
  filter: drop-shadow(0 2px 4px rgba(46, 125, 50, 0.2));
  transition: all 0.3s ease;
}

.our-mission-card:hover .our-mission-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(46, 125, 50, 0.3));
}

.our-mission-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.our-mission-card:hover .our-mission-card-title {
  color: var(--primary-color);
}

.our-mission-card-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.our-mission-card:hover .our-mission-card-desc {
  opacity: 1;
}

/* FAQ Section */


.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.faq-item {
  background: var(--background-white);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
  border: 1px solid rgba(46, 125, 50, 0.1);
  box-shadow: var(--shadow-light);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Contact Info */
.contact-info {
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8faf8 100%);
  border-radius: 16px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%234CAF50" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
  opacity: 0.6;
}

.contact-info h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

.contact-info p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.9;
  font-weight: 400;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info .phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 5px;
  background: rgba(46, 125, 50, 0.1);
  border-radius: 30px;
  border: 2px solid rgba(46, 125, 50, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-info .phone:hover {
  background: rgba(46, 125, 50, 0.15);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info .phone::before {
  content: '📞';
  margin-right: 10px;
  font-size: 1.2em;
}

.contact-info .container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.contact-info-card {
  background: var(--background-white);
  padding: 20px 18px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-info-card-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  filter: drop-shadow(0 2px 4px rgba(46, 125, 50, 0.2));
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-card-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(46, 125, 50, 0.3));
}

.contact-info-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-card-title {
  color: var(--primary-color);
}

.contact-info-card-desc {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.contact-info-card:hover .contact-info-card-desc {
  opacity: 1;
}

/* Footer will use the same styling as all other pages from custom.css */

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

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  50% {
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.2);
  }
}

@keyframes underlineSlide {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100px;
    opacity: 1;
  }
}

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

@keyframes numberPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes backgroundFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 30px;
    margin-bottom: 20px;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .hero-section h1::after {
    width: 80px;
    height: 3px;
  }
  
  .hero-section p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .hero-stats {
    gap: 25px;
    margin-top: 20px;
  }
  
  .stat-item {
    padding: 15px 12px;
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  
  .highlight-card {
    padding: 25px 20px;
    min-height: 180px;
  }
  
  .highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .highlight-card h3 {
    font-size: 1.3rem;
  }
  
  .highlight-card p {
    font-size: 0.9rem;
  }
  
  .pricing-section {
    padding: 60px 0;
    margin: 30px 0;
  }
  
  .pricing-section .header {
    margin-bottom: 40px;
  }
  
  .pricing-section .header h1 {
    font-size: 2.5rem;
  }
  
  .pricing-section .header h1::before {
    width: 60px;
    height: 3px;
  }
  
  .pricing-section .header .subtitle {
    font-size: 1.2rem;
    padding: 6px 16px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-card {
    padding: 20px 15px;
    min-height: 500px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  /* Comparison Modal Mobile Styles */
  .comparison-content {
    width: 98%;
    margin: 2% auto;
    max-height: 90vh;
  }
  
  .comparison-table {
    min-width: 400px;
    font-size: 0.9rem;
  }
  
  .comparison-cell {
    padding: 10px 8px;
    font-size: 0.85rem;
    min-height: 40px;
  }
  
  .comparison-cell.feature {
    width: 150px;
    min-width: 150px;
    padding: 10px 12px;
  }
  
  .comparison-row.header .comparison-cell {
    font-size: 0.95rem;
  }
  
  .plan-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .plan-name {
    font-size: 1.2rem;
  }
  
  .price {
    font-size: 2.2rem;
  }
  
  .features li {
    padding: 8px 0;
    padding-left: 20px;
  }
  
  .features li::before {
    width: 16px;
    height: 16px;
    font-size: 0.8rem;
  }
  
  .our-mission-section {
    padding: 60px 0;
    margin: 30px 0;
  }
  
  .our-mission-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 15px;
  }
  
  .our-mission-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
  
  .our-mission-title::after {
    width: 60px;
    height: 3px;
  }
  
  .our-mission-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .our-mission-cards {
    gap: 20px;
  }
  
  .our-mission-card {
    padding: 25px 20px;
  }
  
  .our-mission-icon {
    font-size: 3rem;
  }
  
  .our-mission-card-title {
    font-size: 1.2rem;
  }
  
  .our-mission-card-desc {
    font-size: 1rem;
  }
  
  .contact-info {
    padding: 40px 0;
    margin: 20px 0;
  }
  
  .contact-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .contact-info h3::after {
    width: 50px;
    height: 2px;
  }
  
  .contact-info p {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .contact-info .phone {
    font-size: 1.3rem;
    margin: 20px 0;
    padding: 10px 20px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
  }
  
  .contact-info-card {
    padding: 18px 15px;
  }
  
  .contact-info-card-icon {
    font-size: 1.8rem;
  }
  
  .contact-info-card-title {
    font-size: 1rem;
  }
  
  .contact-info-card-desc {
    font-size: 0.85rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  

  
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  .hero-section {
    padding: 50px 0 30px;
    margin-bottom: 20px;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .hero-section h1::after {
    width: 60px;
    height: 2px;
  }
  
  .hero-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  .hero-stats {
    gap: 20px;
    margin-top: 25px;
  }
  
  .stat-item {
    padding: 15px 12px;
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .pricing-section {
    padding: 40px 0;
    margin: 20px 0;
  }
  
  .pricing-section .header {
    margin-bottom: 30px;
  }
  
  .pricing-section .header h1 {
    font-size: 1.8rem;
  }
  
  .pricing-section .header .subtitle {
    font-size: 1rem;
  }
  
  .pricing-section .header .description {
    font-size: 0.95rem;
  }
  
  .pricing-card {
    padding: 12px 10px;
    min-height: 450px;
  }
  
  .pricing-card.featured::after {
    font-size: 0.6rem;
    padding: 4px 10px;
  }
  
  .plan-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  
  .plan-name {
    font-size: 0.95rem;
  }
  
  .plan-description {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  
  .price {
    font-size: 1.5rem;
  }
  
  .price-period {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  
  .features {
    margin-bottom: 15px;
  }
  
  .features li {
    padding: 6px 0;
    padding-left: 18px;
    font-size: 0.75rem;
  }
  
  .features li::before {
    width: 14px;
    height: 14px;
    font-size: 0.7rem;
  }
  
  .cta-button {
    padding: 8px 20px;
    font-size: 0.75rem;
    max-width: 130px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .highlights-grid {
    gap: 20px;
    margin-top: 25px;
  }
  
  .highlight-card {
    padding: 20px 15px;
    min-height: 150px;
  }
  
  .highlight-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .highlight-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .highlight-card p {
    font-size: 0.85rem;
  }
  
  /* Comparison Modal Small Screen Styles */
  .comparison-content {
    width: 99%;
    margin: 1% auto;
    max-height: 95vh;
  }
  
  .comparison-table {
    min-width: 300px;
    font-size: 0.8rem;
  }
  
  .comparison-cell {
    padding: 8px 6px;
    font-size: 0.75rem;
    min-height: 35px;
  }
  
  .comparison-cell.feature {
    width: 120px;
    min-width: 120px;
    padding: 8px 10px;
  }
  
  .comparison-row.header .comparison-cell {
    font-size: 0.85rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for cards */
.pricing-card, .highlight-card, .faq-item {
  animation: fadeInUp 0.6s ease-out;
}

.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; }

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

/* Hover effects for interactive elements */
.footer-links-middle a:hover {
  color: var(--primary-color) !important;
  transform: translateX(5px);
  transition: var(--transition);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Ripple effect for buttons */
.cta-button {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Floating Action Button */
.floating-action-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
  z-index: 1000;
}

.floating-action-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

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

.fab-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-primary);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid var(--text-primary);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.floating-action-button:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Loading animation */
body:not(.loaded) {
  overflow: hidden;
}

body:not(.loaded)::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

body:not(.loaded)::after {
  content: '🌿';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  animation: pulse 1.5s infinite;
  z-index: 10000;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.7;
  }
}

/* Enhanced FAQ animations */
.faq-question {
  position: relative;
  padding-right: 30px;
}

.faq-question::after {
  content: '▼';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Enhanced pricing card hover effects */
.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card::after {
  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;
}

.pricing-card:hover::after {
  left: 100%;
}

/* Stats counter animation */
.stat-number {
  transition: all 0.3s ease;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .floating-action-button {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .fab-icon {
    font-size: 1.2rem;
  }
  
  .fab-tooltip {
    display: none;
  }
}

/* Print styles */
@media print {
  .floating-action-button,
  .cta-button,
  .navbar {
    display: none !important;
  }
  
  .pricing-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
} 