@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter.ttf") format("truetype");
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: #1f2937;
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  margin: 0 auto;
  padding: 0 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.contact-hero {
  padding: clamp(2.8rem, 6vw, 5rem) 0;
  background: linear-gradient(110deg, #3b82f6 0%, #2563eb 25%, #3730a3 55%, #5b21b6 80%, #4c1d95 100%);
  color: #ffffff;
}

.contact-hero-inner h1 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: clamp(2.25rem, 5vw, 3.45rem);
  line-height: 1.15;
}
.contact-hero-inner p {
  margin: 1rem 0 0;
  color: #dbeafe;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.5;
}

.contact-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.contact-info h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #111827;
}

.contact-info-desc {
  margin: 0.6rem 0 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-info-list {
  margin-top: 1.6rem;
  display: grid;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.contact-info-item h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}
.contact-info-item p,
.contact-info-item a {
  margin: 0.15rem 0 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.45;
  transition: color 0.2s ease;
}
.contact-info-item a:hover {
  color: #2563eb;
}

.contact-info-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2f7cf6, #8224e3);
  box-shadow: 0 6px 14px rgba(47, 124, 246, 0.3);
  flex: none;
}
.contact-info-icon svg {
  width: 1rem;
  height: 1rem;
}

.contact-form-wrap h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #111827;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
}
.form-group input,
.form-group textarea {
  padding: 0.65rem 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.95rem;
  color: #111827;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: #9ca3af;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group--full {
  margin-bottom: 1rem;
}

.field-error {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #ef4444;
  min-height: 0;
  line-height: 1.3;
}

.required {
  color: #ef4444;
}

.form-note {
  margin: 0 0 1.2rem;
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.55;
}
.form-note strong {
  color: #374151;
}

.form-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  background: linear-gradient(100deg, #2563eb, #7c3aed, #9333ea);
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.form-submit-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.45;
  min-height: 1.3rem;
}

.form-status--success {
  color: #16a34a;
}

.form-status--error {
  color: #ef4444;
}

.faq-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: #f9fafb;
}

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.faq-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #111827;
}

.faq-subtitle {
  margin: 0.6rem 0 0;
  color: #64748b;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.5;
}

.faq-list {
  margin-top: clamp(1.8rem, 3vw, 2.5rem);
  text-align: left;
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.2rem 0;
}
.faq-item:first-of-type {
  border-top: 1px solid #e5e7eb;
}
.faq-item summary {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: #9ca3af;
  flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  margin: 0.8rem 0 0;
  color: #4b5563;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 0.8rem;
  }
  .contact-hero {
    padding: 2.4rem 0;
  }
  .contact-hero-inner h1 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }
  .contact-hero-inner p {
    margin-top: 0.75rem;
    font-size: 1.02rem;
  }
  .contact-hero-inner p br {
    display: none;
  }
  .contact-section {
    padding: 2.2rem 0;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-info-icon {
    width: 2rem;
    height: 2rem;
  }
  .faq-section {
    padding: 2.5rem 0;
  }
  .faq-item {
    padding: 1rem 0;
  }
  .faq-item summary {
    font-size: 1rem;
  }
  .faq-item p {
    font-size: 0.95rem;
  }
}
@media (max-width: 479px) {
  .contact-hero-inner h1 {
    font-size: 1.75rem;
  }
  .contact-form-wrap h2 {
    font-size: 1.35rem;
  }
}/*# sourceMappingURL=contact.css.map */