* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.popup-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.popup-close:hover {
  color: #333;
}

.popup-step {
  display: none;
}

.popup-step.active {
  display: block;
}

.popup-header {
  text-align: center;
  margin-bottom: 30px;
}

.popup-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 10px;
}

.popup-header p {
  font-size: 16px;
  color: #666;
}

.popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: #f8f9fa;
  color: #666;
  border: 2px solid #e9ecef;
}

.btn-secondary:hover {
  background: #e9ecef;
}

.debt-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.debt-option {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.debt-option:hover {
  border-color: #667eea;
  background: #f8f9ff;
}

.debt-option input[type="checkbox"] {
  display: none;
}

.debt-option input[type="checkbox"]:checked + .checkmark {
  background: #667eea;
  border-color: #667eea;
}

.debt-option input[type="checkbox"]:checked + .checkmark:after {
  display: block;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  margin-right: 15px;
  position: relative;
  transition: all 0.3s;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.debt-option i {
  font-size: 20px;
  color: #667eea;
  margin-right: 15px;
}

.debt-amount-select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  margin-bottom: 30px;
  background: white;
  cursor: pointer;
}

.debt-amount-select:focus {
  outline: none;
  border-color: #667eea;
}

.cta-content {
  text-align: center;
}

.phone-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.phone-highlight i {
  font-size: 24px;
  margin-right: 10px;
}

.phone-number {
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.benefit-item i {
  color: #28a745;
  font-size: 16px;
}

.btn-call {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.btn-call i {
  margin-right: 10px;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #1a365d;
}

.logo i {
  color: #667eea;
  font-size: 28px;
}

.cta-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.feature i {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: 50%;
  font-size: 16px;
}

.hero-cta {
  text-align: left;
}

.btn-primary-large {
  background: white;
  color: #667eea;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.8;
}

.debt-calculator {
  background: white;
  color: #333;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.debt-calculator h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #1a365d;
}

.calculator-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.calculator-item.total {
  border-bottom: none;
  border-top: 2px solid #667eea;
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
}

.debt-amount {
  color: #dc3545;
  font-weight: 600;
}

.savings-amount {
  color: #28a745;
  font-weight: 600;
}

.final-amount {
  color: #667eea;
  font-weight: 700;
  font-size: 20px;
}

.calc-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s;
}

.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Trust Section */
.trust-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.trust-item i {
  font-size: 40px;
  color: #667eea;
}

.trust-item span {
  font-size: 18px;
  font-weight: 600;
  color: #1a365d;
}

/* About Section */
.about-section {
  padding: 100px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 20px;
}

.about-text > p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-feature i {
  font-size: 24px;
  color: #28a745;
  margin-top: 5px;
}

.about-feature h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 8px;
}

.about-feature p {
  color: #666;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 15px;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

/* Services Section */
.services-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.services-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card.accepted {
  border-top: 4px solid #28a745;
}

.service-card.not-accepted {
  border-top: 4px solid #dc3545;
}

.service-card i {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-card.accepted i {
  color: #28a745;
}

.service-card.not-accepted i {
  color: #dc3545;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.status {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.accepted-status {
  background: #d4edda;
  color: #155724;
}

.not-accepted-status {
  background: #f8d7da;
  color: #721c24;
}

/* Process Section */
.process-section {
  padding: 100px 0;
}

.process-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 15px;
}

.step p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 5px;
}

.author-info span {
  color: #28a745;
  font-weight: 500;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating i {
  color: #ffc107;
  font-size: 16px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content > p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
}

.cta-feature i {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px;
  border-radius: 50%;
  font-size: 20px;
}

.btn-cta-large {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 20px 50px;
  border: none;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.btn-cta-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-disclaimer {
  font-size: 16px;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: #1a365d;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-phone {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-phone:hover {
  color: #667eea;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.disclaimer {
  font-size: 14px;
  font-style: italic;
}

/* Call Now Section */
.call-now-section {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.call-now-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.call-now-content > p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.phone-highlight-main {
  background: rgba(255, 255, 255, 0.2);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 15px;
  display: inline-block;
}

.phone-highlight-main i {
  font-size: 28px;
  margin-right: 15px;
}

.phone-number-main {
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.phone-number-main:hover {
  color: #f0f0f0;
}

.call-hours {
  font-size: 16px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-features {
    flex-direction: column;
    gap: 20px;
  }

  .popup-container {
    padding: 30px 20px;
    margin: 20px;
  }

  .popup-header h2 {
    font-size: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .btn-primary-large {
    font-size: 18px;
    padding: 15px 30px;
  }

  .btn-cta-large {
    font-size: 20px;
    padding: 18px 35px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .popup-buttons {
    gap: 10px;
  }

  .debt-options {
    gap: 10px;
  }

  .debt-option {
    padding: 12px;
  }
}
