/* quote.css - Quote Page Specific Styles */

/* Quote Hero Section */
.quote-hero {
  background: var(--secondary-bg);
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.quote-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.quote-hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Improved Progress Steps */
.quote-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 800px;
  padding: 0 2rem;
  position: relative;
}

.quote-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: var(--border-light);
  z-index: 1;
}

.quote-step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
}

.step-icon-container {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.step-icon {
  font-size: 1.5rem;
  color: var(--text-secondary);
  background: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border-light);
  transition: all 0.3s ease;
}

.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 25px;
  height: 25px;
  background: var(--text-secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  border: 2px solid white;
}

.step-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Active Step */
.quote-step.active .step-icon {
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  transform: scale(1.1);
  background: white;
  box-shadow: 0 4px 12px rgba(0, 240, 255, 0.2);
}

.quote-step.active .step-number {
  background: var(--primary-cyan);
  color: var(--universe-dark);
  font-weight: 800;
}

.quote-step.active .step-label {
  color: var(--primary-cyan);
  font-weight: 700;
}

/* Completed Step - Improved Visibility */
.quote-step.completed .step-icon {
  border-color: var(--success-color);
  background: var(--success-color);
  color: white;
  transform: scale(1);
}

.quote-step.completed .step-number {
  background: white;
  color: var(--success-color);
  border-color: var(--success-color);
  font-weight: 800;
}

.quote-step.completed .step-label {
  color: var(--success-color);
  font-weight: 600;
}

/* Upcoming Step */
.quote-step.upcoming .step-icon {
  border-color: var(--border-light);
  background: var(--secondary-bg);
  color: var(--text-muted);
}

.quote-step.upcoming .step-number {
  background: var(--text-muted);
  color: white;
}

.quote-step.upcoming .step-label {
  color: var(--text-muted);
  font-weight: 400;
}

/* ===== PRODUCT REDIRECT SECTION ===== */
.product-redirect-section {
  padding: 4rem 2rem;
  background: var(--secondary-bg);
  text-align: center;
}

.redirect-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.redirect-icon {
  font-size: 3rem;
  color: var(--primary-cyan);
  margin-bottom: 1.5rem;
}

.redirect-content h2 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.redirect-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.redirect-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.redirect-actions .btn {
  padding: 0.75rem 1.5rem;
  min-width: 200px;
}

.redirect-note {
  background: #e3f2fd;
  border: 1px solid #90caf9;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.redirect-note i {
  color: var(--primary-cyan);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.redirect-note p {
  margin: 0;
  color: #1976d2;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== SELECTED PRODUCT BANNER ===== */
.selected-product-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--primary-cyan);
  color: var(--universe-dark);
  padding: 1rem 2rem;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 500px;
  font-weight: 600;
}

.selected-product-banner i {
  font-size: 1.5rem;
}

/* ===== IMPROVED ICON COLORS ===== */
.option-icon.email {
  background: #3b82f6 !important; /* Blue for better visibility */
  color: white !important;
}

.option-icon.form {
  background: var(--primary-cyan) !important;
  color: var(--universe-dark) !important;
}

.email-direct-btn {
  background: #3b82f6 !important;
  color: white !important;
  border: none !important;
}

.email-direct-btn:hover {
  background: #2563eb !important;
  transform: translateY(-2px);
}

