/* GST Revocation Page - External Styles */
/* Scope: .gst-revocation-page */

/* Container and Layout */
.gst-revocation-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gst-revocation-page .content-section {
  padding: 60px 20px;
}

.gst-revocation-page .content-section:nth-child(even) {
  background-color: #f8f9fa;
}

/* Typography */
.gst-revocation-page h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #1e3c72;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.gst-revocation-page h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: #2a5298;
  margin-bottom: 12px;
  line-height: 1.4;
}

.gst-revocation-page p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Introduction Section */
.gst-revocation-page .intro-section {
  background-color: #fff;
}

.gst-revocation-page .intro-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.1rem;
}

/* Benefits Grid */
.gst-revocation-page .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gst-revocation-page .benefit-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.gst-revocation-page .benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.gst-revocation-page .benefit-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.gst-revocation-page .benefit-card h3 {
  color: #1e3c72;
  margin-bottom: 12px;
}

.gst-revocation-page .benefit-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Eligibility Section */
.gst-revocation-page .eligibility-content {
  max-width: 900px;
  margin: 0 auto;
}

.gst-revocation-page .eligibility-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.gst-revocation-page .eligibility-list li {
  padding: 18px 20px 18px 50px;
  margin-bottom: 15px;
  background: #fff;
  border-left: 4px solid #2a5298;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
}

.gst-revocation-page .eligibility-list li::before {
  content: '✓';
  position: absolute;
  left: 18px;
  top: 18px;
  color: #25D366;
  font-weight: bold;
  font-size: 1.3rem;
}

.gst-revocation-page .eligibility-list strong {
  color: #1e3c72;
}

/* Process Timeline */
.gst-revocation-page .process-timeline {
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
}

.gst-revocation-page .process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #2a5298, #25D366);
}

.gst-revocation-page .process-step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.gst-revocation-page .step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(30,60,114,0.3);
  z-index: 1;
}

.gst-revocation-page .step-content {
  margin-left: 25px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  flex: 1;
}

.gst-revocation-page .step-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.gst-revocation-page .step-content p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Documents Grid */
.gst-revocation-page .documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gst-revocation-page .document-item {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.gst-revocation-page .document-item:hover {
  transform: translateY(-3px);
}

.gst-revocation-page .doc-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.gst-revocation-page .document-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.gst-revocation-page .document-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}
/* Testimonials Scoped Styles */
.gst-revocation-page .testimonials-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.gst-revocation-page .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gst-revocation-page .testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-bottom: 4px solid #1e3c72;
  transition: transform 0.3s ease;
}

.gst-revocation-page .testimonial-card:hover {
  transform: translateY(-10px);
}

.gst-revocation-page .star-rating {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.gst-revocation-page .testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.gst-revocation-page .client-info {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.gst-revocation-page .client-info strong {
  display: block;
  color: #1e3c72;
  font-size: 1.1rem;
}

.gst-revocation-page .client-info span {
  color: #888;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .gst-revocation-page .testimonial-card {
    padding: 20px;
  }
}
/* Why Choose Section */
.gst-revocation-page .feature-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.gst-revocation-page .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.gst-revocation-page .feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin-right: 20px;
}

.gst-revocation-page .feature-text h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.gst-revocation-page .feature-text p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* FAQ Section */
.gst-revocation-page .faq-container {
  max-width: 900px;
  margin: 40px auto 0;
}

.gst-revocation-page .faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}

.gst-revocation-page .faq-question {
  width: 100%;
  padding: 20px 25px;
  background: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #1e3c72;
  transition: background-color 0.3s ease;
}

.gst-revocation-page .faq-question:hover {
  background-color: #f8f9fa;
}

.gst-revocation-page .faq-item.active .faq-question {
  background-color: #f0f4f8;
}

.gst-revocation-page .faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  color: #2a5298;
  flex-shrink: 0;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.gst-revocation-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
}

.gst-revocation-page .faq-answer p {
  padding: 15px 0 20px;
  margin: 0;
  border-top: 1px solid #e9ecef;
  font-size: 1rem;
  line-height: 1.7;
}

/* CTA Section */
.gst-revocation-page .cta-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
}

.gst-revocation-page .cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.gst-revocation-page .cta-box h2 {
  color: #fff;
  margin-bottom: 20px;
}

.gst-revocation-page .cta-box > p {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 35px;
  opacity: 0.95;
}

.gst-revocation-page .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.gst-revocation-page .cta-note {
  color: #fff;
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 0;
}

/* Sticky Footer CTA */
.gst-revocation-page .sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  padding: 15px 20px;
  z-index: 1000;
  transition: bottom 0.4s ease;
}

.gst-revocation-page .sticky-cta.show {
  bottom: 0;
}

.gst-revocation-page .sticky-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.gst-revocation-page .sticky-cta-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
}

.gst-revocation-page .sticky-cta-buttons {
  display: flex;
  gap: 12px;
}

.gst-revocation-page .sticky-btn {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.gst-revocation-page .sticky-whatsapp {
  background-color: #25D366;
  color: #fff;
}

.gst-revocation-page .sticky-whatsapp:hover {
  background-color: #1faa52;
  transform: translateY(-2px);
}

.gst-revocation-page .sticky-call {
  background-color: #fff;
  color: #1e3c72;
}

.gst-revocation-page .sticky-call:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gst-revocation-page .content-section {
    padding: 40px 15px;
  }
  
  .gst-revocation-page h2 {
    font-size: 1.8rem;
  }
  
  .gst-revocation-page h3 {
    font-size: 1.15rem;
  }
  
  .gst-revocation-page .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .gst-revocation-page .documents-grid {
    grid-template-columns: 1fr;
  }
  
  .gst-revocation-page .process-timeline::before {
    left: 20px;
  }
  
  .gst-revocation-page .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .gst-revocation-page .step-content {
    margin-left: 15px;
    padding: 15px 20px;
  }
  
  .gst-revocation-page .eligibility-list li {
    padding: 15px 15px 15px 45px;
    font-size: 1rem;
  }
  
  .gst-revocation-page .eligibility-list li::before {
    left: 15px;
    font-size: 1.1rem;
  }
  
  .gst-revocation-page .faq-question {
    font-size: 1rem;
    padding: 18px 20px;
  }
  
  .gst-revocation-page .sticky-cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .gst-revocation-page .sticky-cta-text {
    font-size: 1rem;
  }
  
  .gst-revocation-page .sticky-cta-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .gst-revocation-page .sticky-btn {
    flex: 1;
    max-width: 150px;
  }
  
  .gst-revocation-page .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .gst-revocation-page .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .gst-revocation-page h2 {
    font-size: 1.5rem;
  }
  
  .gst-revocation-page p {
    font-size: 1rem;
  }
  
  .gst-revocation-page .benefit-icon {
    font-size: 2.5rem;
  }
  
  .gst-revocation-page .doc-icon {
    font-size: 2rem;
  }
}