/* Contact Page Styles */

.contact-submit-btn {
  width: 100%;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-info-card {
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-color: #fff; /* Assuming cards are white, though not explicitly in inline styles, it's implied by 'card' class usually */
}

.contact-info-card:last-child {
  margin-bottom: 0;
}

.contact-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.contact-icon {
  color: var(--primary-blue);
  margin-right: 0.5rem;
}

.contact-link-wrapper {
  margin: 0;
  font-size: 0.95rem;
}

.contact-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-note {
  margin: 0.5rem 0 0 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.contact-details {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Enhanced Contact Item Styles */
.contact-item {
  display: flex;
  align-items: center;
  gap: 24px; /* Increased gap for better spacing */
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.contact-item:hover {
  background-color: #f8f9fa;
  transform: translateX(5px);
}

.contact-icon-circle {
  width: 56px; /* Slightly larger icon for better proportion */
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Softer, larger shadow */
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon-circle {
  transform: scale(1.1);
}

.contact-label {
  color: #1a1a3c;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: #4a4a6a;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-value:hover {
  color: var(--primary-blue);
}

.icon-teal {
  background: linear-gradient(135deg, #00b8b8, #008f8f);
}

.icon-orange {
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
}

.icon-green {
  background: linear-gradient(135deg, #00c48c, #00a374);
}

/* Unified Contact Card Styles */
.contact-unified-card {
  border-radius: 15px;
  background-color: #fff;
}

.contact-heading,
.contact-label {
  color: #1a1a3c;
}

.icon-orange {
  background-color: #ff6b35;
}

.icon-green {
  background-color: #00c48c;
}

.contact-form-input {
  padding: 12px !important; /* Force padding override if needed */
}

.contact-form-textarea {
  padding: 12px !important;
  min-height: 120px;
}

/* Business Inquiry Hero Section Alignment Fix */

/* Business Inquiry Hero Section Center Alignment Fix */
.hero-section,
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 4rem 0;
  text-align: center;
}

.hero-title,
.hero h1 {
  text-align: center;
  margin: 0 auto;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.hero-subtitle,
.hero p {
  color: #e0eafc;
  font-size: 1.25rem;
  margin-top: 1rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-teal {
  background-color: #00b8b8;
  border: none;
  color: white;
}

.btn-teal:hover {
  background-color: #009999;
  color: white;
}

.text-pre-line {
  white-space: pre-line;
}
