/* SERVICES PAGE SPECIFIC STYLES */
.services-page {
  padding: 8rem 0 4rem;
}

.services-page .page-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.services-page .page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.services-page .page-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.services-tabs {
  margin-bottom: 5rem;
}

.services-tabs .tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.services-tabs .tab-btn {
  background: transparent;
  border: 2px solid var(--accent-1);
  color: var(--text-primary);
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-tabs .tab-btn.active,
.services-tabs .tab-btn:hover {
  background: var(--accent-gradient);
  color: white;
  border-color: transparent;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.2rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-1);
}

.service-content {
  flex-grow: 1;
  margin-bottom: 1.8rem;
}

.service-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.service-features li i {
  color: var(--success);
  font-size: 1.1rem;
  margin-top: 3px;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.benefits-section {
  margin: 6rem 0;
  text-align: center;
}

.benefits-section h2 {
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-1);
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-section {
  background: var(--accent-gradient);
  padding: 5rem 0;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 5rem;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .services-page {
    padding: 6rem 0 3rem;
  }
  
  .services-page .page-header h1 {
    font-size: 2.4rem;
  }
  
  .services-tabs .tabs {
    flex-direction: column;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    padding: 3rem 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .services-page .page-header h1 {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 1.8rem;
  }
}


/* Pricing Page Specific Styles */
.pricing-page {
  padding-top: 6rem;
}

.page-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.page-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Toggle */
.pricing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.toggle-label {
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.toggle-label.active {
  color: var(--text-primary);
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: var(--transition);
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 3px;
  background: var(--accent-gradient);
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: rgba(99, 102, 241, 0.1);
}

input:checked + .toggle-slider:before {
  transform: translateX(28px);
}

.savings-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--accent-1);
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.recommended {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--accent-gradient);
  color: white;
  padding: 0.5rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  transform: rotate(45deg);
  width: 140px;
  text-align: center;
}

.pricing-header {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-border);
}

.pricing-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  margin-bottom: 1.2rem;
}

.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price .period {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.7rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border-bottom: 1px dashed var(--card-border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--success);
  font-size: 1.1rem;
  margin-top: 3px;
}

.pricing-features li .fa-times {
  color: var(--text-secondary);
  opacity: 0.5;
}

.pricing-actions {
  margin-top: auto;
}

/* SERVICES PAGE SPECIFIC STYLES */
.services-page {
  padding: 8rem 0 4rem;
}
.services-page .page-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.services-page .page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}
.services-page .page-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}
.services-tabs {
  margin-bottom: 5rem;
  position: relative;
}
.services-tabs .tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.services-tabs .tab-btn {
  background: transparent;
  border: 2px solid var(--accent-1);
  color: var(--text-primary);
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.services-tabs .tab-btn.active,
.services-tabs .tab-btn:hover {
  background: var(--accent-gradient);
  color: white;
  border-color: transparent;
}
.services-tabs .filter-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.services-tabs .filter-btn {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.services-tabs .filter-btn:hover {
  background: rgba(99, 102, 241, 0.1);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.2rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-1);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-1);
}
.service-content {
  flex-grow: 1;
  margin-bottom: 1.8rem;
}
.service-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.service-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.service-features li i {
  color: var(--success);
  font-size: 1.1rem;
  margin-top: 3px;
}
.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}
.benefits-section {
  margin: 6rem 0;
  text-align: center;
}
.benefits-section h2 {
  margin-bottom: 3rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-1);
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}
.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}
.cta-section {
  background: var(--accent-gradient);
  padding: 5rem 0;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 5rem;
}
.cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
/* Responsive adjustments */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (max-width: 768px) {
  .services-page {
    padding: 6rem 0 3rem;
  }
  
  .services-page .page-header h1 {
    font-size: 2.4rem;
  }
  
  .services-tabs .tabs {
    flex-direction: column;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    padding: 3rem 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .services-page .page-header h1 {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 1.8rem;
  }
}