/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* Main Container */
.contact-container {
  min-height: 100vh;
  margin: 15px 0;
}

/* Left Column - Contact Information */
.contact-info-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 0;
  position: relative;
  border-radius: 2rem;
}

.contact-info-content {
  padding: 60px 40px;
  height: 100%;
  min-height: 100vh;
}

.contact-info-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: black;
}

.contact-subtitle {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  color: whitesmoke;
}

/* Info Cards */
.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 20px;
  color: blue;
}

.info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: black;
}

.info-content p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 4px;
  opacity: 0.9;
  color: whitesmoke;
}

.work-hours {
  font-size: 14px;
  opacity: 0.8;
}

/* Social Section */
.social-section {
  margin-top: 40px;
}

.social-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: blue;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.row.contact-container {
  display: block !important;
}
/* Right Column - Contact Form */
.contact-form-section {
  background: white;
  padding: 0;
}

.form-container {
  padding: 60px 40px;
  height: 100%;
  min-height: 100vh;
}

.contact-form-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.form-subtitle {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Form Styles */
.contact-form {
  max-width: 100%;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.required-icon {
  color: #ef4444;
  font-size: 8px;
  margin-left: 4px;
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: none;
}

.form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
  color: #9ca3af;
  font-size: 14px;
}

textarea.form-control {
  height: 120px;
  resize: vertical;
  padding-top: 12px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
}

/* Submit Button */
.btn-send {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border: none;
  color: white;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-send:hover,
.btn-send:focus {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  color: white;
}

.btn-send:active {
  transform: translateY(0);
}

/* Error Messages */
.error-message {
  color: #ef4444;
  font-size: 13px;
  margin-top: 6px;
  display: block;
}

.form-group.has-error .form-control {
  border-color: #ef4444;
}

/* Success Alert */
.alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-info-content,
  .form-container {
    min-height: auto;
    padding: 40px 30px;
  }

  .contact-info-section h2,
  .contact-form-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .contact-info-content,
  .form-container {
    padding: 30px 20px;
  }

  .contact-info-section h2,
  .contact-form-section h2 {
    font-size: 24px;
  }

  .info-card {
    padding: 20px;
  }

  .form-control {
    height: 44px;
  }

  .btn-send {
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .contact-info-content,
  .form-container {
    padding: 20px 15px;
  }

  .info-card {
    gap: 1rem;
  }

  .info-icon {
    margin-right: 0;
    margin-bottom: 12px;
  }
}
