/* Contact Page Styles */
.vl-contact-area {
  background: #f8f9fa;
}

.vl-contact-form-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.vl-contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
}

.vl-contact-form .form-control:focus {
  border-color: #161A40;
  box-shadow: 0 0 0 0.2rem rgba(22, 26, 64, 0.25);
  outline: none;
}

.vl-contact-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.vl-contact-info-wrapper {
  padding: 50px 30px;
  background: linear-gradient(135deg, #161A40 0%, #1a1f4a 100%);
  border-radius: 15px;
  color: #fff;
  height: 100%;
}

.vl-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.vl-contact-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vl-contact-info-icon i {
  color: #fff;
  font-size: 20px;
}

.vl-contact-info-content h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 18px;
}

.vl-contact-info-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.vl-contact-info-content a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.vl-contact-info-content a:hover {
  color: #fff;
}

.vl-map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vl-map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .vl-contact-info-item {
    margin-bottom: 20px;
  }
  
  .vl-map-wrapper iframe {
    height: 300px;
  }
}

/* Alert styles */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 8px;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

/* Button loading state */
.btn-primary2:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}