

/* ========= Altavant Contact Page (Scaffold) ========= */
.av-contact-page * { box-sizing: border-box; }

.av-contact-page .avc-container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ===== HERO (matches PNG) ===== */
.av-contact-page .avc-hero{
  background: #0f0f10;
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

/* prevent theme from adding weird margins inside hero */
.av-contact-page .avc-hero h1,
.av-contact-page .avc-hero h2,
.av-contact-page .avc-hero p,
.av-contact-page .avc-hero ul{
  margin-top: 0;
}

/* subtle glow behind */
.av-contact-page .avc-hero::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 55%, rgba(255,255,255,0.10), transparent 55%);
  pointer-events:none;
}

.av-contact-page .avc-hero-grid{
  display:grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 34px;
  align-items:start;
  position: relative;
  z-index: 1;
}

/* LEFT */
.av-contact-page .avc-hero-title{
  margin: 0 0 14px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.av-contact-page .avc-hero-subtitle{
  margin: 0;
  max-width: 66ch;
  font-size: 16px;
  opacity: 0.78;
  line-height: 1.65;
}

/* TAGS */
.av-contact-page .avc-hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 22px;
}

.av-contact-page .avc-tag{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.95;
}

/* RIGHT card */
.av-contact-page .avc-card{
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.av-contact-page .avc-card-title{
  margin: 0 0 14px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.av-contact-page .avc-card-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 12px;
  line-height:1.55;
  font-size: 15px;
  opacity: 0.95;
}

.av-contact-page .avc-check{
  display:inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  align-items:center;
  justify-content:center;
  margin-right: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 800;
}

.av-contact-page .avc-card-divider{
  height:1px;
  background: rgba(255,255,255,0.12);
  margin: 18px 0 14px;
}

.av-contact-page .avc-card-tip{
  margin:0;
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.6;
}

/* ===== HOVER EFFECT: HERO TAGS (SECTION 1) ===== */

.av-contact-page .avc-tag{
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* Hover state */
.av-contact-page .avc-tag:hover{
  background: #C0000B;          /* Altavant red */
  border-color: #C0000B;
  color: #ffffff;
  transform: translateY(-1px);  /* lighter lift than Section 3 */
  box-shadow: 0 6px 16px rgba(192, 0, 11, 0.22);
}

/* Mobile */
@media (max-width: 860px){
  .av-contact-page .avc-hero{ padding: 46px 0; }
  .av-contact-page .avc-hero-grid{ grid-template-columns: 1fr; gap: 18px; }
  .av-contact-page .avc-card{ padding: 18px; }
}

/* ===== SECTION 2: FIT / NOT FIT ===== */
.av-contact-page .avc-fit{
  padding: 54px 0;
  background: #ffffff;
}

/* ===== SECTION 2: CENTERED HEADING ===== */
.av-contact-page .avc-fit-head{
  margin-bottom: 26px;
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.av-contact-page .avc-fit-title{
  margin: 0 0 12px;
  font-size: 28px;              /* bigger */
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.av-contact-page .avc-fit-subtitle{
  margin: 0;
  font-size: 17px;              /* slightly bigger */
  opacity: 0.8;
  line-height: 1.65;
}


/* Two cards */
.av-contact-page .avc-fit-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.av-contact-page .avc-fit-card{
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.av-contact-page .avc-fit-card-muted{
  background: #fafafa;
}

.av-contact-page .avc-fit-card-title{
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

/* List */
.av-contact-page .avc-fit-list{
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
  opacity: 0.92;
}

/* Mobile */
@media (max-width: 860px){
  .av-contact-page .avc-fit{
    padding: 40px 0;
  }
  .av-contact-page .avc-fit-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION 3: AUTHORITY REASSURANCE ===== */
.av-contact-page .avc-reassurance{
  background: #ffffff;
  padding: 56px 0;
}

.av-contact-page .avc-reassurance-inner{
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 26px;
  background: #fbfbfb;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.av-contact-page .avc-reassurance-title{
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.av-contact-page .avc-reassurance-subtitle{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.78;
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
}

/* Pills */
.av-contact-page .avc-reassurance-pills{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.av-contact-page .avc-pill{
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.92;
}

/* ===== HOVER EFFECT: AUTHORITY PILLS ===== */

/* Base transition */
.av-contact-page .avc-pill{
  transition: 
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: default;
}

/* Hover state */
.av-contact-page .avc-pill:hover{
  background: #C0000B;          /* Altavant red */
  border-color: #C0000B;
  color: #ffffff;               /* White text for contrast */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192, 0, 11, 0.25);
}


/* Mobile tweaks */
@media (max-width: 860px){
  .av-contact-page .avc-reassurance{
    padding: 40px 0;
  }
  .av-contact-page .avc-reassurance-inner{
    padding: 18px;
  }
  .av-contact-page .avc-reassurance-title{
    font-size: 22px;
  }
}

/* ===== SECTION 4: FORM PANEL ===== */
.av-contact-page .avc-form{
  padding: 70px 0;
  background: #ffffff;
}

.av-contact-page .avc-form-head{
  text-align: center;
  max-width: 80ch;
  margin: 0 auto 26px;
}

.av-contact-page .avc-form-title{
  margin: 0 0 12px;
  font-size: 30px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.av-contact-page .avc-form-subtitle{
  margin: 0;
  font-size: 17px;
  opacity: 0.8;
  line-height: 1.65;
}

/* Panel layout */
.av-contact-page .avc-form-panel{
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 18px;
  align-items: start;
}

/* Left form area */
.av-contact-page .avc-form-left{
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.07);
}

.av-contact-page .avc-form-note{
  background: #fbfbfb;
  border: 1px solid #efefef;
  border-radius: 14px;
  padding: 14px 14px;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.9;
  margin-bottom: 14px;
}

/* Right “what happens next” */
.av-contact-page .avc-next-card{
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: #fafafa;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
  position: sticky;
  top: 110px; /* adjust if header is sticky */
}

.av-contact-page .avc-next-title{
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.av-contact-page .avc-next-steps{
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
  opacity: 0.9;
}

.av-contact-page .avc-next-divider{
  height: 1px;
  background: #e6e6e6;
  margin: 16px 0 14px;
}

.av-contact-page .avc-next-tip{
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.75;
}

/* Mobile */
@media (max-width: 860px){
  .av-contact-page .avc-form{
    padding: 44px 0;
  }
  .av-contact-page .avc-form-title{
    font-size: 24px;
  }
  .av-contact-page .avc-form-panel{
    grid-template-columns: 1fr;
  }
  .av-contact-page .avc-next-card{
    position: static;
    top: auto;
  }
}

/* ===== MANUAL FORM ===== */

/* Fields */






.av-contact-page input,
.av-contact-page select,
.av-contact-page textarea{
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
}

/* Focus */
.av-contact-page input:focus,
.av-contact-page select:focus,
.av-contact-page textarea:focus{
  border-color: #C0000B;
  box-shadow: 0 0 0 4px rgba(192,0,11,0.12);
  outline: none;
}

/* Intent cards */




.av-contact-page .avc-intent-card input{
  display: none;
}

.av-contact-page .avc-intent-card:hover{
  border-color: #C0000B;
}

.av-contact-page .avc-intent-card input:checked + span{
  color: #C0000B;
  font-weight: 600;
}

/* Checkbox */


/* Submit */


.av-contact-page .avc-submit:hover{
  background: #A00009;
}

/* Honeypot hidden */


/* ===== FORM SUCCESS ===== */
.av-contact-page .avc-form-success{
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 14px;
}
/* ===== SECTION 5: DIRECT CONTACT ===== */
.av-contact-page .avc-direct{
  padding: 70px 0;
  background: #ffffff;
}

.av-contact-page .avc-direct-head{
  text-align: center;
  max-width: 80ch;
  margin: 0 auto 26px;
}

.av-contact-page .avc-direct-title{
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.av-contact-page .avc-direct-subtitle{
  margin: 0;
  font-size: 17px;
  opacity: 0.8;
  line-height: 1.65;
}

.av-contact-page .avc-direct-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.av-contact-page .avc-direct-card{
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  padding: 18px;
  background: #fbfbfb;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.av-contact-page .avc-direct-card:hover{
  transform: translateY(-2px);
  border-color: #C0000B;
  box-shadow: 0 18px 44px rgba(192, 0, 11, 0.10);
  background: #ffffff;
}

.av-contact-page .avc-direct-card-static:hover{
  transform: none;
  border-color: #e8e8e8;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
  background: #fbfbfb;
}

.av-contact-page .avc-direct-label{
  font-size: 12px;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.av-contact-page .avc-direct-value{
  margin-top: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.av-contact-page .avc-direct-meta{
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.72;
  line-height: 1.6;
}

@media (max-width: 860px){
  .av-contact-page .avc-direct{
    padding: 44px 0;
  }
  .av-contact-page .avc-direct-grid{
    grid-template-columns: 1fr;
  }
}
/* ===== SECTION 6: MICRO FAQ ===== */
.av-contact-page .avc-faq{
  padding: 70px 0;
  background: #ffffff;
}

.av-contact-page .avc-faq-head{
  text-align: center;
  max-width: 80ch;
  margin: 0 auto 26px;
}

.av-contact-page .avc-faq-title{
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.av-contact-page .avc-faq-subtitle{
  margin: 0;
  font-size: 17px;
  opacity: 0.8;
  line-height: 1.65;
}

.av-contact-page .avc-faq-list{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.av-contact-page .avc-faq-item{
  border: 1px solid #e8e8e8;
  background: #fbfbfb;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.av-contact-page .avc-faq-q{
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
}

.av-contact-page .avc-faq-q::-webkit-details-marker{
  display:none;
}

/* Plus icon */
.av-contact-page .avc-faq-q::after{
  content:"+";
  position:absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  opacity: 0.7;
}

.av-contact-page .avc-faq-item[open] .avc-faq-q::after{
  content:"–";
  opacity: 0.9;
}

/* Answer */
.av-contact-page .avc-faq-a{
  padding: 0 18px 16px 18px;
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.85;
}

/* Hover accent */
.av-contact-page .avc-faq-item:hover{
  border-color: #C0000B;
  box-shadow: 0 16px 40px rgba(192, 0, 11, 0.08);
}

/* Mobile */
@media (max-width: 860px){
  .av-contact-page .avc-faq{
    padding: 44px 0;
  }
}
/* ===== SECTION 7: FINAL TRUST CTA ===== */
.av-contact-page .avc-final{
  padding: 80px 0;
  background: #0f0f10;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.av-contact-page .avc-final::before{
  content:"";
  position:absolute;
  inset:-50%;
  background: radial-gradient(circle at 60% 40%, rgba(192,0,11,0.18), transparent 55%);
  pointer-events:none;
}

.av-contact-page .avc-final-inner{
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  padding: 34px 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}

.av-contact-page .avc-final-title{
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.av-contact-page .avc-final-subtitle{
  margin: 0 auto;
  max-width: 78ch;
  font-size: 16px;
  opacity: 0.82;
  line-height: 1.7;
}

/* Trust points */
.av-contact-page .avc-final-points{
  margin: 18px auto 0;
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.av-contact-page .avc-final-point{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  opacity: 0.9;
}

/* Actions */
.av-contact-page .avc-final-actions{
  margin-top: 18px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.av-contact-page .avc-final-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #C0000B;
  color: #ffffff;
  border: 1px solid #C0000B;
  border-radius: 14px;
  padding: 13px 18px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(192,0,11,0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background-color 0.18s ease;
}

.av-contact-page .avc-final-btn:hover{
  background: #A00009;
  border-color: #A00009;
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(192,0,11,0.30);
  opacity: 0.98;
}

.av-contact-page .avc-final-note{
  font-size: 13px;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 860px){
  .av-contact-page .avc-final{
    padding: 50px 0;
  }
  .av-contact-page .avc-final-title{
    font-size: 24px;
  }
  .av-contact-page .avc-final-inner{
    padding: 22px 16px;
  }
}
.av-contact-page .avc-form-error{
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 14px;
}
/* ===== CF7 SELECT CLOSED VALUE VISIBILITY FIX ===== */
.av-contact-page .avc-form-embed select.wpcf7-select {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;

  height: 44px !important;
  min-height: 44px !important;
  line-height: 44px !important;

  padding: 0 42px 0 14px !important;

  color: #1F1F1F !important;
  -webkit-text-fill-color: #1F1F1F !important;

  background-color: #ffffff !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 12px !important;

  font-size: 14px !important;
  font-weight: 500 !important;
  text-indent: 0 !important;
  text-shadow: none !important;

  appearance: menulist !important;
  -webkit-appearance: menulist !important;
  -moz-appearance: menulist !important;
}

.av-contact-page .avc-form-embed select.wpcf7-select option {
  color: #1F1F1F !important;
  background: #ffffff !important;
}