/* ── PAGE HERO ────────────────────────────────────────── */
.page-hero {
  padding: 148px 6vw 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 47px,
    var(--blue-mid) 47px,
    var(--blue-mid) 48px
  );
  opacity: 0.22;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-img {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  z-index: 5;
}

.hero-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb-sep {
  color: var(--border);
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-eyebrow.light {
  color: rgba(255, 255, 255, 0.6);
}

.section-eyebrow.light::before {
  background: rgba(255, 255, 255, 0.4);
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

h1 em {
  font-style: italic;
  color: var(--blue);
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.page-hero-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
}

/* ── MAIN LAYOUT ──────────────────────────────────────── */
.contact-main {
  padding: 5rem 6vw 6rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ── FORM SECTION ─────────────────────────────────────── */
.form-section {
}

.form-intro {
  margin-bottom: 2.5rem;
}

.form-intro p {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
}

/* Progress steps */
.form-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.form-step {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  border-right: 1px solid var(--border);
  position: relative;
  transition:
    background 0.25s,
    color 0.25s;
}

.form-step:last-child {
  border-right: none;
}

.form-step.active {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
}

.form-step.done {
  background: var(--blue-light);
  color: var(--blue);
}

/* Form groups */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}

.label-required {
  color: var(--error);
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 79, 191, 0.1);
}

input.error,
select.error,
textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.error-msg {
  font-size: 0.78rem;
  color: var(--error);
  font-weight: 500;
  display: none;
}

.error-msg.visible {
  display: block;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B82A0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 2.5rem;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

/* Budget / timeline select group */
.select-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-box {
  background: var(--blue);
  border-color: var(--blue);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-box::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* Divider */
.form-divider {
  height: 1px;
  background: var(--border);
  margin: 1.75rem 0;
}

/* hCaptcha wrapper */
.captcha-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.captcha-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-shield {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.captcha-shield svg {
  width: 18px;
  height: 18px;
}

.captcha-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.captcha-text span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
}

.captcha-error {
  font-size: 0.78rem;
  color: var(--error);
  font-weight: 500;
  display: none;
  margin-top: 0.5rem;
}

.captcha-error.visible {
  display: block;
}

/* Privacy note */
.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
}

.privacy-note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy-note p {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}

.privacy-note a {
  color: var(--blue);
  font-weight: 500;
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-top: 1.5rem;
}

.btn-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  background: var(--text-light);
  cursor: not-allowed;
  transform: none;
}

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success state */
.success-message {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--off-white);
}

.success-message.visible {
  display: block;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dcfce7;
  border: 2px solid #86efac;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.success-icon svg {
  width: 28px;
  height: 28px;
}

.success-message h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.success-message p {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
  max-width: 400px;
  margin: 0 auto;
}

/* ── SIDEBAR ──────────────────────────────────────────── */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.info-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.info-card-header {
  background: var(--blue);
  padding: 1.5rem;
}

.info-card-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.info-card-header p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.info-card-body {
  padding: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 17px;
  height: 17px;
}

.contact-details strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-details a,
.contact-details span {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 400;
  text-decoration: none;
  display: block;
  line-height: 1.5;
}

.contact-details a:hover {
  color: var(--blue);
}

/* Response time card */
.response-card {
  background: var(--blue-deeper);
  border-radius: 8px;
  padding: 1.75rem;
  color: var(--white);
}

.response-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.response-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.7;
}

.response-times {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.response-time-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.845rem;
}

.rt-label {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.rt-value {
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-display);
}

/* What happens next */
.next-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
}

.next-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.next-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.next-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.next-step-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.next-step-text span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.55;
}

/* ── FAQ STRIP ────────────────────────────────────────── */
.faq-section {
  padding: 5rem 6vw;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
}

.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.faq-a {
  font-size: 0.868rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

/* ── ANIMATIONS ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────── */

@media (min-width: 1770px) {
  .hero-img img {
    width: 837.6px;
  }
}

@media (max-width: 1100px) {
  .hero-img {
    display: none;
  }

  .contact-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-sidebar {
    position: static;
  }

  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .overview-stats {
    grid-template-columns: repeat(1, 1fr);
  }

  .stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-right {
    flex-direction: column;
  }
  
  
  /*added 20260414*/
  .nav-toggle {
    display: flex;
  }

  .nav-drawer {
    display: block;
  }
  

  .page-hero-inner {
    margin-top: 0rem;
   }
   /*end added 20260414*/
   
   
}


@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

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

  .select-group {
    grid-template-columns: 1fr;
  }

  .form-steps {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .captcha-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
