*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-primary: #1a56db;
  --blue-dark:    #1035a0;
  --blue-light:   #3b82f6;
  --blue-pale:    #eff6ff;
  --blue-border:  #bfdbfe;
  --bg-page:      #edf2fb;
  --bg-white:     #ffffff;
  --text-dark:    #0f172a;
  --text-mid:     #334155;
  --text-muted:   #64748b;
  --green:        #22c55e;
}

/* ── HERO ── */
.hero-new {
  background: linear-gradient(145deg, #d6e8fb 0%, #e8f2fd 55%, #f0f6ff 100%);
  padding: clamp(52px,8vw,80px) clamp(20px,5vw,40px) clamp(48px,7vw,68px);
  text-align: center; position: relative; overflow: hidden;
  border-radius: 0 0 40px 40px;
  margin-top: -80px; /* Offset for layout if needed, but safer as is */
}
.hero-new::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(26,86,219,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}
.hero-new::after {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(26,86,219,0.13) 0%, transparent 65%);
  top: -140px; right: -80px; pointer-events: none;
}
.hero-inner-new { position: relative; z-index: 2; }

.hero-badge-new {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.85); border: 1px solid var(--blue-border);
  border-radius: 100px; padding: 5px 16px;
  font-size: 11px; font-weight: 700; color: var(--blue-primary);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px;
}
.badge-dot-new { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); animation: blink-new 2s ease-in-out infinite; }
@keyframes blink-new { 0%,100%{opacity:1}50%{opacity:0.35} }

.hero-new h1 { font-size: clamp(2rem,4.5vw,3.4rem); font-weight: 800; color: var(--blue-primary); letter-spacing: -0.03em; margin-bottom: 14px; }

