/* =========================================
   CONTACT PAGE
   ========================================= */

.ah-contact-hero{
  background: #eef0ea;
  padding: clamp(70px, 8vw, 130px) 0;
  text-align: center;
}

.ah-contact-hero__inner{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.ah-contact-hero__title{
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #111;
}

/* Main section */
.ah-contact{
  padding: 70px 0 90px;
}

.ah-contact__inner{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.ah-contact__notice{
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;

  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.35);
  border-radius: 14px;
  padding: 26px 28px;

  font-size: 16px;
  line-height: 1.7;
  color: rgba(0,0,0,.75);
}

.ah-contact__highlight{
  color: var(--gold);
  font-weight: 900;
}

/* Grid */
.ah-contact__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 70px;
  align-items: center;
}

/* Left form card */
.ah-contact__form{
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

/* Ninja Forms / CF7 inputs (generic styling) */
.ah-contact__form input[type="text"],
.ah-contact__form input[type="email"],
.ah-contact__form input[type="tel"],
.ah-contact__form textarea,
.ah-contact__form select{
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.85);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
}

.ah-contact__form textarea{
  min-height: 140px;
  resize: vertical;
}

.ah-contact__form input[type="submit"],
.ah-contact__form button,
.ah-contact__form .nf-form-content button{
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.ah-contact__form input[type="submit"]:hover,
.ah-contact__form button:hover{
  filter: brightness(1.05);
}

/* Right side brand */
.ah-contact__brand{
  text-align: center;
}

.ah-contact__brand-logo .custom-logo{
  max-height: 160px;
  width: auto;
}

.ah-contact__brand-fallback{
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
}

.ah-contact__meta{
  margin-top: 18px;
}

.ah-contact__address{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,.70);
  margin-bottom: 14px;
}

.ah-contact__links{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ah-contact__link{
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.ah-contact__link:hover{
  text-decoration: underline;
}

.nf-before-form-content, .nf-form-title, .nf-field-label{
  display: none;
}
.ah-contact__form input[type="submit"]{
  width: 100%;
}
.ah-contact__form .field-wrap input[type=submit]{
  width: 100%;
}
/* Responsive */
@media (max-width: 980px){
  .ah-contact{
    padding: 55px 0 70px;
  }
  .ah-contact__grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .ah-contact__form{
    padding: 18px;
  }
  .ah-contact__brand-logo .custom-logo{
    max-height: 130px;
  }
}
