/* ==========================================================================
   CONTACT US COMPONENT PAGE GRID ARCHITECTURE
   ========================================================================== */
.tb-contact-page-wrapper {
  background-color: #f8fafc;
}

.tb-contact-grid-section {
  padding: 60px 0;
}

.tb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Info Details Panel Layout styles */
.tb-contact-info-panel {
  padding-right: 20px;
}

.tb-contact-info-panel h2 {
  font-size: 32px;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 700;
}

.panel-intro-text {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 35px;
}

.info-details-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-detail-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-icon-box {
  background-color: #446084;
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text-box h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: #1e293b;
}

.info-text-box p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.info-text-box p a {
  color: #446084;
  text-decoration: none;
}

.info-text-box p a:hover {
  text-decoration: underline;
}

.info-text-box span {
  font-size: 13px;
  color: #94a3b8;
}

/* Form Panel Card Element Overrides */
.tb-contact-form-panel .form-card-inner {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.tb-contact-form-panel h3 {
  margin: 0 0 8px 0;
  font-size: 24px;
  color: #1e293b;
}

.tb-contact-form-panel p {
  margin: 0 0 25px 0;
  color: #64748b;
}

/* Clean Custom Form 7 Component Field Overrides */
.tb-cf7-render-zone input[type="text"],
.tb-cf7-render-zone input[type="email"],
.tb-cf7-render-zone textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background-color: #f8fafc;
  color: #334155;
  font-size: 15px;
  margin-bottom: 15px;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.tb-cf7-render-zone input:focus,
.tb-cf7-render-zone textarea:focus {
  border-color: #446084;
  background-color: #ffffff;
  outline: none;
}

.tb-cf7-render-zone input[type="submit"] {
  background-color: #446084;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
}

.tb-cf7-render-zone input[type="submit"]:hover {
  background-color: #2c3f58;
}

/* Responsive Grid Adaptation */
@media (max-width: 991px) {
  .tb-contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .tb-contact-info-panel {
    padding-right: 0;
  }
}
