/* Contact Form Enhancements */
.contact-form-card {
  background: linear-gradient(135deg, #000000, #333333);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInScale 0.8s ease forwards;
  text-align: right; /* Added to align text right */
  margin-left: auto; /* Added to push form to right */
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.contact-form-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff !important;
  text-align: right; /* Ensure heading is right aligned */
}

/* Floating labels */
.form-group {
  position: relative;
  margin-bottom: 1.75rem;
}

.form-group label {
  position: absolute;
  top: 14px;
  right: 15px; /* Changed from left to right for right alignment */
  color: #666;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  background: transparent;
  padding: 0 5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end; /* Align label content to right */
}

.form-group label i {
  font-size: 1.25rem;
  color: #000000;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-left: 0.5rem; /* Add spacing on left instead of right */
  margin-right: 0; /* Remove right margin */
}

/* Message textarea icon fix */
textarea.form-control {
  min-height: 120px;
  padding-right: 2.5rem; /* Changed from padding-left to padding-right */
  position: relative;
  z-index: 1;
}

textarea.form-control + label i {
  position: absolute;
  right: 15px; /* Changed from left to right */
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
  pointer-events: none;
  z-index: 3;
}

/* Adjust label for textarea */
textarea.form-control:focus + label,
textarea.form-control:not(:placeholder-shown) + label {
  top: -8px;
  right: 10px; /* Changed from left to right */
  font-size: 0.85rem;
  color: #000000 !important;
  background: #ffffff;
  border-radius: 4px;
}

/* Form control general styles */
.form-control {
  border: 1.5px solid #ccc;
  border-radius: 8px;
  padding: 1.25rem 1rem 0.5rem 1rem;
  font-size: 1rem;
  color: #000;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  direction: rtl; /* Added to reverse input text direction for right alignment */
  text-align: right; /* Align input text to right */
}

.form-control:focus {
  border-color: #000000 !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) !important;
  outline: none !important;
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
  top: -8px;
  right: 10px; /* Changed from left to right */
  font-size: 0.85rem;
  color: #000000 !important;
  background: #ffffff;
  border-radius: 4px;
}

/* Submit button */
.btn-primary {
  background-color: #000000 !important;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin: 1.5rem auto 0 auto;
  width: 100%;
  max-width: 300px;
  color: #fff !important;
}

.btn-primary:hover {
  background-color: grey !important;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6) !important;
  cursor: pointer;

}

/* Contact Info Styling */
.contact-info {
  max-width: 400px;
  margin: 2rem auto 0 auto;
  font-family: 'Inter', sans-serif;
  color: #000000;
}

.contact-info h3 {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-align: right; /* Right align contact info heading */
}

.contact-info-list {
  margin-top: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  justify-content: flex-end; /* Align contact info items to right */
}

.contact-info-icon {
  margin-left: 1rem; /* Adjust margin for right alignment */
  margin-right: 0;
  color: #000000;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  margin: 0 0 0.25rem 0;
  font-weight: 600;
  color: #000000;
  text-align: right; /* Right align contact info content heading */
}

.contact-info-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #000000;
  text-align: right; /* Right align contact info content text */
}

/* Map Container */
.map-wrapper {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  animation: fadeInScale 0.8s ease forwards;
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 16px;
}

.map-wrapper:hover iframe {
  transform: scale(1.02);
}
</create_file>
