/* =========================================================================
   ACCESSLEVELUP — Contact page template styles
   File: /css/contact.css   (theme folder ke andar "css" folder banayein)
   functions.php se sirf Contact template par enqueue hoti hai.
   ========================================================================= */

.alu-contact {
  --c-navy:   #16313f;
  --c-navy2:  #1e3c4d;
  --c-teal:   #149a8e;
  --c-teal600:#0f8579;
  --c-line:   #d8e8e5;
  --c-ink:    #173140;
  --c-body:   #4a5b62;
  --c-paper:  #ffffff;
  --c-soft:   #f1f7f6;
  --c-radius: 14px;
  --c-radius-sm: 10px;
  --c-shadow: 0 18px 40px -18px rgba(20,49,63,.26);
  --c-shadow-sm: 0 8px 22px -12px rgba(20,49,63,.20);
  --c-head: 'Poppins', system-ui, sans-serif;
  --c-bodyf:'Inter', system-ui, sans-serif;

  font-family: var(--c-bodyf);
  color: var(--c-body);
  line-height: 1.6;
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
}
.alu-contact * { box-sizing: border-box; }
.alu-contact h1, .alu-contact h2, .alu-contact h3, .alu-contact h4 {
  font-family: var(--c-head); color: var(--c-ink); line-height: 1.15; margin: 0; font-weight: 700;
}
.alu-contact p { margin: 0; }
.alu-contact a { text-decoration: none; color: inherit; }

.alu-cc-wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.alu-cc-eyebrow {
  font-family: var(--c-head); font-weight: 600; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--c-teal); margin-bottom: 10px;
}

/* ---- Hero ---- */
.alu-cc-hero { background: linear-gradient(180deg,#f8fcfb 0%, #e9f4f2 100%); padding: 70px 0 64px; text-align: center; }
.alu-cc-hero h1 { font-size: clamp(32px, 4vw, 50px); font-weight: 800; letter-spacing: -.02em; color: var(--c-navy); }
.alu-cc-hero h1 span { color: var(--c-teal); }
.alu-cc-hero p { font-size: 17px; max-width: 560px; margin: 16px auto 0; }

/* ---- Main: info + form ---- */
.alu-cc-main { padding: 76px 0; }
.alu-cc-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 48px; align-items: start; }

/* info column */
.alu-cc-info h2 { font-size: 26px; margin-bottom: 8px; }
.alu-cc-info > p { font-size: 15.5px; margin-bottom: 26px; max-width: 380px; }
.alu-cc-list { display: grid; gap: 16px; }
.alu-cc-item {
  display: flex; gap: 15px; align-items: flex-start;
  background: var(--c-soft); border: 1px solid var(--c-line); border-radius: var(--c-radius);
  padding: 18px 20px;
}
.alu-cc-ic {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: #e2efed; color: var(--c-teal); display: grid; place-items: center;
}
.alu-cc-ic svg { width: 22px; height: 22px; }
.alu-cc-item .lbl { font-family: var(--c-head); font-weight: 600; font-size: 13px; color: var(--c-teal); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.alu-cc-item .val { font-family: var(--c-head); font-weight: 600; font-size: 16px; color: var(--c-ink); }
.alu-cc-item .sub { font-size: 13.5px; color: var(--c-body); margin-top: 2px; }

.alu-cc-social-h { font-family: var(--c-head); font-weight: 700; font-size: 14px; color: var(--c-ink); margin: 30px 0 12px; }
.alu-cc-social { display: flex; gap: 10px; }
.alu-cc-social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--c-line); color: var(--c-navy);
  transition: background .15s ease, color .15s ease, transform .12s ease;
}
.alu-cc-social a:hover { background: var(--c-teal); color: #fff; border-color: var(--c-teal); transform: translateY(-2px); }
.alu-cc-social svg { width: 18px; height: 18px; }

/* form card */
.alu-cc-form-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: 18px;
  padding: 36px 36px 32px; box-shadow: var(--c-shadow);
}
.alu-cc-form-card h2 { font-size: 23px; margin-bottom: 6px; }
.alu-cc-form-card .hint { font-size: 14.5px; margin-bottom: 26px; }
.alu-cc-form { display: grid; gap: 18px; }
.alu-cc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.alu-cc-field { display: grid; gap: 7px; }
.alu-cc-field label { font-family: var(--c-head); font-weight: 600; font-size: 13.5px; color: var(--c-ink); }
.alu-cc-field label .req { color: var(--c-teal); }
.alu-cc-field input,
.alu-cc-field select,
.alu-cc-field textarea {
  width: 100%; font-family: var(--c-bodyf); font-size: 15px; color: var(--c-ink);
  background: #fbfdfd; border: 1.5px solid var(--c-line); border-radius: var(--c-radius-sm);
  padding: 13px 15px; outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.alu-cc-field textarea { min-height: 130px; resize: vertical; }
.alu-cc-field input:focus,
.alu-cc-field select:focus,
.alu-cc-field textarea:focus { border-color: var(--c-teal); box-shadow: 0 0 0 3px rgba(20,154,142,.14); }
.alu-cc-field input::placeholder,
.alu-cc-field textarea::placeholder { color: #9bb0b3; }

.alu-cc-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--c-head); font-weight: 700; font-size: 15.5px;
  background: var(--c-teal); color: #fff; border: none; cursor: pointer;
  padding: 15px 28px; border-radius: 12px; box-shadow: var(--c-shadow-sm);
  transition: background .15s ease, transform .12s ease; width: fit-content;
}
.alu-cc-submit:hover { background: var(--c-teal600); transform: translateY(-2px); }
.alu-cc-submit svg { width: 18px; height: 18px; }
.alu-cc-privacy { font-size: 12.5px; color: var(--c-body); margin-top: 4px; }
.alu-cc-privacy a { color: var(--c-teal); font-weight: 600; }