/* ===== STEP HEADERS ===== */
.step-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.step-header .back-button {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.form-header .back-button {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .quote-steps {
    flex-direction: column;
    gap: 1.5rem;
  }

  .quote-steps::before {
    display: none;
  }

  .quote-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .step-icon-container {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-label {
    flex: 1;
  }

  .step-header .back-button,
  .form-header .back-button {
    position: relative;
    top: auto;
    transform: none;
    margin-bottom: 1rem;
  }

  .redirect-actions {
    flex-direction: column;
  }

  .redirect-actions .btn {
    width: 100%;
  }
}

/* ===== PRODUCT SELECTION ===== */
.product-selection-section {
  padding: 3rem 2rem;
  background: var(--secondary-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 2rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.product-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.product-option {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--border-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-option:hover {
  transform: translateY(-3px);
  border-color: var(--primary-cyan);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-option.active {
  border-color: var(--primary-cyan);
  background: rgba(0, 240, 255, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.1);
}

.product-option-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: white;
}

.product-option-icon.inventory {
  background: linear-gradient(135deg, #00f0ff, #10b981);
}

.product-option-icon.dashboard {
  background: linear-gradient(135deg, #00f0ff, #f59e0b);
}

.product-option-icon.lims {
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
}

.product-option-icon.consulting {
  background: linear-gradient(135deg, #00f0ff, #3b82f6);
}

.product-option-icon.custom {
  background: linear-gradient(135deg, #00f0ff, #ec4899);
}

.product-option h3 {
  margin: 0.5rem 0;
  color: var(--text-primary);
  font-size: 1.25rem;
}

.product-option p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  min-height: 40px;
}

.product-tags {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.product-tag {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-tag.software {
  background: rgba(0, 240, 255, 0.1);
  color: #00a6b3;
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.product-tag.saas {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.product-tag.service {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.selection-actions {
  text-align: center;
  margin-top: 2rem;
}

/* ===== SELECTED PRODUCT BANNER ===== */
.selected-product-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--primary-cyan);
  color: var(--universe-dark);
  padding: 1rem 2rem;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 500px;
  font-weight: 600;
}

.selected-product-banner i {
  font-size: 1.5rem;
}

/* ===== IMPROVED ICON COLORS ===== */
.option-icon.email {
  background: #3b82f6 !important; /* Blue for better visibility */
  color: white !important;
}

.option-icon.form {
  background: var(--primary-cyan) !important;
  color: var(--universe-dark) !important;
}

.email-direct-btn {
  background: #3b82f6 !important;
  color: white !important;
  border: none !important;
}

.email-direct-btn:hover {
  background: #2563eb !important;
  transform: translateY(-2px);
}

/* ===== STEP HEADERS ===== */
.step-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.step-header .back-button {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.form-header .back-button {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .quote-steps {
    flex-direction: column;
    gap: 1.5rem;
  }

  .quote-steps::before {
    display: none;
  }

  .quote-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .step-icon-container {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-label {
    flex: 1;
  }

  .step-header .back-button,
  .form-header .back-button {
    position: relative;
    top: auto;
    transform: none;
    margin-bottom: 1rem;
  }

  .product-selection-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Form Section */
.contact-form-section {
  background: var(--secondary-bg);
  padding: 4rem 2rem;
  margin: 2rem 0;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
}

.form-title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 700;
}

.form-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Security Alert */
.security-alert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #e3f2fd;
  border: 1px solid #90caf9;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.security-alert i {
  color: var(--primary-cyan);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.security-alert strong {
  color: #1976d2;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.security-alert p {
  color: #1976d2;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Selected Product Display */
.selected-product {
  background: var(--primary-cyan);
  color: var(--universe-dark);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1rem 0 2rem;
  font-weight: 600;
  text-align: center;
  border-left: 4px solid var(--primary-green);
}

.product-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-icon {
  font-size: 2rem;
}

/* Form Structure */
.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title i {
  color: var(--primary-cyan);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.required-field::after {
  content: " *";
  color: var(--danger-color);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--card-bg);
  color: var(--text-primary);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.character-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 0.25rem;
}

/* Quote Features */
.quote-features {
  background: var(--secondary-bg);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.features-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--card-bg);
  border-radius: 8px;
  border-left: 4px solid var(--primary-cyan);
}

.feature-icon {
  color: var(--primary-cyan);
  font-size: 1.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* Guarantee Section */
.guarantee-section {
  background: linear-gradient(
    135deg,
    var(--primary-cyan),
    var(--primary-green)
  );
  color: var(--universe-dark);
  padding: 3rem 2rem;
  border-radius: 16px;
  margin: 3rem 0;
  text-align: center;
}

.guarantee-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.guarantee-item {
  text-align: center;
}

.guarantee-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.guarantee-item strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Action Buttons */
.quote-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.quote-actions .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  min-width: 200px;
}

.btn-primary {
  background: var(--primary-cyan);
  color: var(--universe-dark);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 240, 255, 0.2);
}

.btn-secondary {
  background: var(--text-secondary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--text-primary);
  transform: translateY(-2px);
}

.btn-success {
  background: var(--success-color);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-success:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Form Footer */
.form-footer {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.form-footer p {
  margin: 0.5rem 0;
}

.privacy-link {
  color: var(--primary-cyan);
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Enterprise Contact Section */
.enterprise-contact-section {
  padding: 4rem 2rem;
  background: var(--card-bg);
  margin: 2rem 0;
  border-top: 1px solid var(--border-light);
}

.contact-title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 700;
}

.contact-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-option {
  background: var(--secondary-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-cyan);
}

.option-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.option-icon.form {
  background: var(--primary-cyan);
}

.option-icon.whatsapp {
  background: #25d366;
}

.option-icon.email {
  background: var(--info-color);
}

.option-icon.pdf {
  background: #f44336;
}

.contact-option h3 {
  margin: 0.5rem 0;
  color: var(--text-primary);
  font-size: 1.25rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-option > p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  min-height: 40px;
}

.option-details {
  background: rgba(0, 0, 0, 0.02);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  text-align: left;
  font-size: 0.85rem;
  flex: 1;
}

.option-details p {
  margin: 0.5rem 0;
  color: var(--text-secondary);
  line-height: 1.4;
}

.option-details strong {
  color: var(--text-primary);
}

.contact-option .btn {
  margin-top: auto;
  justify-content: center;
  width: 100%;
}

/* Direct Contact */
.direct-contact {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-light);
}

.direct-contact-title {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 1.5rem;
}

.direct-contact-subtitle {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.support-note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.support-link {
  color: var(--primary-cyan);
  text-decoration: none;
}

.support-link:hover {
  text-decoration: underline;
}

/* Email Template Modal */
.email-template-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.email-template-content {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.email-template-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.email-template-header h3 {
  color: var(--text-primary);
  margin: 0;
  font-size: 1.5rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0.5rem;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-primary);
}

.email-template-body {
  margin: 1.5rem 0;
}

.instructions {
  background: var(--secondary-bg);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.instructions p {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  color: var(--text-primary);
}

.instructions ol {
  margin: 0;
  padding-left: 1.5rem;
}

.instructions li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.email-preview {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-light);
}

.email-preview-header {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
}

.email-preview-header p {
  margin: 0.5rem 0;
  color: var(--text-primary);
}

.email-preview-textarea {
  width: 100%;
  min-height: 200px;
  padding: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  resize: vertical;
  background: white;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.email-template-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.email-template-actions .btn {
  padding: 0.75rem 1.5rem;
  min-width: 180px;
}

/* Notifications */
.enterprise-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 4px solid var(--primary-cyan);
  z-index: 10000;
  animation: slideInRight 0.3s ease;
  max-width: 400px;
}

.enterprise-notification.success {
  border-left-color: var(--success-color);
}

.enterprise-notification.error {
  border-left-color: var(--danger-color);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.enterprise-notification i {
  font-size: 1.2rem;
}

.enterprise-notification.success i {
  color: var(--success-color);
}

.enterprise-notification.error i {
  color: var(--danger-color);
}

/* Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.success-modal-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  margin: 2rem;
  animation: slideUp 0.3s ease;
}

.success-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.success-details {
  text-align: left;
  margin: 2rem 0;
}

.success-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--secondary-bg);
  border-radius: 8px;
}

.success-item i {
  color: var(--primary-cyan);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

/* Improved Button Styles */
.btn-success {
  background: #25d366 !important;
  color: white !important;
  border: none !important;
}

.btn-success:hover {
  background: #1da851 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3) !important;
}

.btn-secondary {
  background: #6b7280 !important;
  color: white !important;
}

.btn-secondary:hover {
  background: #4b5563 !important;
}

/* Contact Option Improvements */
.contact-option .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.back-button {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Contact Divider */
.contact-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 2rem 0;
  color: var(--text-secondary);
}

.contact-divider::before,
.contact-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--border-light);
}

.contact-divider span {
  padding: 0 1rem;
}

/* Animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .quote-hero {
    padding: 6rem 1rem 3rem;
  }

  .quote-hero h1 {
    font-size: 2rem;
  }

  .quote-hero p {
    font-size: 1rem;
  }

  .quote-steps {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .quote-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .step-icon-container {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-label {
    flex: 1;
  }

  .contact-form-section {
    padding: 2rem 1rem;
  }

  .contact-form {
    padding: 2rem;
    margin: 0 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quote-actions {
    flex-direction: column;
  }

  .quote-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-option {
    padding: 1.5rem;
  }

  .contact-option h3 {
    min-height: auto;
    font-size: 1.1rem;
  }

  .contact-option > p {
    min-height: auto;
  }

  .email-template-content {
    padding: 1.5rem;
    margin: 1rem;
  }

  .email-template-actions {
    flex-direction: column;
  }

  .email-template-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .quote-hero {
    padding: 5rem 1rem 2rem;
  }

  .quote-hero h1 {
    font-size: 1.75rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
