@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body {
  overflow-x: hidden;
}

p {
  font-family: var(--inter);
  font-size: 24px;
}

#submitBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

:root {
  --ink: #1d1d1f;
  --muted: #6b6b6f;
  --line: #2d2d2f;
  --pill: #e8e8ea;
  --dash: #bfbfc4;
  --radius: 22px;
  --maxw: 1120px;
}

.contact {
  padding: 120px 20px;
  color: var(--ink);
}
.contact__wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}

/* top-right action pills */
.contact__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  background: var(--ink);
  color: #fff;
  transition: all 0.5s ease;
}

.pill:hover {
  background: var(--ink);
  color: #fff;
}
.pill--solid {
  background: #fff;
  transition: all 0.5s ease;
  color: #000;
}
.pill--solid {
  box-shadow: inset 0 0 0 2px #00000008;
}

/* grid */
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  margin-top: 8px;
  padding-top: 40px;
}
@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }
  .contact__actions {
    position: static;
  }
}

/* left column */
.contact__title {
  font-size: 50px;
  font-weight: 400;
  font-family: var(--waterfall);
  text-shadow: 1px 2px 0 #0000004f;
  margin-top: 20px;
}
.contact__sub {
  color: var(--ink);
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 24px 0;
}

.contact__form {
  display: grid;
  gap: 30px;
  max-width: 520px;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--line);
  padding: 14px 0 10px 0;
  font-size: 20px;
  font-weight: 600;
  outline: none;
  color: var(--ink);
  border-radius: 0;
}

textarea {
  resize: vertical;
  min-height: 90px;
  max-height: 90px;
}

.contact__form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--line) 50%),
    linear-gradient(135deg, var(--line) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position: calc(100% - 18px) 18px, calc(100% - 12px) 18px, 0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  padding-right: 32px;
  color: #919191;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: #8c8c90;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-bottom-color: #000;
}

/* dashed buttons */
.contact__btns {
  display: flex;
  gap: 22px;
  margin-top: 8px;
}
.btn-dashed {
  cursor: pointer;
  padding: 12px 26px;
  border-radius: 18px;
  border: 2px dashed var(--dash);
  background: #fff;
  font-weight: 600;
  transition: 0.5s all;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.02) inset, 0 2px 6px rgba(0, 0, 0, 0.06);
}
.btn-ghost {
  background: #f9f9fb;
}

.btn-dashed:hover {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1) inset, 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #000;
  color: #fff;
}

/* right image */
.contact__image {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}
.contact__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}



/* Remove Bootstrap default background & borders */
.faq-accordion .accordion-button {
  background: none !important;
  border: none !important;
  box-shadow: none;
  font-weight: 600;
  font-size: 20px;
  padding: 15px 0;
}

/* Add bottom border between items */
.faq-accordion .accordion-item {
  border: none;
  border-top: 1px solid #636363;
  border-radius: 0 !important;
}

/* Remove arrow, add custom + and – */
.faq-accordion .accordion-button::after {
  content: "+";
  font-size: 20px;
  font-weight: bold;
  color: #000;
  transform: none !important;
  background-image: none !important;
}

.accordion-button:not(.collapsed){
  color: #000 !important;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "–";
}

/* Style body text */
.faq-accordion .accordion-body {
  font-size: 16px;
  color: #333;
  padding: 10px 0 15px;
}



@media (max-width: 600px) {
  .contact__image img {
    height: 450px !important;
  }

  .contact__title {
    font-size: 35px;
  }

  .contact {
    padding: 90px 20px;
  }

  .contact__sub {
    font-size: 20px;
  }
}
