:root {
  --taq-blue: #1f73b7;
  --taq-green: #86b93b;
  --taq-text: #0b3f66;
}

.taq-hero-fw {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 580px;
}

.taq-hero-fw::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, var(--taq-overlay-opacity, 0.85)) 0%,
      rgba(255, 255, 255, var(--taq-overlay-mid, 0.55)) 52%,
      rgba(255, 255, 255, 0.25) 100%);
  pointer-events: none;
}

.taq-hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(90px, 8vw, 130px) 18px clamp(26px, 5vw, 70px);
}

.taq-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(18px, 4vw, 44px);
  align-items: stretch;
}

.taq-hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.taq-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  width: 100%;
  max-width: 520px;
}

.taq-hero-copy h1,
.taq-hero-copy h2 {
  width: 100%;
  text-align: center;
}

.taq-hero-left h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  color: var(--taq-text);
  font-weight: 800;
}

.taq-hero-left h2 {
  margin: 0 0 18px;
  font-size: clamp(20px, 2.7vw, 36px);
  line-height: 1.2;
  color: var(--taq-text);
  font-weight: 700;
}

.taq-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  justify-content: center;
}

.taq-contact-three {
  background: #f6fbff;
  padding: clamp(28px, 3vw, 48px) 18px 40px;
}

.taq-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.taq-contact-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
  align-items: stretch;
}

.taq-contact-column {
  border-radius: 22px;
  background: #fff;
  padding: clamp(18px, 2vw, 30px);
  box-shadow: 0 18px 40px rgba(18, 38, 68, 0.1);
}

.taq-contact-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 260px;
  text-align: center;
  background: #fff;
}

.taq-contact-logo img {
  max-width: 70%;
  height: auto;
  display: block;
}

.taq-contact-logo-text {
  font-weight: 800;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--taq-text);
}

.taq-contact-socials {
  margin-top: 20px;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.taq-contact-socials-title {
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(6, 24, 44, 0.9);
  letter-spacing: 0.4px;
  font-size: 13px;
  text-transform: uppercase;
}

.taq-contact-social-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.taq-contact-social-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  text-decoration: none;
  color: var(--taq-blue);
  font-weight: 600;
  letter-spacing: 0.2px;
  justify-content: flex-start;
  width: 100%;
  max-width: 220px;
  text-align: left;
}

.taq-contact-social-icon-img {
  max-width: 40px;
  max-height: 40px;
  width: auto;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 !important;
  padding: 0;
  border: none;
}

.taq-contact-social-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 40px;
  background: #f0f7ff;
  border: 1px solid rgba(27, 91, 154, 0.15);
  color: var(--taq-text);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.taq-contact-social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(11, 35, 69, 0.12);
}

.taq-contact-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--taq-blue);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.taq-contact-locations {
  background: #f4f9ff;
  box-shadow: 0 20px 60px rgba(11, 35, 69, 0.1);
  padding: clamp(24px, 3vw, 32px);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 380px;
}

