/*====================================
  Global Styles & Design Tokens
====================================*/
:root {
  --navy: #0A192F;
  --charcoal: #1E293B;
  --bronze: #D4AF37;
  --offwhite: #F8FAFC;
  --font-stack: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-width: 1200px;
  --gap: 1.5rem;
}

/* Base */
html {
  scroll-behavior: smooth;
  font-size: 100%; /* 16px */
}
body {
  margin: 0;
  font-family: var(--font-stack);
  line-height: 1.6;
  color: var(--offwhite);
  background-color: var(--navy);
}

/* Utility */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gap);
}
a {
  color: var(--bronze);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/*====================================
  Header / Navigation
====================================*/
.navbar {
  background-color: var(--navy);
  color: var(--offwhite);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo {
  width: 60px;
  height: auto;
  margin-right: 1rem;
  vertical-align: middle;
}
.nav-title {
  font-weight: 700;
  font-size: 1.25rem;
}
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-menu li a {
  color: var(--offwhite);
  font-weight: 500;
  padding: 0.5rem 0;
}
.nav-menu li a:hover {
  color: var(--bronze);
}
.nav-toggle {
  background: none;
  border: none;
  color: var(--offwhite);
  font-size: 1.5rem;
  cursor: pointer;
  display: none; /* shown on mobile */
}

/* CTA Buttons (Desktop) */
.cta-btn,
.cta-primary,
.cta-secondary,
.cta-sub {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cta-btn {
  background-color: var(--bronze);
  color: var(--navy);
  display: inline-block;
  text-decoration: none;
}
.cta-primary {
  background-color: var(--bronze);
  color: var(--navy);
}
.cta-secondary {
  background-color: transparent;
  color: var(--bronze);
  border: 2px solid var(--bronze);
  margin-left: 0.75rem;
}
.cta-sub {
  background-color: var(--bronze);
  color: var(--navy);
}

/* Mobile responsive menu */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--charcoal);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .nav-menu.open {
    max-height: 24rem; /* enough for all items */
  }
  .nav-menu li {
    padding: var(--gap);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-toggle {
    display: block;
  }
}

/*====================================
  Hero Section
====================================*/
.hero {
  background: linear-gradient(135deg, #0A192F 0%, #1E293B 100%) center/cover no-repeat;
  color: var(--offwhite);
  text-align: center;
  padding: 6rem var(--gap) 4rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.subhead {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.cta-primary,
.cta-secondary {
  margin-top: 0.75rem;
}

.hero-logo {
  width: 80%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem auto;
}

@media (max-width: 768px) {
  .hero-logo {
    width: 220px;
    max-width: 85%;
  }
}

/*====================================
  Services Section
====================================*/
.services {
  padding: 4rem var(--gap);
  background-color: var(--offwhite);
  color: var(--navy);
}
.services h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.service-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.service-card {
  background-color: var(--navy);
  color: var(--offwhite);
  padding: var(--gap);
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.service-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}
.service-card h3 {
  font-size: 1.125rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

/* Service Card Badge & CTA */
.service-badge {
  display: inline-block;
  background: var(--bronze);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}
.service-card .cta-btn {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: var(--bronze);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.service-card .cta-btn:hover {
  opacity: 0.9;
  background-color: #c4a030;
  text-decoration: none;
}

/*====================================
  Subcontractor Section
====================================*/
.subcontractor-section {
  background-color: var(--charcoal);
  color: var(--offwhite);
  padding: 4rem var(--gap);
  text-align: center;
}
.subcontractor-section h2 {
  margin-bottom: 1rem;
}
.subcontractor-section p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.cta-sub {
  margin-top: 0.5rem;
}

/*====================================
  About Section
====================================*/
.about {
  padding: 4rem var(--gap);
  text-align: center;
  background-color: var(--offwhite);
  color: var(--navy);
}

/*====================================
  Homeowner Contract Download Section
====================================*/
.contract-download-section {
  padding: 4rem var(--gap);
  text-align: center;
  background-color: var(--offwhite);
  color: var(--navy);
  border-top: 1px solid rgba(10, 25, 47, 0.1);
}
.contract-download-section h2 {
  margin-bottom: 1rem;
}
.contract-download-section p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/*====================================
  Contact Section
====================================*/
.contact {
  padding: 4rem var(--gap);
  background-color: var(--navy);
  color: var(--offwhite);
}
.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.radio-selector {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.radio-selector label {
  cursor: pointer;
  font-weight: 500;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--charcoal);
  border-radius: 4px;
  background-color: var(--offwhite);
  color: var(--navy);
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
}
.success {
  margin-top: 1rem;
  font-weight: 600;
}

/* Form message styling */
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  font-weight: 500;
}
.form-message.success {
  background-color: rgba(34, 197, 94, 0.15);
  border: 1px solid #22c55e;
  color: #22c55e;
}
.form-message.error {
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #ef4444;
}
.form-message.error a {
  color: var(--bronze);
  text-decoration: underline;
}
.form-message.error a:hover {
  opacity: 0.8;
}

/*====================================
  Footer
====================================*/
footer {
  background-color: var(--navy);
  color: var(--offwhite);
  text-align: center;
  padding: 2rem var(--gap);
  font-size: 0.9rem;
}
footer p {
  margin-bottom: 0.5rem;
}
.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: var(--gap);
  margin: 0.5rem 0;
}
.social-links a {
  color: var(--bronze);
}
.social-links a:hover {
  opacity: 0.8;
}

/*====================================
  Miscellaneous
====================================*/
button:hover {
  opacity: 0.9;
}

/*====================================
  Modal Styles
====================================*/
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(4px);
  display: none; /* Hidden by default - JS controls visibility */
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: var(--gap);
  overflow-y: auto;
  pointer-events: auto;
  animation: fadeIn 0.2s ease;
}
.modal-overlay.open,
.modal-overlay[style*="display: block"] {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-container {
  background: var(--charcoal);
  color: var(--offwhite);
  border-radius: 8px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: slideUp 0.3s ease;
  position: relative;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.agreement-modal .modal-container {
  max-width: 700px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 0;
  background: var(--charcoal);
  border-radius: 8px 8px 0 0;
  z-index: 1;
}
.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--bronze);
}
.modal-close {
  background: none;
  border: none;
  color: var(--offwhite);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.modal-close:hover {
  opacity: 1;
  color: var(--bronze);
}

.modal-form {
  padding: 1.5rem;
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
  padding-bottom: 0;
}
.form-section legend {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bronze);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bronze);
  display: inline-block;
}
.section-hint {
  font-size: 0.875rem;
  color: rgba(248, 250, 252, 0.6);
  margin: -0.5rem 0 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--offwhite);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--navy);
  border-radius: 4px;
  background-color: var(--navy);
  color: var(--offwhite);
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(248, 250, 252, 0.4);
}
.form-group small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.5);
}
.required {
  color: var(--bronze);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.checklist-item {
  background: var(--navy);
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.radio-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--offwhite);
  margin-bottom: 0.5rem;
}
.radio-options {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.radio-options label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 400;
  cursor: pointer;
  font-size: 0.9rem;
}
.radio-options input[type="radio"] {
  accent-color: var(--bronze);
  width: auto;
  margin: 0;
}
.conditional-field {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.conditional-field[hidden] {
  display: none;
}

.agreement-box {
  background: var(--navy);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 1rem;
}
.agreement-box p {
  margin: 0 0 1rem;
  color: rgba(248, 250, 252, 0.9);
}
.agreement-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.agreement-acceptance .checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}
.agreement-acceptance input[type="checkbox"] {
  width: auto;
  accent-color: var(--bronze);
  margin-top: 0.125rem;
  flex-shrink: 0;
}
.checkmark {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--bronze);
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.agreement-acceptance input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--bronze);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  margin-top: 0.5rem;
}
.modal-actions .cta-secondary,
.modal-actions .cta-primary {
  padding: 0.75rem 1.5rem;
}

