/* assets/css/pages/contact.css
   Contact page - professional layout
*/

.gs-container{
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.gs-ct{
  padding: 110px 0 80px;
  position: relative;
}

/* Reveal */
.gs-reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}
.gs-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.gs-ct__hero{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.gs-ct__heroCopy{
  display: grid;
  position: relative;
}

.gs-ct__heroCopy::before{
  content: "";
  position: absolute;
  top: 8px;
  left: -18px;
  width: min(520px, 90%);
  height: 120px;
  background: radial-gradient(circle at 20% 50%, rgba(209,138,61,.22), transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(79,125,255,.18), transparent 65%);
  filter: blur(10px);
  opacity: .85;
  pointer-events: none;
  z-index: 0;
}

.gs-ct__heroCopy::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, rgba(209,138,61,.7), rgba(79,125,255,.35), transparent);
  opacity: .9;
}

.gs-ct__heroCopy > *{ position: relative; z-index: 1; }

.gs-ct__pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  font-family: var(--body);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .92;
  width: fit-content;
  margin-bottom: 12px;
}
.gs-ct__pillDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(209,138,61,.95);
  box-shadow: 0 0 18px rgba(209,138,61,.35);
}

.gs-ct__title{
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.gs-ct__type{
  display: inline-block;
  min-width: 10ch;
  background: linear-gradient(100deg, rgba(246,198,118,1), rgba(125,150,255,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  padding-bottom: .08em;
}
.gs-ct__type::after{
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 6px;
  background: rgba(246,198,118,.9);
  animation: gs-ct-caret 1s steps(2, end) infinite;
  transform: translateY(2px);
}
@keyframes gs-ct-caret{
  0%, 49%{ opacity: 1; }
  50%, 100%{ opacity: 0; }
}

.gs-ct__sub{
  margin: 0 0 16px;
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.75;
  opacity: .9;
  max-width: 70ch;
}

.gs-ct__heroActions{
  margin-top: 6px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gs-ct__heroNote{
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: .02em;
  opacity: .75;
}

.gs-ct__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.gs-ct__btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.gs-ct__btn--primary{
  background: rgba(209,138,61,.18);
  border-color: rgba(209,138,61,.35);
}
.gs-ct__btn--primary:hover{
  background: rgba(209,138,61,.22);
  border-color: rgba(209,138,61,.45);
}


/* Main layout */
.gs-ct__main{
  margin-top: 28px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
}

.gs-ct__formWrap{
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.10);
}

.gs-ct__side{
  display: grid;
  gap: 18px;
}

.gs-ct__card{
  padding: 0 0 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.gs-ct__side > .gs-ct__card:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}

.gs-ct__detail{
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.gs-ct__detail:first-of-type{ border-top: 0; padding-top: 0; }

.gs-ct__detailIcon{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.18);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(244,246,250,.9);
  text-transform: uppercase;
}

.gs-ct__detailBody{
  display: grid;
  gap: 6px;
}

.gs-ct__detailLabel{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
  font-family: var(--body);
}

.gs-ct__detailValue{
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -0.01em;
  color: inherit;
  text-decoration: none;
}
.gs-ct__detailValue:hover{
  text-decoration: underline;
}

.gs-ct__detail:hover .gs-ct__detailIcon{
  background: rgba(255,255,255,.1);
  border-color: rgba(209,138,61,.45);
}

.gs-ct__cardTitle{
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.gs-ct__list{
  margin: 0;
  padding-left: 18px;
  font-family: var(--body);
  line-height: 1.7;
  opacity: .88;
}

/* Form */
.gs-ct__formCard{
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.gs-ct__formHead{
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.gs-ct__formTitle{
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.gs-ct__formSub{
  margin: 0;
  font-family: var(--body);
  line-height: 1.7;
  opacity: .85;
}

.gs-ct__form{
  display: grid;
  gap: 12px;
}

.gs-ct__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gs-ct__field{
  display: grid;
  gap: 6px;
}

.gs-ct__label{
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(244,246,250,.7);
}

.gs-ct__input{
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(244,246,250,.92);
  font-family: var(--body);
  outline: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.gs-ct__input::placeholder{ color: rgba(244,246,250,.45); }
.gs-ct__input:focus{
  border-color: rgba(209,138,61,.45);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 4px rgba(209,138,61,.12);
}

.gs-ct__selectWrap{
  position: relative;
}

.gs-ct__selectButton{
  width: 100%;
  text-align: left;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(244,246,250,.92);
  font-family: var(--body);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.gs-ct__selectButton:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}

.gs-ct__selectButton:focus{
  outline: none;
  border-color: rgba(209,138,61,.6);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 4px rgba(209,138,61,.18);
}

.gs-ct__selectText{
  opacity: .9;
}

.gs-ct__selectIcon{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  position: relative;
}
.gs-ct__selectIcon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(244,246,250,.85);
  border-bottom: 2px solid rgba(244,246,250,.85);
  transform: translate(-50%, -60%) rotate(45deg);
}

.gs-ct__selectMenu{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  border-radius: 14px;
  background: rgba(10,12,18,.92);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  padding: 6px;
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 10;
}

.gs-ct__selectWrap.is-open .gs-ct__selectMenu{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.gs-ct__selectOption{
  border-radius: 10px;
  padding: 9px 10px;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  color: rgba(244,246,250,.9);
  font-family: var(--body);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.gs-ct__selectOption:hover,
.gs-ct__selectOption.is-active{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.gs-ct__selectOption.is-selected{
  background: rgba(209,138,61,.18);
  border-color: rgba(209,138,61,.35);
}

.gs-ct__fieldError{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,154,154,.95);
}

.gs-ct__textarea{
  min-height: 140px;
  resize: vertical;
}

.gs-ct__formActions{
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.gs-ct__submit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(209,138,61,.45);
  background: rgba(209,138,61,.2);
  color: rgba(244,246,250,.92);
  font-weight: 900;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.gs-ct__submit:hover{
  transform: translateY(-1px);
  background: rgba(209,138,61,.24);
  border-color: rgba(209,138,61,.55);
}
.gs-ct__submit:disabled{
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.gs-ct__spinner{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: rgba(255,255,255,.95);
  display: none;
  animation: gs-ct-spin .8s linear infinite;
}
.gs-ct__submit.is-loading .gs-ct__spinner{ display: inline-block; }

.gs-ct__fineprint{
  margin: 0;
  font-family: var(--body);
  font-size: 12px;
  color: rgba(244,246,250,.6);
}

.gs-ct__status{
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
  font-size: 13px;
  color: rgba(244,246,250,.7);
}
.gs-ct__status.is-show{
  opacity: 1;
  transform: translateY(0);
}
.gs-ct__status.is-ok{ color: rgba(90,214,204,.95); }
.gs-ct__status.is-err{ color: rgba(255,154,154,.95); }

.gs-ct__hp{ display: none !important; }

@keyframes gs-ct-spin{ to{ transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 980px){
  .gs-ct__hero{ grid-template-columns: 1fr; }
  .gs-ct__main{ grid-template-columns: 1fr; }
  .gs-ct__row{ grid-template-columns: 1fr; }
  .gs-ct__heroCopy::before{ left: -8px; }
  .gs-ct__heroCopy::after{ left: 0; }
  .gs-ct__formWrap{ padding-left: 0; border-left: 0; }
}
@media (max-width: 640px){
  .gs-ct{ padding-top: 96px; }
  .gs-ct__formCard{ padding: 16px; }
}
