/* Intake Form Page Styles */
.intake-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0d2847 50%, #038dc1 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.intake-hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  background: #fff;
}

.intake-hero-shapes .shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.intake-hero-shapes .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
}

.intake-hero-shapes .shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.intake-hero-content h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.intake-hero-content h1 span {
  color: #038dc1;
}

.intake-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.intake-hero-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.intake-hero-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.intake-hero-contact a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.intake-hero-contact a i {
  font-size: 14px;
  color: #7dd3fc;
}

.intake-hero-contact .divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
  user-select: none;
}

/* Intake Form Section */
.intake-form-section {
  padding: 80px 0 100px;
  background: #f5f8fb;
}

.intake-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 50px 60px;
}

.intake-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.intake-form-header .badge {
  display: inline-block;
  background: rgba(3, 141, 193, 0.1);
  color: #038dc1;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.intake-form-header h2 {
  font-size: 32px;
  color: #0d1f3c;
  font-weight: 700;
  margin-bottom: 10px;
}

.intake-form-header p {
  color: #666;
  font-size: 16px;
}

/* Section Titles */
.intake-section-title {
  background: linear-gradient(135deg, #0d2847, #038dc1);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  margin: 35px 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.intake-section-title:first-of-type {
  margin-top: 0;
}

.intake-section-title i {
  font-size: 20px;
}

/* Form Styles */
.intake-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.intake-form .form-row .form-group {
  flex: 1;
}

.intake-form .form-group {
  margin-bottom: 20px;
}

.intake-form .form-group.flex-2 {
  flex: 2;
}

.intake-form .form-group.flex-1 {
  flex: 1;
}

.intake-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0d1f3c;
  margin-bottom: 8px;
}

.intake-form label i {
  color: #038dc1;
  margin-right: 6px;
  width: 16px;
}

.intake-form .input-wrapper {
  position: relative;
}

.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="tel"],
.intake-form input[type="number"],
.intake-form input[type="date"],
.intake-form select,
.intake-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8edf2;
  border-radius: 10px;
  font-size: 15px;
  color: #333;
  background: #f8fafc;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  border-color: #038dc1;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(3, 141, 193, 0.1);
}

.intake-form textarea {
  min-height: 100px;
  resize: vertical;
}

.intake-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Checkbox Group */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #f8fafc;
  border: 2px solid #e8edf2;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-item:hover {
  border-color: #038dc1;
  background: rgba(3, 141, 193, 0.05);
}

/* Override global style.css hidden checkboxes/radios */
.intake-form input[type="checkbox"],
.intake-form input[type="radio"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  border: 2px solid #c0c8d2 !important;
  border-radius: 4px !important;
  background: #fff !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  position: relative !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.intake-form input[type="radio"] {
  border-radius: 50% !important;
}

.intake-form input[type="checkbox"]:checked,
.intake-form input[type="radio"]:checked {
  background: #038dc1 !important;
  border-color: #038dc1 !important;
}

.intake-form input[type="checkbox"]:checked::after {
  content: '' !important;
  position: absolute !important;
  left: 5px !important;
  top: 1px !important;
  width: 6px !important;
  height: 11px !important;
  border: solid #fff !important;
  border-width: 0 2.5px 2.5px 0 !important;
  transform: rotate(45deg) !important;
}

.intake-form input[type="radio"]:checked::after {
  content: '' !important;
  position: absolute !important;
  left: 4px !important;
  top: 4px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #fff !important;
}

/* Kill the global pseudo-element replacements */
.intake-form input[type="checkbox"] ~ label::before,
.intake-form input[type="radio"] ~ label::before {
  display: none !important;
  content: none !important;
}

.intake-form input[type="checkbox"] ~ label,
.intake-form input[type="radio"] ~ label {
  padding-left: 0 !important;
  position: static !important;
}

