.page-contact{
  --pc-bg: #F5F7FA;
  --pc-bg-deep: #0A1B2E;
  --pc-bg-card: #0E2030;
  --pc-border: #D0D8E2;
  --pc-green: #00FF9D;
  --pc-orange: #FF6B35;
  --pc-purple: #7A00FF;
  --pc-text-light: #F5F7FA;
  --pc-text-muted: #D0D8E2;
  --pc-text-dark: #0A1B2E;
  --pc-radius: 20px;
  background: var(--pc-bg);
  color: var(--pc-text-dark);
  overflow-x: hidden;
}

.page-contact .container{
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
  box-sizing: border-box;
}

.page-contact img{
  max-width: 100%;
  height: auto;
  display: block;
}

.page-contact .breadcrumb{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  font-size: .8125rem;
  color: var(--pc-text-muted);
  padding-top: 1.5rem;
}

.page-contact .breadcrumb a{
  color: var(--pc-text-muted);
  text-decoration: none;
  transition: color .2s ease;
}

.page-contact .breadcrumb a:hover{
  color: var(--pc-green);
}

.contact-hero{
  background: var(--pc-bg-deep);
  color: var(--pc-text-light);
  position: relative;
  overflow: hidden;
}

.contact-hero::before{
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,157,.18) 0%, rgba(122,0,255,.08) 48%, transparent 70%);
  pointer-events: none;
}

.contact-hero::after{
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.14) 0%, transparent 68%);
  pointer-events: none;
}

.contact-hero-inner{
  position: relative;
  z-index: 1;
}

.contact-hero-grid{
  display: grid;
  gap: 2rem;
  padding: 2.25rem 0 3rem;
  align-items: center;
}

.contact-kicker{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .8125rem;
  letter-spacing: .08em;
  color: var(--pc-green);
  text-transform: uppercase;
}

.contact-kicker::before{
  content: "";
  width: 28px;
  height: 2px;
  background: var(--pc-green);
  display: inline-block;
}

.contact-hero h1{
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 1rem 0 0;
  color: var(--pc-text-light);
}

.contact-hero-lead{
  font-size: 1rem;
  line-height: 1.75;
  color: var(--pc-text-muted);
  max-width: 36em;
  margin: 1rem 0 1.75rem;
}

.hero-tools{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.contact-hero .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .625rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9375rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.contact-hero .btn-primary{
  background: var(--pc-green);
  color: #04121f;
  border: 1px solid var(--pc-green);
  box-shadow: 0 0 0 rgba(0,255,157,0);
}

.contact-hero .btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,255,157,.24);
}

.contact-hero .btn-ghost{
  background: transparent;
  color: var(--pc-text-light);
  border: 1px solid #324457;
}

.contact-hero .btn-ghost:hover{
  border-color: var(--pc-green);
  color: var(--pc-green);
  transform: translateY(-2px);
}

.contact-hero-media{
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.08);
}

.contact-hero-media img{
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-section{
  position: relative;
}

.contact-layout{
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0 0;
}

.section-heading{
  max-width: 34em;
}

.section-overline{
  display: block;
  font-family: var(--font-mono);
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pc-purple);
  margin-bottom: .5rem;
}

.section-overline-orange{
  color: var(--pc-orange);
}

.section-heading h2,
.form-heading h2{
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 .75rem;
  color: var(--pc-text-dark);
}

.section-heading p,
.form-heading p{
  font-size: .9375rem;
  line-height: 1.7;
  color: #55616f;
  margin: 0;
}

.contact-card-list{
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card{
  display: flex;
  align-items: baseline;
  gap: .875rem;
  background: var(--pc-text-light);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 1.25rem 1rem;
  box-shadow: 0 6px 20px rgba(10,27,46,.04);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
  position: relative;
  flex-wrap: wrap;
}

.contact-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--pc-green), var(--pc-purple));
  opacity: .8;
}

.contact-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(10,27,46,.1);
  border-color: var(--pc-green);
}