.agreement-content {
  padding: 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}
.agreement-clause {
  margin-bottom: 1.5rem;
}
.agreement-clause h3 {
  color: var(--bronze);
  font-size: 1rem;
  margin: 0 0 0.5rem;
}
.agreement-clause p {
  margin: 0 0 0.5rem;
  color: rgba(248, 250, 252, 0.9);
  line-height: 1.6;
}
.agreement-clause ul {
  margin: 0;
  padding-left: 1.25rem;
}
.agreement-clause li {
  margin-bottom: 0.375rem;
  color: rgba(248, 250, 252, 0.85);
  line-height: 1.5;
}
.agreement-clause code {
  background: var(--navy);
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-size: 0.875rem;
  color: var(--bronze);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .modal-container {
    max-height: 95vh;
    border-radius: 0;
  }
  .modal-header {
    border-radius: 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .radio-options {
    flex-direction: column;
    gap: 0.5rem;
  }
  .modal-actions {
    flex-direction: column-reverse;
  }
  .modal-actions button {
    width: 100%;
  }
}

/*====================================
  Document Checklist Styles (Subcontractor Form)
====================================*/
.document-guidance {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.85);
  margin: -0.5rem 0 1.25rem;
  line-height: 1.6;
}
.document-guidance strong {
  color: var(--bronze);
}

