﻿/* ============================================================
   TECHNZONE â€” Contact Page Styles
   contact.css â€” page-specific styles only
   ============================================================ */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.contact-hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 72, 95, 0.12) 0%, transparent 65%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.contact-hero-inner {
  max-width: 760px;
}

.contact-hero-eyebrow {
  margin-bottom: 24px;
}

.contact-hero-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.contact-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 600px;
}

.contact-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.chero-badge i { color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; }

.chero-badge--green {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.25);
  color: rgb(34, 197, 94);
}

.response-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(34, 197, 94);
  animation: pulse-green 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT SECTION LAYOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-section {
  background: var(--neutral, #faf8f4);
}

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

/* â”€â”€ Info Column â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 100px;
}

.cinfo-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cinfo-heading {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.cinfo-offices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cinfo-office-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.cinfo-office-card:hover {
  border-color: rgba(237, 72, 95, 0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.cinfo-flag {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.cinfo-city {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.cinfo-addr {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 8px;
}

.cinfo-phone {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cinfo-phone:hover { color: #d63b52; }

.cinfo-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cinfo-email i { color: var(--primary); font-size: 1rem; }
.cinfo-email:hover { color: var(--primary); }

.cinfo-socials {
  display: flex;
  gap: 10px;
}

/* â”€â”€ Why List â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cinfo-why {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.cinfo-why-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
}

.cinfo-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cinfo-why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
}

.cinfo-why-list li i {
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}


/* â”€â”€ Form Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 48px 52px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STEP INDICATORS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.step-indicators {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 0;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.contact-form-card .step-num {
  position: static !important;
  top: auto !important;
  right: auto !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray);
  background: #fff;
  transition: all 0.3s ease;
}

.step-indicator.active .contact-form-card .step-num {
  position: static !important;
  top: auto !important;
  right: auto !important;
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(237, 72, 95, 0.35);
}

.step-indicator.done .contact-form-card .step-num {
  position: static !important;
  top: auto !important;
  right: auto !important;
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.step-indicator > span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
  white-space: nowrap;
}

.step-indicator.active > span { color: var(--primary); }

.step-connector {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-top: 17px;
  min-width: 40px;
  transition: background 0.3s ease;
}

.step-indicator.done + .step-connector { background: var(--dark); }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROGRESS BAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin: 20px 0 44px;
  overflow: hidden;
}

.form-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #ff8a97);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FORM STEPS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-step { display: none; }

.form-step.active {
  display: block;
  animation: stepIn 0.4s ease forwards;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-heading {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.step-sub {
  font-size: 0.9375rem;
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.65;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INPUT GRID & FLOATING LABELS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.input-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.form-group {
  position: relative;
  margin-bottom: 28px;
}

.form-input {
  width: 100%;
  padding: 22px 16px 8px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.9375rem;
  font-family: inherit;
  background: #fafafa;
  color: var(--dark);
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(237, 72, 95, 0.08);
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: 0.9375rem;
  color: var(--gray);
  transition: all 0.2s ease;
  pointer-events: none;
  font-family: inherit;
  line-height: 1;
}

.form-input:focus ~ label,
.form-input:not(:placeholder-shown) ~ label {
  top: 7px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-input-line {
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  margin-top: -2px;
  position: relative;
  z-index: 1;
}

.form-group:focus-within .form-input-line { transform: scaleX(1); }

.form-textarea {
  resize: vertical;
  min-height: 160px;
  padding-top: 28px;
  line-height: 1.6;
}

.char-count {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: right;
  margin-top: 6px;
}

.req { color: var(--primary); }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FORM NAV BUTTONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  align-items: center;
}

.btn-next {
  flex: 1;
  padding: 16px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.22s ease;
  letter-spacing: 0.02em;
}

.btn-next:hover {
  background: #d63b52;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 72, 95, 0.35);
}

.btn-next:active { transform: translateY(0); }

.btn-back {
  padding: 16px 24px;
  background: transparent;
  color: var(--gray);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.22s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-back:hover {
  border-color: var(--dark);
  color: var(--dark);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROJECT TYPE GRID
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.project-type-label,
.budget-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.project-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.project-type-card {
  padding: 20px 16px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: center;
  position: relative;
  background: #fafafa;
  user-select: none;
  outline: none;
}

.project-type-card:hover {
  border-color: rgba(237, 72, 95, 0.4);
  background: rgba(237, 72, 95, 0.03);
  transform: translateY(-2px);
}

.project-type-card:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(237, 72, 95, 0.15);
}

.project-type-card.selected {
  border-color: var(--primary);
  background: rgba(237, 72, 95, 0.05);
  box-shadow: 0 0 0 3px rgba(237, 72, 95, 0.12);
}

.ptc-icon {
  font-size: 1.5rem;
  color: var(--gray);
  margin-bottom: 10px;
  transition: color 0.22s ease;
  display: block;
}

.project-type-card.selected .ptc-icon { color: var(--primary); }

.ptc-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.ptc-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.22s ease;
}

.project-type-card.selected .ptc-check {
  opacity: 1;
  transform: scale(1);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BUDGET PILLS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.budget-label { margin-bottom: 12px; margin-top: 4px; }

.budget-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.budget-pill {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray);
  background: #fafafa;
  transition: all 0.22s ease;
  user-select: none;
  outline: none;
}

.budget-pill:hover {
  border-color: rgba(237, 72, 95, 0.4);
  color: var(--primary);
}

.budget-pill:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(237, 72, 95, 0.15);
}

.budget-pill.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(237, 72, 95, 0.3);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FORM SUMMARY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-summary {
  padding: 20px 24px;
  background: var(--neutral);
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.summary-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--gray);
}

.summary-row i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.summary-row span {
  font-weight: 600;
  color: var(--dark);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SUBMIT BUTTON
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn-submit {
  width: 100%;
  padding: 20px 32px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  margin-top: 24px;
  letter-spacing: 0.02em;
}

.btn-submit:hover {
  background: #d63b52;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(237, 72, 95, 0.4);
}

.btn-submit:active { transform: translateY(0); }

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit-arrow { font-size: 1.1rem; }

.submit-loading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

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


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ERROR STATES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.step-error {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(237, 72, 95, 0.08);
  border: 1px solid rgba(237, 72, 95, 0.2);
  border-radius: 10px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 16px;
}

.form-error {
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(237, 72, 95, 0.08);
  border: 1px solid rgba(237, 72, 95, 0.2);
  border-radius: 10px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SUCCESS STATE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 2px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgb(34, 197, 94);
  margin: 0 auto 28px;
  animation: success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes success-pop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

#stepSuccess h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

#stepSuccess p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 8px;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ SECTION OVERRIDES (contact page)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-header {
  margin-bottom: 40px;
}

.faq-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 12px 0 0;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1100px) {
  .contact-layout {
    grid-template-columns: 320px 1fr;
    gap: 32px;
  }
  .contact-form-card { padding: 40px 36px 44px; }
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info-col {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .cinfo-block { flex: 1 1 280px; }
  .cinfo-why { flex: 1 1 100%; }
  .contact-hero { padding: 100px 0 60px; }
}

@media (max-width: 768px) {
  .contact-hero { padding: 90px 0 48px; }
  .contact-hero-badges { gap: 8px; }
  .chero-badge { font-size: 0.75rem; padding: 7px 14px; }
  .contact-form-card { padding: 32px 24px 36px; border-radius: 16px; }
  .contact-info-col { flex-direction: column; gap: 16px; }
  .cinfo-block { flex: none; }
  .input-grid-2 { grid-template-columns: 1fr; }
  .project-type-grid { grid-template-columns: repeat(2, 1fr); }
  .budget-grid { gap: 8px; }
  .budget-pill { padding: 8px 14px; font-size: 0.8125rem; }
  .form-nav { flex-direction: column-reverse; }
  .btn-back { justify-content: center; width: 100%; }
  .btn-next { width: 100%; }
}

@media (max-width: 480px) {
  .project-type-grid { grid-template-columns: repeat(2, 1fr); }
  .step-connector { min-width: 20px; }
  .step-indicator > span { display: none; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RTL / ARABIC OVERRIDES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
body[lang="ar"] .contact-hero-inner { text-align: right; }
body[lang="ar"] .contact-hero-badges { flex-direction: row-reverse; }
body[lang="ar"] .chero-badge { flex-direction: row-reverse; }

body[lang="ar"] .contact-info-col { direction: rtl; text-align: right; }
body[lang="ar"] .cinfo-office-card { flex-direction: row-reverse; }
body[lang="ar"] .cinfo-email { flex-direction: row-reverse; }
body[lang="ar"] .cinfo-socials { flex-direction: row-reverse; }
body[lang="ar"] .cinfo-why-list li { flex-direction: row-reverse; }

body[lang="ar"] .contact-form-card { direction: rtl; text-align: right; }
body[lang="ar"] .form-input-line { transform-origin: right; }
body[lang="ar"] .form-group label { left: auto; right: 16px; }
body[lang="ar"] .form-input:focus ~ label,
body[lang="ar"] .form-input:not(:placeholder-shown) ~ label { right: 16px; left: auto; }
body[lang="ar"] .ptc-check { right: auto; left: 8px; }
body[lang="ar"] .form-nav { flex-direction: row-reverse; }
body[lang="ar"] .step-error,
body[lang="ar"] .form-error { flex-direction: row-reverse; }
body[lang="ar"] .summary-row { flex-direction: row-reverse; }
body[lang="ar"] .char-count { text-align: left; }
body[lang="ar"] .step-indicators { flex-direction: row-reverse; }
body[lang="ar"] .step-connector { transform: scaleX(-1); }
body[lang="ar"] .submit-text { flex-direction: row-reverse; }
body[lang="ar"] .budget-grid { flex-direction: row-reverse; }

@media (max-width: 768px) {
  body[lang="ar"] .form-nav { flex-direction: column-reverse; }
}