/* Profile intro strip */
.hero-intro-new {
  display: inline-flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,0.82); border: 1px solid var(--blue-border);
  border-radius: 20px; padding: 16px 28px;
  backdrop-filter: blur(8px); text-align: left; margin-bottom: 28px;
  max-width: 580px; width: 100%;
}
.avatar-new {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.intro-text-new { flex: 1; min-width: 0; }
.intro-name-new { font-size: 1rem; font-weight: 800; color: var(--text-dark); }
.intro-role-new { font-size: 0.82rem; color: var(--blue-primary); font-weight: 600; margin-top: 2px; }
.intro-desc-new { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; margin-top: 6px; }

.hero-chips-new { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.chip-new {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.88); border: 1px solid var(--blue-border);
  border-radius: 100px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--text-mid);
}
.chip-new svg { width: 12px; height: 12px; stroke: var(--blue-primary); fill: none; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── PAGE ── */
.contact-container-new { max-width: 1060px; margin: 0 auto; padding: clamp(32px,5vw,52px) clamp(16px,4vw,24px) clamp(52px,7vw,72px); }

/* ── ABOUT STRIP ── */
.about-strip-new {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  margin-bottom: 28px; animation: fadeUp-new 0.4s 0.08s ease both;
}
.about-box-new {
  background: var(--bg-white); border: 1px solid #e2eaf6;
  border-radius: 16px; padding: 20px 18px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.about-box-new:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(26,86,219,0.1); }
.ab-icon-new { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ab-icon-new svg { width: 18px; height: 18px; stroke: var(--blue-primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ab-title-new { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.ab-desc-new  { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ── MAIN GRID ── */
.contact-grid-new {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}

/* ── LEFT ── */
.left-col-new { display: flex; flex-direction: column; gap: 16px; }

.card-base-new {
  background: var(--bg-white); border: 1px solid #e2eaf6;
  border-radius: 18px; padding: 22px 20px;
  animation: fadeUp-new 0.4s ease both;
}
.response-bg-new { background: linear-gradient(135deg, var(--blue-pale), #e8f2ff); border-color: var(--blue-border); }

.card-title-new {
  font-size: 0.9rem; font-weight: 800; color: var(--blue-primary);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.card-title-new svg { width: 15px; height: 15px; stroke: var(--blue-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.contact-item-new { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid #f0f4fb; }
.contact-item-new:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item-new:first-of-type { padding-top: 0; }
.c-icon-new { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon-new svg { width: 15px; height: 15px; stroke: var(--blue-primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.c-label-new { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.c-value-new { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.c-value-new a { color: var(--blue-primary); text-decoration: none; }
.c-value-new a:hover { text-decoration: underline; }
.avail-dot-new { display: inline-block; width: 6px; height: 6px; background: var(--green); border-radius: 50%; margin-right: 5px; box-shadow: 0 0 0 2px rgba(34,197,94,0.2); }

.about-blurb-new { font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.about-blurb-new strong { color: var(--text-mid); font-weight: 600; }
.about-blurb-new p { margin-bottom: 10px; }
.about-blurb-new p:last-child { margin-bottom: 0; }

.rr-new { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.rr-new:last-child { margin-bottom: 0; }
.rr-label-new { font-size: 12px; font-weight: 600; color: var(--text-mid); }
.rr-val-new   { font-size: 12px; font-weight: 700; color: var(--blue-primary); }
.response-title-new { font-size: 0.88rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 7px; }
.response-title-new svg { width: 14px; height: 14px; stroke: var(--blue-primary); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.social-grid-new { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.social-btn-new {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 12px; border-radius: 11px;
  border: 1px solid var(--blue-border); background: var(--blue-pale);
  text-decoration: none; transition: all 0.2s;
}
.social-btn-new:hover { background: var(--blue-primary); border-color: var(--blue-primary); transform: translateY(-2px); box-shadow: 0 5px 16px rgba(26,86,219,0.22); }
.social-btn-new:hover .s-name-new,.social-btn-new:hover .s-user-new { color: #fff; }
.social-btn-new:hover .s-ico-new svg { stroke: #fff; }
.s-ico-new { width: 28px; height: 28px; border-radius: 7px; background: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.s-ico-new svg { width: 14px; height: 14px; stroke: var(--blue-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s; }
.s-name-new { font-size: 12px; font-weight: 700; color: var(--blue-dark); transition: color 0.2s; line-height: 1.2; }
.s-user-new { font-size: 10.5px; color: var(--text-muted); transition: color 0.2s; }

/* ── FORM CARD ── */
.form-card-new {
  background: var(--bg-white); border: 1px solid #e2eaf6;
  border-radius: 18px; padding: clamp(24px,3vw,36px);
  animation: fadeUp-new 0.4s 0.06s ease both;
}
.form-header-new { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid #eef3fb; }
.form-header-new h2 { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; letter-spacing: -0.02em; }
.form-header-new p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* resume download tip */
.resume-tip-new {
  display: flex; align-items: flex-start; gap: 12px;
  background: #f8fbff; border: 1px solid #e8f0fe;
  border-radius: 12px; padding: 14px 16px; margin-bottom: 22px;
}
.resume-tip-icon-new { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.resume-tip-icon-new svg { width: 16px; height: 16px; stroke: var(--blue-primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.resume-tip-text-new { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }
.resume-tip-text-new strong { color: var(--text-mid); font-weight: 600; }
.resume-tip-text-new a { color: var(--blue-primary); font-weight: 600; text-decoration: none; }
.resume-tip-text-new a:hover { text-decoration: underline; }

/* form fields */
.form-row-2-new { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg-new { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg-new:last-of-type { margin-bottom: 0; }
.new-label { font-size: 12px; font-weight: 700; color: var(--text-mid); }
.req { color: #ef4444; margin-left: 2px; }

.new-input, .new-textarea, .new-select {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid #dde6f5; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 500; color: var(--text-dark);
  background: #fafcff; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.new-input::placeholder, .new-textarea::placeholder { color: #b0bdcc; font-weight: 400; }
.new-input:focus, .new-textarea:focus, .new-select:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
  background: #fff;
}
.new-input.input-validation-error, .new-textarea.input-validation-error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.02);
}
.new-input.input-validation-error:focus, .new-textarea.input-validation-error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.new-textarea { resize: vertical; min-height: 120px; line-height: 1.65; }

.form-footer-new {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-top: 22px; flex-wrap: wrap;
}
.form-note-new { font-size: 11.5px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.form-note-new svg { width: 13px; height: 13px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.btn-submit-new {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13.5px; font-weight: 700;
  background: linear-gradient(135deg, var(--blue-primary), #2563eb);
  color: #fff; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,86,219,0.32);
  transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
}
.btn-submit-new:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(26,86,219,0.42); }
.btn-submit-new:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn-submit-new svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.success-banner-new {
  display: flex; align-items: center; gap: 12px;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.3);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 16px;
  font-size: 13px; font-weight: 600; color: #166534;
}
.success-banner-new svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.error-banner-new {
  display: flex; align-items: center; gap: 12px;
  background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 16px;
  font-size: 13px; font-weight: 600; color: #991b1b;
}
.error-banner-new svg { width: 18px; height: 18px; stroke: #ef4444; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── CTA ── */
.cta-strip-new {
  background: linear-gradient(135deg, var(--blue-primary), #2563eb);
  border-radius: 18px; padding: clamp(24px,3vw,36px) clamp(20px,3vw,40px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  animation: fadeUp-new 0.4s 0.12s ease both;
}
.cta-left-new h3 { font-size: clamp(1rem,2.2vw,1.2rem); font-weight: 800; color: #fff; margin-bottom: 5px; }
.cta-left-new p  { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.cta-btns-new { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.btn-white-new {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700;
  background: #fff; color: var(--blue-primary); border: none; cursor: pointer;
  text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white-new:hover { transform: translateY(-2px); box-shadow: 0 7px 20px rgba(0,0,0,0.2); }
.btn-outline-w-new {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700;
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-outline-w-new:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }

@keyframes fadeUp-new { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-grid-new { grid-template-columns: 1fr; }
  .about-strip-new   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .form-row-2-new { grid-template-columns: 1fr; }
  .about-strip-new { grid-template-columns: 1fr; }
  .hero-intro-new  { flex-direction: column; text-align: center; }
  .cta-strip-new   { flex-direction: column; text-align: center; }
  .cta-btns-new    { justify-content: center; width: 100%; }
  .form-footer-new { flex-direction: column; align-items: stretch; }
  .btn-submit-new  { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .social-grid-new { grid-template-columns: 1fr; }
  .hero-chips-new  { gap: 6px; }
}