.contact-card-icon{
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0,255,157,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.contact-card:nth-child(2) .contact-card-icon{
  background: rgba(255,107,53,.12);
}

.contact-card:nth-child(3) .contact-card-icon{
  background: rgba(122,0,255,.1);
}

.contact-card-icon svg{
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--pc-green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card:nth-child(2) .contact-card-icon svg{
  stroke: var(--pc-orange);
}

.contact-card:nth-child(3) .contact-card-icon svg{
  stroke: var(--pc-purple);
}

.contact-card-body{
  flex: 1 1 220px;
  min-width: 0;
}

.contact-card-body h3{
  font-size: .8125rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6b7684;
  margin: 0 0 .3rem;
}

.contact-card-body .contact-value{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .875rem;
  font-weight: 700;
  color: var(--pc-text-dark);
  text-decoration: none;
  word-break: break-all;
  line-height: 1.45;
}

.contact-card-body .contact-value:hover{
  color: var(--pc-purple);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-card-body p{
  font-size: .8125rem;
  color: #7a8595;
  line-height: 1.55;
  margin: .35rem 0 0;
}

.copy-btn{
  flex: 0 0 auto;
  align-self: center;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--pc-text-dark);
  background: transparent;
  border: 1px solid var(--pc-border);
  border-radius: 999px;
  padding: .375rem .875rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.copy-btn:hover{
  background: var(--pc-green);
  border-color: var(--pc-green);
  color: #04121f;
}

.note-box{
  margin-top: 1.5rem;
  border-left: 3px solid var(--pc-orange);
  background: #fff0e9;
  border-radius: 0 14px 14px 0;
  padding: 1rem 1.25rem;
}

.note-box p{
  margin: 0 0 .5rem;
  font-size: .875rem;
  line-height: 1.65;
  color: #5a463e;
}

.note-box p:last-child{
  margin-bottom: 0;
}

.note-box a{
  color: var(--pc-orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-side{
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.info-card{
  background: var(--pc-bg-card);
  color: var(--pc-text-light);
  border-radius: var(--pc-radius);
  padding: 1.5rem;
  border: 1px solid #24384e;
}

.info-card-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(0,255,157,.12);
  margin-bottom: 1rem;
}

.info-card-icon svg{
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--pc-green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3{
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  margin: 0 0 1rem;
}

.time-list{
  margin: 0;
}

.time-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.time-row dt{
  font-size: .8125rem;
  color: var(--pc-text-muted);
}

.time-row dd{
  font-family: var(--font-mono);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--pc-green);
  margin: 0;
  text-align: right;
}

.time-row:nth-child(3) dd{
  color: var(--pc-orange);
}

.support-tip{
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--pc-text-muted);
  margin: 1rem 0 0;
}

.support-tip a{
  color: var(--pc-green);
  font-weight: 700;
  text-decoration: none;
}

.support-tip a:hover{
  text-decoration: underline;
}

.map-card{
  padding: 0;
  overflow: hidden;
}

.map-media{
  overflow: hidden;
}

.map-media img{
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.map-caption{
  padding: 1.25rem 1.25rem 1.5rem;
}

.map-caption h3{
  font-family: var(--font-heading);
  font-size: .9375rem;
  margin: 0 0 .35rem;
}

.map-caption p{
  font-size: .8125rem;
  color: var(--pc-text-muted);
  line-height: 1.55;
  margin: 0;
}

.contact-form-section{
  margin-top: 3rem;
  background: linear-gradient(160deg, #F5F7FA 0%, #E9EDF3 100%);
  padding: 3rem 0;
}

.form-wrap{
  border-radius: var(--pc-radius);
}

.form-heading{
  max-width: 40em;
  margin-bottom: 1.75rem;
}

.form-heading p{
  color: #55616f;
}

.form-heading a,
.form-privacy a{
  color: var(--pc-purple);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feedback-layout{
  display: grid;
  gap: 1.5rem;
}

.feedback-form-card{
  background: var(--pc-text-light);
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
  padding: 1.5rem;
  box-shadow: 0 14px 40px rgba(10,27,46,.06);
}

.form-row{
  margin-bottom: 1rem;
}

.form-row.two{
  display: grid;
  gap: 1rem;
}

.form-group label{
  display: block;
  font-size: .8125rem;
  font-weight: 700;
  margin-bottom: .375rem;
  color: var(--pc-text-dark);
}

.form-group input,
.form-group select,
.form-group textarea{
  width: 100%;
  box-sizing: border-box;
  padding: .75rem .875rem;
  border: 1px solid var(--pc-border);
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--pc-text-dark);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline: none;
  border-color: var(--pc-purple);
  box-shadow: 0 0 0 3px rgba(122,0,255,.12);
}

.form-group textarea{
  resize: vertical;
  min-height: 120px;
}

.form-privacy{
  font-size: .8125rem;
  color: #7a8595;
  line-height: 1.6;
  margin: .5rem 0 1rem;
}

.btn-block{
  display: flex;
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  background: var(--pc-green);
  color: #04121f;
  border: 1px solid var(--pc-green);
  font-size: .9375rem;
  font-weight: 800;
  font-family: var(--font-body);
  justify-content: center;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-block:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,255,157,.28);
}

.form-hint{
  font-size: .75rem;
  color: #8a94a3;
  text-align: center;
  margin: .75rem 0 0;
}

.feedback-tips{
  display: grid;
  gap: 1rem;
  align-content: start;
}

.tip-item{
  display: flex;
  gap: 1rem;
  background: var(--pc-text-light);
  border-radius: 16px;
  border: 1px solid var(--pc-border);
  padding: 1.125rem 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.tip-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10,27,46,.07);
}

.tip-num{
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--pc-green);
  background: rgba(0,255,157,.1);
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-item:nth-child(2) .tip-num{
  color: var(--pc-orange);
  background: rgba(255,107,53,.1);
}

.tip-item:nth-child(3) .tip-num{
  color: var(--pc-purple);
  background: rgba(122,0,255,.08);
}

.tip-item h3{
  font-size: .9375rem;
  margin: 0 0 .25rem;
}

.tip-item p{
  font-size: .8125rem;
  line-height: 1.6;
  color: #5d6876;
  margin: 0;
}

.tip-item a{
  color: var(--pc-purple);
  font-weight: 700;
  text-decoration: none;
}

.tip-item a:hover{
  text-decoration: underline;
}

.quick-links{
  margin: 3rem 0;
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr;
}

.quick-label{
  font-family: var(--font-mono);
  font-size: .8125rem;
  color: #8a94a3;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}

.quick-link{
  display: block;
  background: var(--pc-text-light);
  border: 1px solid var(--pc-border);
  border-radius: 16px;
  padding: 1rem 1.125rem;
  text-decoration: none;
  color: var(--pc-text-dark);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.quick-link:hover{
  transform: translateY(-3px);
  border-color: var(--pc-green);
  box-shadow: 0 10px 28px rgba(0,255,157,.12);
}

.quick-link span{
  display: block;
  font-weight: 800;
  font-size: .9375rem;
  margin-bottom: .2rem;
}

.quick-link small{
  display: block;
  font-size: .8125rem;
  color: #7a8595;
}

@media (min-width: 640px){
  .contact-hero h1{
    font-size: 2.5rem;
  }

  .contact-card{
    flex-wrap: nowrap;
  }

  .contact-card-wide{
    align-items: baseline;
  }

  .form-row.two{
    grid-template-columns: 1fr 1fr;
  }

  .quick-links{
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-label{
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px){
  .contact-hero-grid{
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 4rem;
    padding: 3.5rem 0 4rem;
  }

  .contact-hero h1{
    font-size: 3rem;
    max-width: 12em;
  }

  .contact-hero-lead{
    font-size: 1.0625rem;
  }

  .contact-layout{
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 4rem;
    padding-top: 4rem;
  }

  .contact-card-list{
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card-wide{
    grid-column: 1 / -1;
    align-items: baseline;
  }

  .contact-side{
    grid-template-columns: 1fr;
  }

  .feedback-layout{
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    gap: 2.5rem;
    align-items: start;
  }

  .feedback-form-card{
    padding: 2rem;
  }

  .contact-form-section{
    padding: 4.5rem 0;
  }

  .quick-links{
    grid-template-columns: auto repeat(3, 1fr);
    align-items: center;
    gap: 1rem;
    margin: 4.5rem 0;
  }

  .quick-label{
    grid-column: auto;
    margin: 0;
    align-self: center;
  }
}

@media (prefers-reduced-motion: reduce){
  .page-contact *,
  .page-contact *::before,
  .page-contact *::after{
    transition: none !important;
    animation: none !important;
  }
}
