.quick-contact-cards a {
  text-decoration: none;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.quick-contact-cards a:hover {
  color: var(--theme-primary);
}


.contact-section {
  --primary: #30559e;
  --text-main: #4a5064;
  --text-muted: #7c87ac;
  --input-label: #6d758f;
  --border-color: #f1f3f7;
  --card-border: rgba(48, 85, 158, 0.5);
}

/* Layout Grid */
.grid-layout {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: stretch;
}

.grid-layout .image-wrapper {
  flex: 1;
  margin-bottom: 18px;
}

.grid-layout .contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
}

/* Quick Contact Cards */
.grid-layout .quick-contact-cards {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.grid-layout .contact-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  box-shadow: 0px 0.5px 2px rgba(25, 33, 61, 0.1);
}

.card-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.card-text strong {
  font-weight: 600;
}

/* Form Styling */
.form-wrapper {
  height: 100%;
  background: white;
  border: 1px solid #e1e4ed;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0px 1px 4px rgba(25, 33, 61, 0.08);
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.full-width {
  margin-bottom: 24px;
}

.input-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--input-label);
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 18px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
  box-shadow: 0px 1px 4px rgba(25, 33, 61, 0.08);
}

.input-group textarea {
  height: 92px;
  resize: none;
}

.input-group select {
  width: 100%;
  padding: 18px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
  box-shadow: 0px 1px 4px rgba(25, 33, 61, 0.08);
}

.input-group select:hover {
  cursor: pointer;
}

.submit-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0px 1px 4px rgba(25, 33, 61, 0.08);
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-layout {
    flex-direction: column;
    align-items: center;
  }

  .info-column,
  .image-wrapper {
    width: 100%;
    max-width: 609px;
  }
	
  .form-row {
    flex-direction: column;
	gap: 24px;
  }
}

@media (max-width: 485px) {
  .grid-layout .quick-contact-cards {
    flex-direction: column;
  }
}