.checkbox-item label {
  margin-bottom: 0;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-other-input {
  margin-top: 12px;
}

/* Services Requested Styles */
.service-request-item {
  background: #f8fafc;
  border: 2px solid #e8edf2;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.service-request-item:hover {
  border-color: #038dc1;
  background: rgba(3, 141, 193, 0.03);
}

.service-request-item input[type="checkbox"] {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  border-radius: 5px !important;
}

.service-request-item .service-label {
  font-weight: 600;
  color: #0d1f3c;
  font-size: 15px;
  min-width: 220px;
}

.service-request-item .service-fields {
  display: flex;
  gap: 15px;
  flex: 1;
  flex-wrap: wrap;
}

.service-request-item .service-fields .field-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-request-item .service-fields label {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 0;
  white-space: nowrap;
}

.service-request-item .service-fields input {
  width: 180px;
  padding: 8px 12px;
  font-size: 14px;
}

/* Consent Section */
.consent-section {
  background: #f0f7fb;
  border: 2px solid #d0e8f2;
  border-radius: 12px;
  padding: 25px;
  margin-top: 10px;
}

.consent-section p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.consent-check input[type="checkbox"] {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  border-color: #038dc1 !important;
  border-radius: 5px !important;
  margin-top: 2px !important;
}

.consent-check label {
  font-size: 14px;
  font-weight: 600;
  color: #0d1f3c;
  margin-bottom: 0;
}

/* Signature Row */
.signature-row {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  align-items: flex-end;
}

.signature-row .form-group {
  flex: 1;
}

/* Review Modal */
.review-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.review-modal-overlay.active {
  display: flex;
}

.review-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 750px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.review-modal-header {
  padding: 25px 30px;
  border-bottom: 2px solid #f0f3f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.review-modal-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0d1f3c;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.review-modal-header h3 i {
  color: #038dc1;
  font-size: 24px;
}

.review-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f0f3f7;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.review-modal-close:hover {
  background: #e74c3c;
  color: #fff;
}

.review-modal-body {
  padding: 25px 30px;
  overflow-y: auto;
  flex: 1;
}

.review-section {
  margin-bottom: 25px;
}

.review-section:last-child {
  margin-bottom: 0;
}

.review-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #038dc1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8f4f8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-section-title i {
  font-size: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.review-item {
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #038dc1;
}

.review-item.full-width {
  grid-column: 1 / -1;
}

.review-item-label {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.review-item-value {
  font-size: 15px;
  color: #0d1f3c;
  font-weight: 500;
  word-break: break-word;
}

.review-item-value.empty {
  color: #bbb;
  font-style: italic;
  font-weight: 400;
}

.review-modal-footer {
  padding: 20px 30px;
  border-top: 2px solid #f0f3f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.review-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #e8edf2;
  background: #fff;
  color: #555;
}

.review-edit-btn:hover {
  border-color: #038dc1;
  color: #038dc1;
  background: rgba(3, 141, 193, 0.05);
}

.review-confirm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 35px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: linear-gradient(135deg, #038dc1, #026a92);
  color: #fff;
  box-shadow: 0 6px 20px rgba(3, 141, 193, 0.3);
}

.review-confirm-btn:hover {
  background: linear-gradient(135deg, #026a92, #01506e);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(3, 141, 193, 0.4);
}

@media (max-width: 768px) {
  .review-modal {
    max-height: 90vh;
    border-radius: 15px;
  }

  .review-modal-header,
  .review-modal-body,
  .review-modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-modal-footer {
    flex-direction: column;
  }

  .review-edit-btn,
  .review-confirm-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Submit Button */
.intake-submit-wrapper {
  text-align: center;
  margin-top: 40px;
}

.intake-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #038dc1, #026a92);
  color: #fff;
  border: none;
  padding: 16px 50px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(3, 141, 193, 0.3);
}

.intake-submit-btn:hover {
  background: linear-gradient(135deg, #026a92, #01506e);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(3, 141, 193, 0.4);
}

.intake-submit-btn i {
  font-size: 18px;
}

/* Required asterisk */
.required {
  color: #e74c3c;
  margin-left: 2px;
}

/* Info note */
.form-note {
  background: rgba(3, 141, 193, 0.08);
  border-left: 4px solid #038dc1;
  padding: 15px 20px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 25px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.form-note i {
  color: #038dc1;
  margin-right: 8px;
}

/* Custom Phone Input */
.phone-wrapper {
  display: flex;
  width: 100%;
}

.phone-country-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: #f0f3f7;
  border: 2px solid #e8edf2;
  border-right: none;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  min-height: 48px;
}

.phone-country-btn:hover {
  background: #e4eaf0;
}

.phone-country-btn .country-flag {
  font-size: 22px;
  line-height: 1;
}

.phone-country-btn .country-code {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.phone-country-btn .country-arrow {
  font-size: 10px;
  color: #888;
  margin-left: 2px;
}

.phone-country-btn::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #d0d5dd;
}

.phone-wrapper .phone-number-input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid #e8edf2;
  border-left: none;
  border-radius: 0 10px 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  background: #f8fafc;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
  letter-spacing: 0.5px;
  min-width: 0;
}

.phone-wrapper .phone-number-input:focus {
  border-color: #038dc1;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(3, 141, 193, 0.1);
}

.phone-wrapper:focus-within .phone-country-btn {
  border-color: #038dc1;
}

.phone-wrapper .phone-number-input::placeholder {
  color: #aab;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Country Dropdown */
.phone-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 320px;
  max-height: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #e8edf2;
  z-index: 9999;
  overflow: hidden;
  flex-direction: column;
}

.phone-dropdown.open {
  display: flex;
}

.phone-dropdown-search {
  padding: 12px 14px;
  border: none;
  border-bottom: 2px solid #f0f3f7;
  font-size: 14px;
  background: #fafbfc;
  outline: none;
  width: 100%;
  font-family: inherit;
}

.phone-dropdown-search:focus {
  border-bottom-color: #038dc1;
  background: #fff;
}

.phone-dropdown-list {
  overflow-y: auto;
  flex: 1;
  max-height: 230px;
}

.phone-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.phone-dropdown-item:hover {
  background: rgba(3, 141, 193, 0.08);
}

.phone-dropdown-item.selected {
  background: rgba(3, 141, 193, 0.12);
}

.phone-dropdown-item .dd-flag {
  font-size: 20px;
  width: 28px;
  text-align: center;
}

.phone-dropdown-item .dd-name {
  font-size: 14px;
  color: #333;
  flex: 1;
}

.phone-dropdown-item .dd-code {
  font-size: 13px;
  color: #888;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .intake-form-wrapper {
    padding: 30px 25px;
    margin: 0 15px;
  }

  .intake-hero-content h1 {
    font-size: 32px;
  }

  .intake-hero-contact {
    flex-direction: column;
    gap: 10px;
  }

  .intake-hero-contact .divider {
    display: none;
  }

  .intake-hero-contact a {
    font-size: 14px;
  }

  .phone-wrapper .phone-number-input {
    font-size: 15px;
    padding: 12px 14px;
  }

  .phone-country-btn .country-code {
    font-size: 14px;
  }

  .phone-dropdown {
    width: 280px;
  }

  .intake-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .service-request-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-request-item .service-fields {
    flex-direction: column;
    width: 100%;
  }

  .service-request-item .service-fields input {
    width: 100%;
  }

  .signature-row {
    flex-direction: column;
    gap: 0;
  }

  .intake-form-header h2 {
    font-size: 24px;
  }
}

/* Success Confirmation Screen */
.success-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.success-overlay.active {
  display: flex;
}

.success-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  padding: 50px 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

@keyframes successPop {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #038dc1, #27ae60, #038dc1);
}

.success-icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  animation: successBounce 0.6s ease 0.3s both;
  box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
  color: #fff;
  font-size: 40px;
}

@keyframes successBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.success-icon-wrap i {
  font-size: 48px;
  color: #fff;
}

.success-modal h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0d1f3c;
  margin-bottom: 12px;
}