/* ---- Form success / error messages ---- */
.alu-cc-success,
.alu-cc-error {
  padding: 16px 20px;
  border-radius: var(--c-radius-sm);
  font-family: var(--c-head);
  font-size: 14.5px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.alu-cc-success {
  background: #e6f9f2;
  color: #0f7a54;
  border: 1px solid #a3e4c8;
}
.alu-cc-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}
.alu-cc-error a {
  color: #b91c1c;
  font-weight: 600;
  text-decoration: underline;
}

/* ---- "What happens next" strip ---- */
.alu-cc-steps { background: var(--c-soft); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); padding: 64px 0; }
.alu-cc-steps-head { text-align: center; margin-bottom: 40px; }
.alu-cc-steps-head h2 { font-size: clamp(26px,3vw,34px); }
.alu-cc-steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.alu-cc-step {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--c-radius);
  padding: 28px 26px; box-shadow: var(--c-shadow-sm);
}
.alu-cc-step .num {
  width: 40px; height: 40px; border-radius: 11px; background: var(--c-navy); color: #fff;
  font-family: var(--c-head); font-weight: 800; display: grid; place-items: center; margin-bottom: 16px;
}
.alu-cc-step h3 { font-size: 17px; margin-bottom: 8px; }
.alu-cc-step p { font-size: 14px; }

/* ---- CTA band ---- */
.alu-cc-cta { background: linear-gradient(160deg,#1e3c4d,#13837a); color: #fff; padding: 64px 0; }
.alu-cc-cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.alu-cc-cta h2 { color: #fff; font-size: clamp(24px,3vw,32px); max-width: 620px; }
.alu-cc-cta p { color: rgba(255,255,255,.85); margin-top: 10px; max-width: 560px; font-size: 15.5px; }
.alu-cc-cta-btn {
  display: inline-flex; align-items: center; gap: 9px; flex: none;
  font-family: var(--c-head); font-weight: 700; font-size: 15.5px;
  background: #fff; color: var(--c-teal); padding: 15px 30px; border-radius: 12px;
  transition: transform .12s ease;
}
.alu-cc-cta-btn:hover { transform: translateY(-2px); }
.alu-cc-cta-btn svg { width: 18px; height: 18px; }

/* ---- Responsive ---- */
@media (max-width: 920px) {
  .alu-cc-grid { grid-template-columns: 1fr; gap: 36px; }
  .alu-cc-steps-grid { grid-template-columns: 1fr; }
  .alu-cc-cta-grid { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .alu-cc-row { grid-template-columns: 1fr; }
  .alu-cc-form-card { padding: 26px 22px; }
}