.document-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}
.document-item {
  display: flex;
  gap: 1rem;
  background: var(--navy);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  align-items: flex-start;
}
.document-item.required {
  border-color: rgba(212, 175, 55, 0.4);
}
.doc-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.doc-details {
  flex: 1;
  min-width: 0;
}
.doc-details strong {
  display: block;
  font-size: 0.95rem;
  color: var(--offwhite);
  margin-bottom: 0.25rem;
}
.doc-req {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bronze);
  background: rgba(212, 175, 55, 0.15);
  padding: 0.125rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.doc-detail {
  margin: 0;
  font-size: 0.825rem;
  color: rgba(248, 250, 252, 0.7);
  line-height: 1.5;
}
.doc-detail strong {
  color: var(--bronze);
  font-weight: 700;
}

.submit-notice {
  background: rgba(212, 175, 55, 0.12);
  border: 2px solid var(--bronze);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
}
.submit-notice strong {
  color: var(--bronze);
}
.submit-notice p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--offwhite);
  line-height: 1.5;
}

/* Mobile adjustments for submit notice */
@media (max-width: 480px) {
  .submit-notice {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
  .submit-notice p {
    font-size: 0.875rem;
    line-height: 1.55;
  }
}

/*====================================
  Pre-Claim Estimate Modal Styles
====================================*/
.pre-claim-modal .modal-container {
  max-width: 900px;
}

.pre-claim-content {
  padding: 1.5rem;
}

.pre-claim-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.pre-claim-section:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
  padding-bottom: 0;
}
.pre-claim-section h3 {
  color: var(--bronze);
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bronze);
  display: inline-block;
}

/* Header Section */
.header-section .offer-header h3 {
  font-size: 1.5rem;
  color: var(--offwhite);
  margin-bottom: 0.5rem;
  border-bottom: none;
  padding-bottom: 0;
  display: block;
}
.header-section .subtitle {
  color: rgba(248, 250, 252, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.availability-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--bronze);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--bronze);
  font-weight: 600;
  font-size: 0.9rem;
}
.notice-icon {
  font-size: 1.1rem;
}

/* What We Inspect */
.inspection-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.inspection-category {
  background: var(--navy);
  padding: 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.inspection-category h4 {
  color: var(--bronze);
  font-size: 1rem;
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.inspection-category ul {
  margin: 0;
  padding-left: 1.25rem;
}
.inspection-category li {
  color: rgba(248, 250, 252, 0.85);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Process Steps */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.process-steps li {
  display: flex;
  gap: 1rem;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bronze);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.step-content h4 {
  color: var(--offwhite);
  font-size: 1rem;
  margin: 0 0 0.375rem;
}
.step-content p {
  color: rgba(248, 250, 252, 0.8);
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Compliance Section */
.compliance-section .disclosure-box {
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.compliance-section .disclosure-box:last-child {
  margin-bottom: 0;
}
.compliance-section .disclosure-box h4 {
  color: var(--bronze);
  font-size: 1rem;
  margin: 0 0 0.75rem;
}
.compliance-section .disclosure-box p {
  color: rgba(248, 250, 252, 0.85);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}
.compliance-section .disclosure-box strong {
  color: var(--offwhite);
}

/* Request Section */
.request-section .section-lead {
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.95rem;
  margin: -0.75rem 0 1.5rem;
  line-height: 1.6;
}

#preClaimForm .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
#preClaimForm .form-group {
  margin-bottom: 1.25rem;
}
#preClaimForm .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--offwhite);
}
#preClaimForm .form-group input,
#preClaimForm .form-group select,
#preClaimForm .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--navy);
  border-radius: 4px;
  background-color: var(--navy);
  color: var(--offwhite);
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#preClaimForm .form-group input:focus,
#preClaimForm .form-group select:focus,
#preClaimForm .form-group textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}
#preClaimForm .form-group input::placeholder,
#preClaimForm .form-group textarea::placeholder {
  color: rgba(248, 250, 252, 0.4);
}
#preClaimForm .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  margin-top: 0.5rem;
}
#preClaimForm .modal-actions button {
  padding: 0.75rem 1.5rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .pre-claim-section h3 {
    font-size: 1.1rem;
  }
  .header-section .offer-header h3 {
    font-size: 1.25rem;
  }
  .process-steps li {
    flex-direction: column;
    gap: 0.5rem;
  }
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .inspection-categories {
    grid-template-columns: 1fr;
  }
}