/* [project]/src/components/ContactForm.module.css [app-client] (css) */
.ContactForm-module__j1WgZG__form {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: #fff;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  display: flex;
}

.ContactForm-module__j1WgZG__title {
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.ContactForm-module__j1WgZG__row {
  grid-template-columns: 1fr;
  gap: 1rem;
  display: grid;
}

@media (min-width: 640px) {
  .ContactForm-module__j1WgZG__row {
    grid-template-columns: 1fr 1fr;
  }
}

.ContactForm-module__j1WgZG__field {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.ContactForm-module__j1WgZG__field label {
  color: var(--secondary);
  font-size: .875rem;
  font-weight: 500;
}

.ContactForm-module__j1WgZG__field input, .ContactForm-module__j1WgZG__field textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s;
}

.ContactForm-module__j1WgZG__field input:focus, .ContactForm-module__j1WgZG__field textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px #2563eb1a;
}

.ContactForm-module__j1WgZG__inputError {
  border-color: var(--error) !important;
}

.ContactForm-module__j1WgZG__errorText {
  color: var(--error);
  font-size: .75rem;
}

.ContactForm-module__j1WgZG__successMessage {
  color: #166534;
  border-radius: var(--radius);
  text-align: center;
  background-color: #dcfce7;
  padding: 1rem;
  font-weight: 600;
}

.ContactForm-module__j1WgZG__fileInputWrapper {
  width: 100%;
  position: relative;
}

.ContactForm-module__j1WgZG__hiddenInput {
  opacity: 0;
  width: .1px;
  height: .1px;
  position: absolute;
}

.ContactForm-module__j1WgZG__fileLabel {
  background-color: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  width: 100%;
  color: var(--text-muted);
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  font-size: .95rem;
  transition: all .2s;
  display: flex;
}

.ContactForm-module__j1WgZG__fileLabel:hover {
  border-color: var(--accent);
  color: var(--accent);
  background-color: #fff0f0;
}

.ContactForm-module__j1WgZG__uploadIcon {
  font-size: 1.25rem;
}

/* [project]/src/app/services/[slug]/page.module.css [app-client] (css) */
.page-module__kSaxVa__hero {
  text-align: center;
  color: #fff;
  justify-content: center;
  align-items: center;
  height: 400px;
  margin-bottom: 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.page-module__kSaxVa__heroImage {
  object-fit: cover;
  z-index: -1;
}

.page-module__kSaxVa__heroOverlay {
  z-index: 0;
  background: linear-gradient(#000000b3, #00000080);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page-module__kSaxVa__heroContent {
  z-index: 10;
  position: relative;
}

.page-module__kSaxVa__heroTitle {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
}

.page-module__kSaxVa__heroSubtitle {
  opacity: .9;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.25rem;
}

.page-module__kSaxVa__contentContainer {
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  display: grid;
}

@media (min-width: 1024px) {
  .page-module__kSaxVa__contentContainer {
    grid-template-columns: 2fr 1fr;
  }
}

.page-module__kSaxVa__section {
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.page-module__kSaxVa__section:last-child {
  border-bottom: none;
}

.page-module__kSaxVa__description {
  color: var(--text-main);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.page-module__kSaxVa__featuresList {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  display: grid;
}

.page-module__kSaxVa__featureItem {
  align-items: center;
  font-weight: 500;
  display: flex;
}

.page-module__kSaxVa__checkIcon {
  color: var(--success);
  margin-right: .5rem;
  font-weight: 800;
}

.page-module__kSaxVa__benefitsGrid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  display: grid;
}

.page-module__kSaxVa__benefitCard {
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
}

.page-module__kSaxVa__benefitCard h4 {
  color: var(--primary);
  margin-bottom: .5rem;
}

.page-module__kSaxVa__benefitCard p {
  color: var(--text-muted);
  font-size: .95rem;
}

.page-module__kSaxVa__processList {
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
}

.page-module__kSaxVa__processRow {
  align-items: flex-start;
  gap: 1.5rem;
  display: flex;
}

.page-module__kSaxVa__stepNumber {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-weight: 700;
  display: flex;
}

.page-module__kSaxVa__sidebar {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}

.page-module__kSaxVa__sidebarCard {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: sticky;
  top: 6rem;
}

.page-module__kSaxVa__sidebarNav {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.5rem;
}

.page-module__kSaxVa__relatedList {
  margin-top: 1rem;
  list-style: none;
}

.page-module__kSaxVa__relatedList li {
  margin-bottom: .75rem;
}

.page-module__kSaxVa__relatedList a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.page-module__kSaxVa__relatedList a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.page-module__kSaxVa__faqList {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.page-module__kSaxVa__faqItem {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.5rem;
}

.page-module__kSaxVa__faqQuestion {
  color: var(--primary);
  margin-bottom: .5rem;
  font-weight: 600;
}

.page-module__kSaxVa__faqAnswer {
  color: var(--text-muted);
}

/*# sourceMappingURL=src_c484913e._.css.map*/