.success-modal p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.success-modal .success-ref {
  display: inline-block;
  background: #f0f7fb;
  border: 1px solid #d0e8f2;
  border-radius: 8px;
  padding: 10px 20px;
  margin: 15px 0 25px;
  font-size: 14px;
  color: #0d2847;
}

.success-modal .success-ref strong {
  color: #038dc1;
}

.success-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.success-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: linear-gradient(135deg, #038dc1, #026a92);
  color: #fff;
  box-shadow: 0 6px 20px rgba(3, 141, 193, 0.3);
}

.success-pdf-btn:hover {
  background: linear-gradient(135deg, #026a92, #01506e);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(3, 141, 193, 0.4);
}

.success-pdf-btn i {
  font-size: 18px;
}

.success-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #e8edf2;
  background: #fff;
  color: #555;
  text-decoration: none;
}

.success-home-btn:hover {
  border-color: #038dc1;
  color: #038dc1;
  background: rgba(3, 141, 193, 0.05);
}

.success-contact-note {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #f0f3f7;
  font-size: 13px;
  color: #999;
}

.success-contact-note a {
  color: #038dc1;
  text-decoration: none;
  font-weight: 600;
}

.success-contact-note a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .success-modal {
    padding: 35px 25px;
  }

  .success-modal h2 {
    font-size: 22px;
  }

  .success-actions {
    flex-direction: column;
  }

  .success-pdf-btn,
  .success-home-btn {
    width: 100%;
    justify-content: center;
  }
}