/* ===================================
   WORDPRESS TROUBLESHOOTING PAGE STYLES
   Enhanced color scheme for better readability
   =================================== */

/* Color Customizations */
:root {
  --wp-success: #4ade80;
  --wp-success-light: rgba(76, 222, 128, 0.15);
  --wp-primary: #ff3b3b;
  --wp-primary-light: rgba(255, 59, 59, 0.15);
  --wp-text-white: #ffffff;
  --wp-text-light: rgba(255, 255, 255, 0.8);
  --wp-text-muted: rgba(255, 255, 255, 0.7);
  --wp-card-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  --wp-border: rgba(255, 255, 255, 0.08);
  --wp-border-hover: rgba(255, 59, 59, 0.5);
}

/* WordPress Hero Section */
.wp-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
}

.wp-hero-section .hero-content {
  animation: fadeInUp 1s ease;
}

.wp-hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(76, 222, 128, 0.4);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(76, 222, 128, 0.15) 0%, rgba(34, 197, 94, 0.1) 100%);
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
  color: #4ade80;
  box-shadow: 0 0 30px rgba(76, 222, 128, 0.2);
  animation: fadeInDown 0.8s ease;
}

.wp-hero-section .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wp-hero-section .hero-title {
  font-size: 4.5rem;
  margin-bottom: 30px;
  letter-spacing: -2px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-main);
}

.wp-hero-section .hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.9;
  font-weight: 400;
}

.wp-hero-section .hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.wp-hero-section .hero-buttons .cta-btn,
.wp-hero-section .hero-buttons .btn-secondary {
  padding: 15px 35px;
  font-size: 1rem;
}

.wp-hero-section .hero-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 80px;
}

.wp-hero-section .metric-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ff3b3b 0%, #ff0055 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wp-hero-section .metric-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.wp-hero-section .metric-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

.wp-hero-section .metric-display {
  text-align: center;
}

.wp-hero-section .trust-badges {
  display: flex;
  gap: 35px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.wp-hero-section .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.wp-hero-section .trust-item i {
  color: var(--success-color);
  font-size: 1.3rem;
}

/* Expertise Section */
.expertise-section {
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.expertise-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 59, 59, 0.12) 0%,
    rgba(255, 0, 85, 0.06) 40%,
    rgba(5, 5, 5, 0) 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 35px;
  position: relative;
  z-index: 1;
}

.expertise-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff3b3b 0%, #ff0055 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 59, 59, 0.5);
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.08) 0%, rgba(255, 0, 85, 0.05) 100%);
  box-shadow: 0 20px 60px rgba(255, 59, 59, 0.25);
}

.expertise-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff3b3b 0%, #ff0055 100%);
  border-radius: 16px;
  margin-bottom: 25px;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4),
              inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.expertise-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.expertise-card > p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.expertise-list li i {
  color: var(--success-color);
  font-size: 1rem;
  flex-shrink: 0;
  font-weight: 600;
}

/* Process Timeline Section */
.process-section {
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, 
    #ff3b3b 0%, 
    rgba(255, 59, 59, 0.4) 50%,
    #ff3b3b 100%
  );
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.5);
}

.process-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  padding-left: 20px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3b3b 0%, #ff0055 100%);
  border: 4px solid rgba(255, 59, 59, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(255, 59, 59, 0.3);
}

.step-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px;
  flex: 1;
  transition: all 0.3s ease;
}

.step-content:hover {
  border-color: rgba(255, 59, 59, 0.5);
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.06) 0%, rgba(255, 0, 85, 0.04) 100%);
  transform: translateX(10px);
  box-shadow: 0 10px 40px rgba(255, 59, 59, 0.15);
}

.step-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--text-main);
  font-weight: 700;
}

.step-content > p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.step-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.step-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 59, 59, 0.15);
  border: 1px solid rgba(255, 59, 59, 0.3);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.step-features span i {
  color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
  background: #050505;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, #0a0a0a 100%);
  pointer-events: none;
  z-index: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(255, 59, 59, 0.2);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 59, 59, 0.5);
  box-shadow: 0 30px 80px rgba(255, 59, 59, 0.25);
}

.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.07);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--primary-gradient);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 20px rgba(255, 59, 59, 0.4);
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-price {
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.pricing-price .currency {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.pricing-price .amount {
  font-size: 4rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.pricing-price .period {
  color: var(--text-muted);
  align-self: flex-end;
  padding-bottom: 10px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--glass-border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-features li.disabled {
  opacity: 0.5;
}

.pricing-features li.disabled i {
  color: var(--text-muted);
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 15px 30px;
  background: var(--primary-gradient);
  color: #fff;
  text-align: center;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4);
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 59, 59, 0.4);
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.06) 0%, rgba(255, 0, 85, 0.04) 100%);
  box-shadow: 0 10px 30px rgba(255, 59, 59, 0.1);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin: 0;
  flex: 1;
  font-weight: 600;
}

.faq-question i {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: var(--text-light);
  line-height: 1.9;
  margin: 0;
  font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 59, 59, 0.2) 0%,
    rgba(255, 0, 85, 0.1) 40%,
    rgba(5, 5, 5, 0) 70%
  );
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: 50%;
  font-size: 3rem;
  color: #fff;
  box-shadow: 0 20px 60px rgba(255, 59, 59, 0.4);
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -1px;
}

.cta-content > p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.9;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-btn.large,
.btn-secondary.large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.cta-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.availability-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4ade80;
  font-weight: 600;
}

.separator {
  color: var(--glass-border);
}

/* Responsive Design */
@media (max-width: 968px) {
  .wp-hero-section .hero-title {
    font-size: 3.2rem;
    letter-spacing: -1.5px;
  }

  .wp-hero-section .hero-subtitle {
    font-size: 1.1rem;
  }

  .wp-hero-section .hero-metrics {
    flex-direction: column;
    gap: 25px;
    padding: 25px;
  }

  .wp-hero-section .metric-divider {
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
  }

  .expertise-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  .expertise-section,
  .process-section,
  .faq-section,
  .cta-section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .process-timeline::before {
    left: 30px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .process-step {
    gap: 25px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card:hover,
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn.large,
  .btn-secondary.large {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .wp-hero-section {
    padding-top: 120px;
  }

  .wp-hero-section .hero-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .wp-hero-section .hero-subtitle {
    font-size: 1.05rem;
  }

  .wp-hero-section .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .wp-hero-section .hero-buttons .cta-btn,
  .wp-hero-section .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .wp-hero-section .trust-badges {
    flex-direction: column;
    gap: 20px;
  }

  .expertise-section,
  .process-section,
  .faq-section,
  .cta-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-tag {
    font-size: 0.8rem;
    padding: 8px 18px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expertise-card {
    padding: 30px;
  }

  .expertise-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .process-step {
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
  }

  .process-timeline::before {
    display: none;
  }

  .step-number {
    margin: 0 auto;
  }

  .pricing-price .amount {
    font-size: 3rem;
  }

  .cta-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-availability {
    flex-direction: column;
    gap: 10px;
  }

  .separator {
    display: none;
  }
}