.taq-contact-column.taq-contact-locations {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.taq-contact-locations h3 {
  margin: 0 0 18px;
  color: #0b2d5c;
  font-size: clamp(24px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-align: center;
}

.taq-contact-locations-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  max-width: 420px;
}

.taq-contact-location {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11, 46, 82, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.taq-contact-location:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.taq-contact-location:first-child {
  margin-top: 14px;
}

.taq-contact-location h4 {
  margin: 0 0 6px;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #0f3c7a;
  text-transform: uppercase;
}

.taq-contact-location p {
  margin: 0;
}

.taq-contact-location-detail {
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(11, 35, 69, 0.78);
  width: 100%;
  text-align: center;
}

.taq-contact-location-detail + .taq-contact-location-detail {
  margin-top: 2px;
}

.taq-contact-location-detail-primary {
  font-weight: 600;
  color: #1e5a99;
}

.taq-contact-form {
  background: transparent;
  box-shadow: none;
  padding-top: 0;
}

.taq-contact-maps {
  margin-top: clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(16px, 2vw, 32px);
}

.taq-contact-map {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 50px rgba(7, 24, 53, 0.12);
  display: flex;
  flex-direction: column;
}

.taq-contact-map-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.taq-contact-map-frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.taq-contact-map-title {
  margin: 0;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  color: var(--taq-text);
  background: #f0f7ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.taq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none !important;
  letter-spacing: 0.3px;
  border: 0;
}

.taq-btn-call {
  background: var(--taq-green);
  color: #fff;
}

.taq-btn-serv {
  background: #33a3dc;
  color: #fff;
}

.taq-card {
  border-radius: 14px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.32);
  background-color: rgba(255, 255, 255, 0.32) !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 30px 80px rgba(5, 20, 40, 0.3);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.taq-hero-fw--footer {
  background: transparent !important;
}

.taq-card--footer,
.taq-hero-fw--footer .taq-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.taq-hero-fw--footer .taq-card * {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}
.taq-hero-fw--footer .taq-card--footer .taq-field input,
.taq-hero-fw--footer .taq-card--footer .taq-field select,
.taq-hero-fw--footer .taq-card--footer .taq-field textarea {
  background: #fff !important;
  color: #0f172a !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08) !important;
  border-radius: 6px;
}
.taq-card--footer {
  color: #fff;
  padding: 0;
  border-radius: 0;
}
.taq-card--footer .taq-card-note,
.taq-card--footer .taq-field label,
.taq-card--footer .taq-field .req,
.taq-card--footer .taq-form button,
.taq-card--footer .taq-submit {
  color: inherit;
}
.taq-card--footer .taq-field input,
.taq-card--footer .taq-field select,
.taq-card--footer .taq-field textarea {
  background: #fff !important;
  color: #1a1a1a !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08) !important;
}
.taq-card--footer .taq-field input {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  box-shadow: none !important;
}
.taq-card--footer .taq-field textarea {
  color: #fff;
}

.taq-card--footer .taq-field label {
  color: #fff !important;
}

.taq-hero-fw--footer .taq-field label {
  color: #fff !important;
}

.taq-hero-fw--footer .taq-formularios-only .taq-field label {
  color: #fff !important;
}

.taq-formularios-only .taq-field label {
  color: #fff !important;
}

.taq-card h3 {
  margin: 2px 0 6px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.6px;
  color: var(--taq-text);
  font-size: 20px;
  text-align: center;
}

.taq-card p {
  margin: 0 0 12px;
  color: rgba(20, 50, 70, 0.85);
  font-size: 12.8px;
  line-height: 1.35;
  text-align: center;
}

.taq-card-note {
  margin-bottom: 16px;
  color: rgba(6, 24, 44, 0.85);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.taq-form-card-header h1,
.taq-form-card-header h2,
.taq-form-card-header h3,
.taq-form-card-header h4,
.taq-form-card-header h5,
.taq-form-card-header h6 {
  margin: 0 0 4px;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  color: #0f2b57;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

.taq-card .taq-form-card-header,
.taq-card .taq-form-card-note-small {
  text-align: center;
}

.taq-form-card-note-small {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(11, 35, 69, 0.7);
  text-align: left;
}

.taq-hero-fw--footer .taq-form-card-header h4,
.taq-hero-fw--footer .taq-form-card-note-small {
  color: #fff;
  text-align: center;
}

.taq-formularios-only .taq-form-card-header h4 {
  color: #fff;
  text-align: center;
}

.taq-formularios-only .taq-form-card-note-small {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.taq-form {
  display: grid;
  gap: 10px;
}

.taq-formularios-only {
  width: 100%;
  background: transparent;
}

.taq-formularios-only-inner {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.taq-formularios-only .taq-field label {
  color: #595959;
}

.taq-formularios-only .taq-field input,
.taq-formularios-only .taq-field select,
.taq-formularios-only .taq-field textarea {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #424242;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.taq-formularios-only .taq-field input::placeholder,
.taq-formularios-only .taq-field textarea::placeholder {
  color: rgba(66, 66, 66, 0.5);
}

.taq-formularios-only .taq-field textarea {
  min-height: 90px;
}

.taq-formularios-only .taq-submit {
  background: #111;
  color: #fff;
}

.taq-field label {
  display: block;
  font-weight: 700;
  color: rgba(10, 45, 70, 0.9);
  font-size: 13px;
  margin-bottom: 5px;
}

.taq-field .req {
  color: #d10000;
  margin-left: 3px;
}

.taq-field input,
.taq-field select,
.taq-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #0f172a;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.taq-field textarea {
  min-height: 110px;
  resize: vertical;
}

.taq-checkgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  padding: 8px 0 0;
}

.taq-checkgrid label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  font-size: 12.6px;
  margin: 0;
}

.taq-checkgrid input {
  width: auto;
}

.taq-submit {
  margin-top: 6px;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: #33a3dc;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.7px;
  cursor: pointer;
}

.taq-msg {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
}

.taq-ok {
  background: #e9f7ef;
  border: 1px solid #b7e1c6;
}

.taq-err {
  background: #fdecea;
  border: 1px solid #f5c6cb;
}

@media (max-width: 980px) {
  .taq-hero-grid {
    grid-template-columns: 1fr;
  }

  .taq-checkgrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .taq-checkgrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .taq-contact-columns {
    grid-template-columns: 1fr;
  }

  .taq-contact-column.taq-contact-form {
    order: 1;
  }

  .taq-contact-column.taq-contact-locations {
    order: 2;
  }

  .taq-contact-column.taq-contact-logo {
    order: 3;
  }
}
.taq-hero-fw--footer {
  background: transparent;
}
.taq-hero-fw--footer::before {
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.05) 100%);
}
.taq-hero-fw--footer .taq-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}
.taq-hero-fw--footer .taq-hero-left {
  display: none;
}
.taq-hero-fw--footer .taq-card--footer {
  margin: 0 auto;
  max-width: 420px;
  width: 100%;
}
.taq-hero-fw--footer {
  padding: 30px clamp(12px, 5vw, 60px);
  min-height: auto;
}
.taq-hero-fw--footer {
  background: transparent !important;
}

.taq-hero-fw--footer::before {
  background: transparent !important;
}
