@media screen and (max-width:767px){
    /* ═══════════════════════════════════════════════════════════════
   CONTACT FORM STYLES — Complete: Overlay + All Form Fields
   ═══════════════════════════════════════════════════════════════ */

/* ─── 0. OVERLAY SHELL ─── */
.contact-us__session {
  display: none; /* hidden from normal flow until moved into overlay */
}

.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.contact-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.contact-overlay__panel {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: var(--bg-primary, #fff);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-overlay.is-open .contact-overlay__panel {
  transform: translateY(0) scale(1);
}

.contact-overlay__content {
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 32px;
  scrollbar-width: thin;
}

.contact-overlay__content::-webkit-scrollbar {
  width: 6px;
}

.contact-overlay__content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

/* Form visible inside overlay */
.contact-overlay__content .contact-us__session {
  display: block;
  padding: 0;
  max-width: 100%;
}

/* Close button */
.contact-overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--bg-secondary, #f5f5f7);
  color: var(--text-primary, #1c1c1e);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}

.contact-overlay__close:hover {
  background: var(--border-color, #e5e5ea);
  transform: rotate(90deg);
}

/* ─── 1. BASE CONTAINER ─── */
.contact-us__session {
  font-family: 'SpaceGrotesk-Lite' !important;
  font-weight: 100; 
  letter-spacing: 0.4px;
  font-size: 14px;
  color: var(--text-primary, #1C1C1E);
}

.contact-us__session .h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary, #6B6B6B);
  margin-bottom: 40px;
}

/* ─── 2. FORM LAYOUT ─── */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary, #1C1C1E);
}

/* ─── 3. TEXT INPUTS & TEXTAREA ─── */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="time"],
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-color, #E5E5EA);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-primary, #fff);
  color: var(--text-primary, #1C1C1E);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color, #007AFF);
  box-shadow: 0 0 0 3px var(--accent-glow, rgba(0,122,255,0.15));
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ─── 4. ROW LAYOUT ─── */
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .contact-form__row:has(input[name="tel-289"]) {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── 5. CHECKBOX TAGS (Project Type) ─── */
.checkbox-tag .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-tag .wpcf7-list-item {
  display: inline-flex;
}

.checkbox-tag .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--border-color, #E5E5EA);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0;
  background: var(--bg-primary, #fff);
  user-select: none;
}

.checkbox-tag .wpcf7-list-item label:hover {
  border-color: var(--accent-color, #007AFF);
  background: var(--accent-hover, rgba(0,122,255,0.05));
}

.checkbox-tag .wpcf7-list-item input[type="checkbox"] {
  position: relative;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-tag .wpcf7-list-item:has(input:checked) label {
  border-color: var(--accent-color, #007AFF);
  background: var(--accent-active, rgba(0,122,255,0.1));
  color: var(--accent-color, #007AFF);
}

/* ─── 6. BASIC CHECKBOX ─── */
/* ═══════════════════════════════════════════════════════════════
   CUSTOM CHECKBOX — Simple SVG Checkmark (CSS-only)
   ═══════════════════════════════════════════════════════════════ */

.checkbox-basic .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-primary, #1C1C1E);
  margin-bottom: 0;
}

/* Hide native checkbox */
.checkbox-basic input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--border-color, #D1D1D6);
  border-radius: 6px;
  background: var(--bg-primary, #fff);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  outline: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.checkbox-basic input[type="checkbox"]:hover {
  border-color: var(--accent-color, #007AFF);
}

.checkbox-basic input[type="checkbox"]:focus {
  border-color: var(--accent-color, #007AFF);
  box-shadow: 0 0 0 3px var(--accent-glow, rgba(0,122,255,0.15));
}

/* Checked — white checkmark via CSS border trick */
.checkbox-basic input[type="checkbox"]:checked {
  background: var(--accent-color, #007AFF);
  border-color: var(--accent-color, #007AFF);
}

.checkbox-basic input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  display: block;
}

/* ─── Dark Theme ─── */
[data-theme="dark"] .checkbox-basic input[type="checkbox"] {
  background: var(--bg-primary, #1C1C1E);
  border-color: var(--border-color, #3A3A3C);
}

[data-theme="dark"] .checkbox-basic input[type="checkbox"]:checked {
  background: var(--accent-color, #0A84FF);
  border-color: var(--accent-color, #0A84FF);
}

/* ─── 7. CALL TIME FIELDS ─── */
.contact-form__date {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  background: var(--bg-secondary, #F5F5F7);
  border-radius: 12px;
  margin-top: -8px;
}

.contact-form__date.is-visible {
  display: block;
  opacity: 1;
}

.contact-form__time {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-form__time input[type="time"] {
  padding: 10px 14px;
  border: 1.5px solid var(--border-color, #E5E5EA);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg-primary, #fff);
}

.label__sign {
  font-weight: 600;
  color: var(--text-secondary, #6B6B6B);
}

/* ─── 8. FILE UPLOAD ─── */
.upload_file {
  margin-top: 8px;
}

.kwt-file {
  position: relative;
}

.kwt-file__drop-area {
  border: 2px dashed var(--border-color, #D1D1D6);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
  background: var(--bg-primary, #fff);
}

.kwt-file__drop-area:hover,
.kwt-file__drop-area.drag-over {
  border-color: var(--accent-color, #007AFF);
  background: var(--accent-hover, rgba(0,122,255,0.03));
}

.kwt-file__choose-file {
  display: inline-flex;
  margin-bottom: 12px;
}

.kwt-file__choose-file svg {
  width: 36px;
  height: 33px;
}

.kwt-file__choose-file svg path {
  stroke: var(--text-secondary, #6B6B6B);
  transition: stroke 0.2s;
}

.kwt-file__drop-area:hover .kwt-file__choose-file svg path,
.kwt-file__drop-area.drag-over .kwt-file__choose-file svg path {
  stroke: var(--accent-color, #007AFF);
}

.kwt-file__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: none;
}

.kwt-file__msg {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary, #8E8E93);
  margin-top: 4px;
}

.kwt-file__delete {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-primary, #fff);
  border: 1.5px solid var(--border-color, #E5E5EA);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-secondary, #6B6B6B);
}

.kwt-file__delete::before {
  content: "×";
}

.kwt-file__delete:hover {
  background: #FF3B30;
  border-color: #FF3B30;
  color: #fff;
}

.kwt-file.has-file .kwt-file__delete {
  display: flex;
}

.kwt-file.has-file .kwt-file__msg {
  color: var(--accent-color, #007AFF);
  font-weight: 500;
}

/* ─── 9. SUBMIT BUTTON ─── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: var(--accent-color, #007AFF);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  background: var(--accent-hover-dark, #0051D5);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,122,255,0.25);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Spinner */
.wpcf7-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
}

.wpcf7-form.submitting .wpcf7-spinner {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── 10. RESPONSE OUTPUT ─── */
.wpcf7-response-output {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-top: 16px;
  display: none;
}

.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-acceptance-missing {
  display: block;
  background: #FFF3F3;
  color: #D70015;
  border: 1px solid #FFD6D6;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  display: block;
  background: #F0FFF4;
  color: #1D7A3E;
  border: 1px solid #C6F6D5;
}

/* ─── 11. VALIDATION STATES ─── */
.wpcf7-not-valid {
  border-color: #FF3B30 !important;
}

.wpcf7-not-valid-tip {
  color: #FF3B30;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ─── 12. HIDDEN FIELDS ─── */
.hidden-fields-container {
  display: none;
}

/* ─── 13. RESPONSIVE ─── */
@media (max-width: 640px) {
  .contact-overlay__panel {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .contact-overlay__content {
    max-height: 100vh;
    padding: 60px 20px 40px;
  }
  .contact-us__session .h2 {
    font-size: 1.8rem;
  }
  .checkbox-tag .wpcf7-checkbox {
    gap: 8px;
  }
  .checkbox-tag .wpcf7-list-item label {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .cta-btn {
    width: 100%;
  }
}

/* ─── 14. DARK THEME ─── */
[data-theme="dark"] .contact-overlay__panel {
  background: var(--bg-primary, #1c1c1e);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .contact-overlay__close {
  background: var(--bg-secondary, #2c2c2e);
  color: var(--text-primary, #f5f5f7);
}

[data-theme="dark"] .contact-overlay__close:hover {
  background: var(--border-color, #3a3a3c);
}

[data-theme="dark"] .contact-us__session {
  --text-primary: #F5F5F7;
  --text-secondary: #A1A1A6;
  --bg-primary: #1C1C1E;
  --bg-secondary: #2C2C2E;
  --border-color: #3A3A3C;
  --accent-color: #0A84FF;
  --accent-hover: rgba(10,132,255,0.1);
  --accent-active: rgba(10,132,255,0.2);
  --accent-glow: rgba(10,132,255,0.2);
  --accent-hover-dark: #0066CC;
}

[data-theme="dark"] .kwt-file__drop-area {
  background: var(--bg-primary);
}

[data-theme="dark"] .kwt-file__choose-file svg path {
  stroke: var(--text-secondary);
}

[data-theme="dark"] .checkbox-tag .wpcf7-list-item label {
  background: var(--bg-primary);
  border-color: var(--border-color);
}

 .contact-us {
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 60px;
    z-index: 10000;
    color: var(--body-color);
    transition: 0.3s ease;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
    display: flex;
    flex-direction: row;
    width: auto;
    height: 20px;
    animation: burgerPop 0.4s ease forwards;
    padding: 14px 5px;
    border: 1px solid #3a3a3c;
    text-align: center;
    line-height: 2.0625;
    border-radius: 0.83vw;    
  }

  .contact-us p{
    padding: 0;
    margin: 0;
    font-family: 'SpaceGrotesk-Lite' !important;
	font-weight: 300; 
	letter-spacing: 0.4px;
	font-size: 14px;
  }

}


@media screen and (min-width: 768px) and (max-width: 970px) {
    /* ═══════════════════════════════════════════════════════════════
   CONTACT FORM STYLES — Complete: Overlay + All Form Fields
   ═══════════════════════════════════════════════════════════════ */

/* ─── 0. OVERLAY SHELL ─── */
.contact-us__session {
  display: none; /* hidden from normal flow until moved into overlay */
}

.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.contact-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.contact-overlay__panel {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: var(--bg-primary, #fff);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-overlay.is-open .contact-overlay__panel {
  transform: translateY(0) scale(1);
}

.contact-overlay__content {
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 32px;
  scrollbar-width: thin;
}

.contact-overlay__content::-webkit-scrollbar {
  width: 6px;
}

.contact-overlay__content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

/* Form visible inside overlay */
.contact-overlay__content .contact-us__session {
  display: block;
  padding: 0;
  max-width: 100%;
}

/* Close button */
.contact-overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--bg-secondary, #f5f5f7);
  color: var(--text-primary, #1c1c1e);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}

.contact-overlay__close:hover {
  background: var(--border-color, #e5e5ea);
  transform: rotate(90deg);
}

/* ─── 1. BASE CONTAINER ─── */
.contact-us__session {
  font-family: 'SpaceGrotesk-Lite' !important;
  font-weight: 300; 
  letter-spacing: 0.4px;
  font-size: 14px;
  color: var(--text-primary, #1C1C1E);
}

.contact-us__session .h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary, #6B6B6B);
  margin-bottom: 40px;
}

/* ─── 2. FORM LAYOUT ─── */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary, #1C1C1E);
}

/* ─── 3. TEXT INPUTS & TEXTAREA ─── */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="time"],
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-color, #E5E5EA);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-primary, #fff);
  color: var(--text-primary, #1C1C1E);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color, #007AFF);
  box-shadow: 0 0 0 3px var(--accent-glow, rgba(0,122,255,0.15));
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ─── 4. ROW LAYOUT ─── */
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .contact-form__row:has(input[name="tel-289"]) {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── 5. CHECKBOX TAGS (Project Type) ─── */
.checkbox-tag .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-tag .wpcf7-list-item {
  display: inline-flex;
}

.checkbox-tag .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--border-color, #E5E5EA);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0;
  background: var(--bg-primary, #fff);
  user-select: none;
}

.checkbox-tag .wpcf7-list-item label:hover {
  border-color: var(--accent-color, #007AFF);
  background: var(--accent-hover, rgba(0,122,255,0.05));
}

.checkbox-tag .wpcf7-list-item input[type="checkbox"] {
  position: relative;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-tag .wpcf7-list-item:has(input:checked) label {
  border-color: var(--accent-color, #007AFF);
  background: var(--accent-active, rgba(0,122,255,0.1));
  color: var(--accent-color, #007AFF);
}

/* ─── 6. BASIC CHECKBOX ─── */
/* ═══════════════════════════════════════════════════════════════
   CUSTOM CHECKBOX — Simple SVG Checkmark (CSS-only)
   ═══════════════════════════════════════════════════════════════ */

.checkbox-basic .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-primary, #1C1C1E);
  margin-bottom: 0;
}

/* Hide native checkbox */
.checkbox-basic input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--border-color, #D1D1D6);
  border-radius: 6px;
  background: var(--bg-primary, #fff);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  outline: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.checkbox-basic input[type="checkbox"]:hover {
  border-color: var(--accent-color, #007AFF);
}

.checkbox-basic input[type="checkbox"]:focus {
  border-color: var(--accent-color, #007AFF);
  box-shadow: 0 0 0 3px var(--accent-glow, rgba(0,122,255,0.15));
}

/* Checked — white checkmark via CSS border trick */
.checkbox-basic input[type="checkbox"]:checked {
  background: var(--accent-color, #007AFF);
  border-color: var(--accent-color, #007AFF);
}

.checkbox-basic input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  display: block;
}

/* ─── Dark Theme ─── */
[data-theme="dark"] .checkbox-basic input[type="checkbox"] {
  background: var(--bg-primary, #1C1C1E);
  border-color: var(--border-color, #3A3A3C);
}

[data-theme="dark"] .checkbox-basic input[type="checkbox"]:checked {
  background: var(--accent-color, #0A84FF);
  border-color: var(--accent-color, #0A84FF);
}

/* ─── 7. CALL TIME FIELDS ─── */
.contact-form__date {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  background: var(--bg-secondary, #F5F5F7);
  border-radius: 12px;
  margin-top: -8px;
}

.contact-form__date.is-visible {
  display: block;
  opacity: 1;
}

.contact-form__time {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-form__time input[type="time"] {
  padding: 10px 14px;
  border: 1.5px solid var(--border-color, #E5E5EA);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg-primary, #fff);
}

.label__sign {
  font-weight: 600;
  color: var(--text-secondary, #6B6B6B);
}

/* ─── 8. FILE UPLOAD ─── */
.upload_file {
  margin-top: 8px;
}

.kwt-file {
  position: relative;
}

.kwt-file__drop-area {
  border: 2px dashed var(--border-color, #D1D1D6);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
  background: var(--bg-primary, #fff);
}

.kwt-file__drop-area:hover,
.kwt-file__drop-area.drag-over {
  border-color: var(--accent-color, #007AFF);
  background: var(--accent-hover, rgba(0,122,255,0.03));
}

.kwt-file__choose-file {
  display: inline-flex;
  margin-bottom: 12px;
}

.kwt-file__choose-file svg {
  width: 36px;
  height: 33px;
}

.kwt-file__choose-file svg path {
  stroke: var(--text-secondary, #6B6B6B);
  transition: stroke 0.2s;
}

.kwt-file__drop-area:hover .kwt-file__choose-file svg path,
.kwt-file__drop-area.drag-over .kwt-file__choose-file svg path {
  stroke: var(--accent-color, #007AFF);
}

.kwt-file__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: none;
}

.kwt-file__msg {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary, #8E8E93);
  margin-top: 4px;
}

.kwt-file__delete {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-primary, #fff);
  border: 1.5px solid var(--border-color, #E5E5EA);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-secondary, #6B6B6B);
}

.kwt-file__delete::before {
  content: "×";
}

.kwt-file__delete:hover {
  background: #FF3B30;
  border-color: #FF3B30;
  color: #fff;
}

.kwt-file.has-file .kwt-file__delete {
  display: flex;
}

.kwt-file.has-file .kwt-file__msg {
  color: var(--accent-color, #007AFF);
  font-weight: 500;
}

/* ─── 9. SUBMIT BUTTON ─── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: var(--accent-color, #007AFF);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  background: var(--accent-hover-dark, #0051D5);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,122,255,0.25);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Spinner */
.wpcf7-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
}

.wpcf7-form.submitting .wpcf7-spinner {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── 10. RESPONSE OUTPUT ─── */
.wpcf7-response-output {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-top: 16px;
  display: none;
}

.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-acceptance-missing {
  display: block;
  background: #FFF3F3;
  color: #D70015;
  border: 1px solid #FFD6D6;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  display: block;
  background: #F0FFF4;
  color: #1D7A3E;
  border: 1px solid #C6F6D5;
}

/* ─── 11. VALIDATION STATES ─── */
.wpcf7-not-valid {
  border-color: #FF3B30 !important;
}

.wpcf7-not-valid-tip {
  color: #FF3B30;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ─── 12. HIDDEN FIELDS ─── */
.hidden-fields-container {
  display: none;
}

/* ─── 13. RESPONSIVE ─── */
@media (max-width: 640px) {
  .contact-overlay__panel {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .contact-overlay__content {
    max-height: 100vh;
    padding: 60px 20px 40px;
  }
  .contact-us__session .h2 {
    font-size: 1.8rem;
  }
  .checkbox-tag .wpcf7-checkbox {
    gap: 8px;
  }
  .checkbox-tag .wpcf7-list-item label {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .cta-btn {
    width: 100%;
  }
}

/* ─── 14. DARK THEME ─── */
[data-theme="dark"] .contact-overlay__panel {
  background: var(--bg-primary, #1c1c1e);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .contact-overlay__close {
  background: var(--bg-secondary, #2c2c2e);
  color: var(--text-primary, #f5f5f7);
}

[data-theme="dark"] .contact-overlay__close:hover {
  background: var(--border-color, #3a3a3c);
}

[data-theme="dark"] .contact-us__session {
  --text-primary: #F5F5F7;
  --text-secondary: #A1A1A6;
  --bg-primary: #1C1C1E;
  --bg-secondary: #2C2C2E;
  --border-color: #3A3A3C;
  --accent-color: #0A84FF;
  --accent-hover: rgba(10,132,255,0.1);
  --accent-active: rgba(10,132,255,0.2);
  --accent-glow: rgba(10,132,255,0.2);
  --accent-hover-dark: #0066CC;
}

[data-theme="dark"] .kwt-file__drop-area {
  background: var(--bg-primary);
}

[data-theme="dark"] .kwt-file__choose-file svg path {
  stroke: var(--text-secondary);
}

[data-theme="dark"] .checkbox-tag .wpcf7-list-item label {
  background: var(--bg-primary);
  border-color: var(--border-color);
}

 .contact-us {
    cursor: pointer;
    position: fixed;
    top: 40px;
    right: 80px;
    z-index: 10000;
    color: var(--body-color);
    transition: 0.3s ease;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
    display: flex;
    flex-direction: row;
    width: auto;
    height: 40px;
    animation: burgerPop 0.4s ease forwards;
    padding: 5px 19px;
    border: 1px solid #3a3a3c;
    text-align: center;
    line-height: 2.0625;
    border-radius: 0.83vw;
    font-family: 'SpaceGrotesk-Lite' !important;
	font-weight: 300; 
	letter-spacing: 0.4px;
	font-size: 14px;
  }

}


@media screen and (min-width:971px){
    /* ═══════════════════════════════════════════════════════════════
   CONTACT FORM STYLES — Complete: Overlay + All Form Fields
   ═══════════════════════════════════════════════════════════════ */

/* ─── 0. OVERLAY SHELL ─── */
.contact-us__session {
  display: none; /* hidden from normal flow until moved into overlay */
}

.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.contact-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.contact-overlay__panel {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: var(--bg-primary, #fff);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-overlay.is-open .contact-overlay__panel {
  transform: translateY(0) scale(1);
}

.contact-overlay__content {
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 32px;
  scrollbar-width: thin;
}

.contact-overlay__content::-webkit-scrollbar {
  width: 6px;
}

.contact-overlay__content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

/* Form visible inside overlay */
.contact-overlay__content .contact-us__session {
  display: block;
  padding: 0;
  max-width: 100%;
}

/* Close button */
.contact-overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--bg-secondary, #f5f5f7);
  color: var(--text-primary, #1c1c1e);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}

.contact-overlay__close:hover {
  background: var(--border-color, #e5e5ea);
  transform: rotate(90deg);
}

/* ─── 1. BASE CONTAINER ─── */
.contact-us__session {
  font-family: 'SpaceGrotesk-Lite' !important;
  font-weight: 300; 
  letter-spacing: 0.4px;
  font-size: 14px;
  color: var(--text-primary, #1C1C1E);
}

.contact-us__session .h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary, #6B6B6B);
  margin-bottom: 40px;
}

/* ─── 2. FORM LAYOUT ─── */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary, #1C1C1E);
}

/* ─── 3. TEXT INPUTS & TEXTAREA ─── */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="time"],
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-color, #E5E5EA);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-primary, #fff);
  color: var(--text-primary, #1C1C1E);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color, #007AFF);
  box-shadow: 0 0 0 3px var(--accent-glow, rgba(0,122,255,0.15));
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ─── 4. ROW LAYOUT ─── */
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .contact-form__row:has(input[name="tel-289"]) {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── 5. CHECKBOX TAGS (Project Type) ─── */
.checkbox-tag .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-tag .wpcf7-list-item {
  display: inline-flex;
}

.checkbox-tag .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--border-color, #E5E5EA);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0;
  background: var(--bg-primary, #fff);
  user-select: none;
}

.checkbox-tag .wpcf7-list-item label:hover {
  border-color: var(--accent-color, #007AFF);
  background: var(--accent-hover, rgba(0,122,255,0.05));
}

.checkbox-tag .wpcf7-list-item input[type="checkbox"] {
  position: relative;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-tag .wpcf7-list-item:has(input:checked) label {
  border-color: var(--accent-color, #007AFF);
  background: var(--accent-active, rgba(0,122,255,0.1));
  color: var(--accent-color, #007AFF);
}

/* ─── 6. BASIC CHECKBOX ─── */
/* ═══════════════════════════════════════════════════════════════
   CUSTOM CHECKBOX — Simple SVG Checkmark (CSS-only)
   ═══════════════════════════════════════════════════════════════ */

.checkbox-basic .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-primary, #1C1C1E);
  margin-bottom: 0;
}

/* Hide native checkbox */
.checkbox-basic input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--border-color, #D1D1D6);
  border-radius: 6px;
  background: var(--bg-primary, #fff);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  outline: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.checkbox-basic input[type="checkbox"]:hover {
  border-color: var(--accent-color, #007AFF);
}

.checkbox-basic input[type="checkbox"]:focus {
  border-color: var(--accent-color, #007AFF);
  box-shadow: 0 0 0 3px var(--accent-glow, rgba(0,122,255,0.15));
}

/* Checked — white checkmark via CSS border trick */
.checkbox-basic input[type="checkbox"]:checked {
  background: var(--accent-color, #007AFF);
  border-color: var(--accent-color, #007AFF);
}

.checkbox-basic input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  display: block;
}

/* ─── Dark Theme ─── */
[data-theme="dark"] .checkbox-basic input[type="checkbox"] {
  background: var(--bg-primary, #1C1C1E);
  border-color: var(--border-color, #3A3A3C);
}

[data-theme="dark"] .checkbox-basic input[type="checkbox"]:checked {
  background: var(--accent-color, #0A84FF);
  border-color: var(--accent-color, #0A84FF);
}

/* ─── 7. CALL TIME FIELDS ─── */
.contact-form__date {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  background: var(--bg-secondary, #F5F5F7);
  border-radius: 12px;
  margin-top: -8px;
}

.contact-form__date.is-visible {
  display: block;
  opacity: 1;
}

.contact-form__time {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-form__time input[type="time"] {
  padding: 10px 14px;
  border: 1.5px solid var(--border-color, #E5E5EA);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg-primary, #fff);
}

.label__sign {
  font-weight: 600;
  color: var(--text-secondary, #6B6B6B);
}

/* ─── 8. FILE UPLOAD ─── */
.upload_file {
  margin-top: 8px;
}

.kwt-file {
  position: relative;
}

.kwt-file__drop-area {
  border: 2px dashed var(--border-color, #D1D1D6);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
  background: var(--bg-primary, #fff);
}

.kwt-file__drop-area:hover,
.kwt-file__drop-area.drag-over {
  border-color: var(--accent-color, #007AFF);
  background: var(--accent-hover, rgba(0,122,255,0.03));
}

.kwt-file__choose-file {
  display: inline-flex;
  margin-bottom: 12px;
}

.kwt-file__choose-file svg {
  width: 36px;
  height: 33px;
}

.kwt-file__choose-file svg path {
  stroke: var(--text-secondary, #6B6B6B);
  transition: stroke 0.2s;
}

.kwt-file__drop-area:hover .kwt-file__choose-file svg path,
.kwt-file__drop-area.drag-over .kwt-file__choose-file svg path {
  stroke: var(--accent-color, #007AFF);
}

.kwt-file__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: none;
}

.kwt-file__msg {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary, #8E8E93);
  margin-top: 4px;
}

.kwt-file__delete {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-primary, #fff);
  border: 1.5px solid var(--border-color, #E5E5EA);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-secondary, #6B6B6B);
}

.kwt-file__delete::before {
  content: "×";
}

.kwt-file__delete:hover {
  background: #FF3B30;
  border-color: #FF3B30;
  color: #fff;
}

.kwt-file.has-file .kwt-file__delete {
  display: flex;
}

.kwt-file.has-file .kwt-file__msg {
  color: var(--accent-color, #007AFF);
  font-weight: 500;
}

/* ─── 9. SUBMIT BUTTON ─── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: var(--accent-color, #007AFF);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  background: var(--accent-hover-dark, #0051D5);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,122,255,0.25);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Spinner */
.wpcf7-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
}

.wpcf7-form.submitting .wpcf7-spinner {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── 10. RESPONSE OUTPUT ─── */
.wpcf7-response-output {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-top: 16px;
  display: none;
}

.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-acceptance-missing {
  display: block;
  background: #FFF3F3;
  color: #D70015;
  border: 1px solid #FFD6D6;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  display: block;
  background: #F0FFF4;
  color: #1D7A3E;
  border: 1px solid #C6F6D5;
}

/* ─── 11. VALIDATION STATES ─── */
.wpcf7-not-valid {
  border-color: #FF3B30 !important;
}

.wpcf7-not-valid-tip {
  color: #FF3B30;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ─── 12. HIDDEN FIELDS ─── */
.hidden-fields-container {
  display: none;
}

/* ─── 13. RESPONSIVE ─── */
@media (max-width: 640px) {
  .contact-overlay__panel {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .contact-overlay__content {
    max-height: 100vh;
    padding: 60px 20px 40px;
  }
  .contact-us__session .h2 {
    font-size: 1.8rem;
  }
  .checkbox-tag .wpcf7-checkbox {
    gap: 8px;
  }
  .checkbox-tag .wpcf7-list-item label {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .cta-btn {
    width: 100%;
  }
}

/* ─── 14. DARK THEME ─── */
[data-theme="dark"] .contact-overlay__panel {
  background: var(--bg-primary, #1c1c1e);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .contact-overlay__close {
  background: var(--bg-secondary, #2c2c2e);
  color: var(--text-primary, #f5f5f7);
}

[data-theme="dark"] .contact-overlay__close:hover {
  background: var(--border-color, #3a3a3c);
}

[data-theme="dark"] .contact-us__session {
  --text-primary: #F5F5F7;
  --text-secondary: #A1A1A6;
  --bg-primary: #1C1C1E;
  --bg-secondary: #2C2C2E;
  --border-color: #3A3A3C;
  --accent-color: #0A84FF;
  --accent-hover: rgba(10,132,255,0.1);
  --accent-active: rgba(10,132,255,0.2);
  --accent-glow: rgba(10,132,255,0.2);
  --accent-hover-dark: #0066CC;
}

[data-theme="dark"] .kwt-file__drop-area {
  background: var(--bg-primary);
}

[data-theme="dark"] .kwt-file__choose-file svg path {
  stroke: var(--text-secondary);
}

[data-theme="dark"] .checkbox-tag .wpcf7-list-item label {
  background: var(--bg-primary);
  border-color: var(--border-color);
}

 .contact-us {
    cursor: pointer;
    position: fixed;
    top: 40px;
    right: 80px;
    z-index: 10000;
    color: var(--body-color);
    transition: 0.3s ease;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
    display: flex;
    flex-direction: row;
    width: auto;
    height: 40px;
    animation: burgerPop 0.4s ease forwards;
    padding: 5px 19px;
    border: 1px solid #3a3a3c;
    text-align: center;
    line-height: 2.0625;
    border-radius: 0.83vw;
    font-family: 'SpaceGrotesk-Lite' !important;
	font-weight: 300; 
	letter-spacing: 0.4px;
	font-size: 14px;
  }

}



