/* ========== PRICING PAGE STYLES ========== */

/* Pricing Intro Section */
.pricing-intro {
  background: linear-gradient(135deg, #f9fafc 0%, #f0f2ff 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}

.pricing-intro .container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-header {
  margin-bottom: 2rem;
  width: 100%;
}

.pricing-header h2 {
  font-size: 2.2rem;
  color: #4d4572;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.pricing-header p {
  font-size: 1rem;
  color: #616174;
  line-height: 1.3;
  max-width: 600px;
  margin: 0 auto;
}

.payment-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #4d4572;
  width: 100%;
}

.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: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 34px;
  transition: .4s;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: .4s;
}

.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, #764ba2, #ff66c4);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

/* Mobile Responsive for Pricing Intro */
@media (max-width: 768px) {
  .pricing-intro {
    padding: 3rem 1rem;
  }
  
  .pricing-header h2 {
    font-size: 1.4rem;
  }
  
  .payment-toggle {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pricing-header p {
    font-size: 0.9rem;
  }
  
  .payment-toggle {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Pricing Plans Section */
.pricing-plans {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f8;
  transition: all 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #e02cbf;
}

.plan-card.recommended {
  border-color: #e02cbf;
  transform: scale(1.05);
}

.plan-card.recommended:hover {
  transform: scale(1.05) translateY(-10px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e02cbf, #6200ea);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  z-index: 1;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f8;
}

.plan-header h3 {
  font-size: 1.5rem;
  color: #4d4572;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.2rem;
  color: #4d4572;
  font-weight: 600;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #e02cbf;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.period {
  font-size: 1rem;
  color: #616174;
  font-weight: 400;
}

.plan-description {
  color: #72728c;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.plan-features {
  margin-bottom: 2rem;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.83rem;
  color: #72699b;
  font-weight: 400;
}

.plan-features i.fa-check {
  color: #28a745;
  font-size: 0.9rem;
}

.plan-features i.fa-times {
  color: #dc3545;
  font-size: 0.9rem;
  opacity: 0.6;
}

.plan-cta {
  text-align: center;
}

.plan-btn {
  display: inline-block;
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.plan-btn:hover {
  background: linear-gradient(135deg, #764ba2, #ff66c4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 44, 191, 0.3);
}

.recommended-btn {
  background: linear-gradient(135deg, #e02cbf, #6200ea);
}

.recommended-btn:hover {
  background: linear-gradient(135deg, #6200ea, #e02cbf);
}

/* Mobile Responsive for Pricing Plans */
@media (max-width: 768px) {
  .pricing-plans {
    padding: 3rem 1rem;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .plan-card.recommended {
    transform: none;
  }
  
  .plan-card.recommended:hover {
    transform: translateY(-10px);
  }
  
  .amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .plan-header h3 {
    font-size: 1.3rem;
  }
  
  .amount {
    font-size: 2rem;
  }
  
  .plan-card {
    padding: 1.5rem;
  }
  
  .plan-features li {
    font-size: 0.85rem;
  }
}


/* ========== QUOTE FORM SECTION ========== */

.quote-form-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #f9f9ff 0%, #f7d8ee 100%);
}

.quote-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.quote-header h2 {
  font-size: 2.2rem;
  color: #4d4572;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.quote-header p {
  font-size: 0.92rem;
  color: #616174;
  line-height: 1.3;
  max-width: 600px;
  margin: 0 auto;
}

.quote-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4d4572;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e8;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #780763;
  background: white;
  box-shadow: 0 0 0 3px rgba(224, 44, 191, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a999b0;
  font-size: 0.78rem;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234d4572' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  color: #4d4572;
}

.form-submit {
  margin-top: 1rem;
  text-align: center;
}

.submit-btn {
  background: linear-gradient(135deg, #e02cbf, #6200ea);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #6200ea, #e02cbf);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 44, 191, 0.3);
}

.form-note {
  font-size: 0.85rem;
  color: #72728c;
  margin-top: 0.75rem;
  font-style: italic;
  text-align: center;
}

.form-info {
  padding: 1.5rem;
  background: #f8f8ff;
  border-radius: 12px;
  border-left: 4px solid #e02cbf;
}

.form-info h3 {
  font-size: 1.3rem;
  color: #4d4572;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.form-info h3 i {
  color: #e02cbf;
}

.form-info p {
  font-size: 0.9rem;
  color: #616174;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.info-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-point i {
  color: #e02cbf;
  font-size: 1.2rem;
  margin-top: 0.25rem;
}

.info-point h4 {
  font-size: 0.95rem;
  color: #4d4572;
  margin-bottom: 0.25rem;
  font-family: 'Poppins', sans-serif;
}

.info-point p {
  font-size: 0.85rem;
  color: #72728c;
  margin: 0;
}

/* Mobile Responsive for Quote Form */
@media (max-width: 992px) {
  .quote-form-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .quote-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .quote-form-section {
    padding: 3rem 1rem;
  }
  
  .quote-form-wrapper {
    padding: 1.5rem;
  }
  
  .quote-header {
    margin-bottom: 2rem;
  }
  
  .form-info h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .quote-header h2 {
    font-size: 1.5rem;
  }
  
  .quote-header p {
    font-size: 0.9rem;
  }
  
  .submit-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
}



/* Pricing CTA Section */
.pricing-cta {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #400953 0%, #420d59 50%, #371942 100%);
  color: rgb(201, 200, 220);
  text-align: center;
}

.pricing-cta .container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  width: 100%;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.pricing-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.9;
  line-height: 1.4;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.cta-btn {
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn.primary {
  background: white;
  color: #6200ea;
}

.cta-btn.primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Mobile Responsive for CTA Section */
@media (max-width: 768px) {
  .pricing-cta {
    padding: 3rem 1rem;
  }
  
  .pricing-cta h2 {
    font-size: 1.8rem;
  }
  
  .pricing-cta p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pricing-cta h2 {
    font-size: 1.5rem;
  }
  
  .pricing-cta p {
    font-size: 0.9rem;
  }
  
  .cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}


/* Form submission styles */
.form-response {
  margin: 10px 0;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  display: none;
}

.form-response.success {
  display: block;
  background: #e9f9f0;
  color: #1e7e34;
  border: 1px solid #b7ebc6;
}

.form-response.error {
  display: block;
  background: #fdecea;
  color: #a71d2a;
  border: 1px solid #f5c6cb;
}
