/* Standardized Form Styles for Prathmesh Roadlines */

/* Base Form Styling */
.standard-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.standard-form:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Form Groups */
.standard-form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.standard-form .row > .col-md-6,
.standard-form .row > .col-xl-6,
.standard-form .row > .col-xl-3 {
  margin-bottom: 20px;
}

/* Input Fields */
.standard-form input[type="text"],
.standard-form input[type="email"],
.standard-form input[type="tel"],
.standard-form input[type="number"],
.standard-form select,
.standard-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  background: #fafafa;
  transition: all 0.3s ease;
  outline: none;
}

.standard-form input:focus,
.standard-form select:focus,
.standard-form textarea:focus {
  border-color: #f39c12;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.1);
}

.standard-form input::placeholder,
.standard-form textarea::placeholder {
  color: #999;
  font-weight: 400;
}

/* Textarea */
.standard-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Select Dropdown */
.standard-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  padding-right: 50px;
}

/* Radio Buttons */
.standard-form .form-check {
  margin-bottom: 15px;
}

.standard-form .form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid #e8e8e8;
  background-color: #fafafa;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.standard-form .form-check-input:checked {
  background-color: #f39c12;
  border-color: #f39c12;
}

.standard-form .form-check-label {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  margin-left: 5px;
}

/* Submit Button */
.standard-form .submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.standard-form .submit-btn:hover {
  background: linear-gradient(135deg, #e67e22, #d35400);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.standard-form .submit-btn:active {
  transform: translateY(0);
}

.standard-form .submit-btn .spinner-border {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

/* Form Titles */
.standard-form .form-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
}

.standard-form .form-subtitle {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.6;
}

/* Success/Error Messages */
.form-message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: 500;
  text-align: center;
  animation: slideInUp 0.3s ease;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-message.info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Loading State */
.standard-form.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .standard-form {
    padding: 20px;
    margin: 15px;
  }

  .standard-form input,
  .standard-form select,
  .standard-form textarea {
    padding: 12px 15px;
    font-size: 14px;
  }

  .standard-form .submit-btn {
    padding: 15px 25px;
    font-size: 15px;
  }

  .standard-form .form-title {
    font-size: 20px;
  }
}

/* Enhanced Sidebar Form Styles */
.enhanced-sidebar-form {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  overflow: hidden;
  position: relative;
}

.enhanced-sidebar-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #ff9800,
    #f44336,
    #2196f3,
    #4caf50,
    #ff9800
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.enhanced-sidebar-form .form-header {
  background: linear-gradient(135deg, #ff9800 0%, #f44336 100%);
  padding: 25px 30px;
  text-align: center;
  color: white;
}

.enhanced-sidebar-form .form-header h4 {
  margin: 0 0 8px 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.enhanced-sidebar-form .form-header p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}

.enhanced-sidebar-form .contact-form-validated {
  padding: 30px;
}

.enhanced-sidebar-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.enhanced-sidebar-form .form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.enhanced-sidebar-form .form-section {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.enhanced-sidebar-form .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
  border-left: 4px solid #ff9800;
}

.enhanced-sidebar-form .section-title i {
  color: #ff9800;
  font-size: 1.1rem;
}

.enhanced-sidebar-form .section-title span {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.enhanced-sidebar-form .input-with-icon {
  position: relative;
}

.enhanced-sidebar-form .input-with-icon input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #495057;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.enhanced-sidebar-form .input-with-icon input:focus {
  outline: none;
  border-color: #ff9800;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.15);
  transform: translateY(-2px);
}

.enhanced-sidebar-form .input-with-icon input::placeholder {
  color: #adb5bd;
  font-weight: 400;
}

.enhanced-sidebar-form .input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #adb5bd;
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
}

.enhanced-sidebar-form .input-with-icon input:focus + .input-icon {
  color: #ff9800;
  transform: translateY(-50%) scale(1.1);
}

.enhanced-sidebar-form .enhanced-submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #ff9800 0%, #f44336 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.enhanced-sidebar-form .enhanced-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.enhanced-sidebar-form .enhanced-submit-btn:hover::before {
  left: 100%;
}

.enhanced-sidebar-form .enhanced-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
  background: linear-gradient(135deg, #f44336 0%, #ff9800 100%);
}

.enhanced-sidebar-form .enhanced-submit-btn:active {
  transform: translateY(-1px);
}

.enhanced-sidebar-form .enhanced-submit-btn .btn-icon {
  transition: transform 0.3s ease;
}

.enhanced-sidebar-form .enhanced-submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Responsive Design for Enhanced Sidebar Form */
@media (max-width: 768px) {
  .enhanced-sidebar-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .enhanced-sidebar-form .form-row .form-group {
    margin-bottom: 15px;
  }

  .enhanced-sidebar-form .contact-form-validated {
    padding: 20px;
  }

  .enhanced-sidebar-form .form-header {
    padding: 20px;
  }

  .enhanced-sidebar-form .form-header h4 {
    font-size: 1.2rem;
  }
}

/* Sidebar Form Styles */
.sidebar-form {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.sidebar-form .form-group {
  margin-bottom: 20px;
}

.sidebar-form input,
.sidebar-form textarea {
  padding: 12px 15px;
  border: 1px solid #e8e8e8;
  border-radius: 7px;
  font-size: 14px;
  width: 100%;
}

.sidebar-form .submit-btn {
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 7px;
  border: none;
  width: 100%;
}

/* Animations */
@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Field Validation Styles */
.standard-form .field-error {
  border-color: #e74c3c !important;
  background: #fdf2f2 !important;
}

.standard-form .field-success {
  border-color: #27ae60 !important;
  background: #f2fdf5 !important;
}

/* Required Field Indicator */
.standard-form .required-star {
  color: #e74c3c;
  margin-left: 3px;
}

/* Form Section Headers */
.standard-form .section-header {
  border-bottom: 2px solid #f39c12;
  padding-bottom: 10px;
  margin-bottom: 25px;
  margin-top: 30px;
}

.standard-form .section-header h4 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Enhanced Contact Page Form Styles */

/* Contact Page Form Container */
.contact-page__right .standard-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact-page__right .standard-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #ff9800,
    #f44336,
    #2196f3,
    #4caf50,
    #ff9800
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Form Title and Subtitle */
.contact-page__right .form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.contact-page__right .form-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff9800, #f44336);
  border-radius: 2px;
}

.contact-page__right .form-subtitle {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Section Headers */
.contact-page__right .section-header {
  margin: 35px 0 20px 0;
  padding: 15px 0;
  border-bottom: 2px solid #e9ecef;
  position: relative;
}

.contact-page__right .section-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-page__right .section-header h4::before {
  content: "";
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #ff9800, #f44336);
  border-radius: 2px;
}

/* Form Groups with Enhanced Styling */
.contact-page__right .form-group {
  margin-bottom: 20px;
  position: relative;
}

.contact-page__right .form-group input,
.contact-page__right .form-group select,
.contact-page__right .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #495057;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-page__right .form-group input:focus,
.contact-page__right .form-group select:focus,
.contact-page__right .form-group textarea:focus {
  outline: none;
  border-color: #ff9800;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.15);
  transform: translateY(-2px);
}

.contact-page__right .form-group input::placeholder,
.contact-page__right .form-group textarea::placeholder {
  color: #adb5bd;
  font-weight: 400;
}

/* Enhanced Select Dropdown */
.contact-page__right .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9800' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  padding-right: 50px;
}

.contact-page__right .form-group select:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* Enhanced Textarea */
.contact-page__right .form-group textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

/* Radio Button Group Styling */
.contact-page__form-section .standard-form .form-check-inline {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 10px;
  padding: 6px 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.contact-page__form-section .standard-form .form-check-inline:hover {
  background: #f8f9fa;
  border-color: #000000;
}

.contact-page__form-section .standard-form .form-check-input[type="radio"] {
  width: 14px;
  height: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.contact-page__form-section
  .standard-form
  .form-check-input[type="radio"]:checked {
  background-color: #000000;
  border-color: #000000;
}

.contact-page__form-section
  .standard-form
  .form-check-input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
}

.contact-page__form-section .standard-form .form-check-label {
  font-weight: 400;
  color: #000000;
  cursor: pointer;
  transition: color 0.2s ease;
  margin-bottom: 0;
  font-size: 13px;
}

.contact-page__form-section
  .standard-form
  .form-check-input[type="radio"]:checked
  + .form-check-label {
  color: #000000;
  font-weight: 500;
}

/* Enhanced Submit Button */
.contact-page__right .submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #ff9800 0%, #f44336 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.contact-page__right .submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-page__right .submit-btn:hover::before {
  left: 100%;
}

.contact-page__right .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
  background: linear-gradient(135deg, #f44336 0%, #ff9800 100%);
}

.contact-page__right .submit-btn:active {
  transform: translateY(-1px);
}

.contact-page__right .submit-btn .btn-text {
  position: relative;
  z-index: 1;
}

.contact-page__right .submit-btn i {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-page__right .submit-btn:hover i {
  transform: translateX(5px);
}

/* Loading State */
.contact-page__right .submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-page__right .submit-btn .spinner-border-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
  margin-right: 8px;
}

/* Success/Error Messages */
.contact-page__right .form-message {
  padding: 15px 20px;
  border-radius: 10px;
  margin-top: 20px;
  font-weight: 500;
  animation: slideInUp 0.3s ease;
}

.contact-page__right .form-message.success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact-page__right .form-message.error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Sidebar Overlay Background - Fixed */
.xs-overlay.xs-bg-black {
  background: rgba(44, 62, 80, 0.7) !important;
  backdrop-filter: blur(8px);
}

/* Contact Page Background - Ensure Light Theme */
.contact-page {
  background: #ffffff !important;
  padding: 60px 0;
}

.contact-page__left {
  padding-right: 30px;
}

.contact-page__right {
  padding-left: 30px;
}

/* Map Container Styling - Remove Dark Background */
.contact-page__left .google-map__contact,
.contact-page__left .google-map__one {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 600px;
  border: 3px solid #ffffff;
  background: #ffffff;
}

/* Ensure form has light background */
.contact-page__right .standard-form {
  background: #ffffff !important;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Sidebar Widget Enhancement - Light Theme */
.xs-sidebar-widget {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
  border-radius: 20px 0 0 20px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.xs-sidebar-widget .sidebar-form {
  background: transparent !important;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.xs-sidebar-widget .form-title {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Remove any dark backgrounds from all form elements */
.standard-form,
.sidebar-form,
.contact-form-validated {
  /* background: #ffffff !important; */
}

/* Ensure all input fields have light backgrounds */
.standard-form input,
.standard-form select,
.standard-form textarea,
.sidebar-form input,
.sidebar-form textarea {
  background: #ffffff !important;
  color: #495057 !important;
}

/* New Layout Styles for Contact Page */
.contact-page__form-section {
  margin-bottom: 40px;
}

.contact-page__map-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  overflow: hidden;
  position: relative;
}

.contact-page__map-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #ff9800,
    #f44336,
    #2196f3,
    #4caf50,
    #ff9800
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.map-header {
  background: linear-gradient(135deg, #ff9800 0%, #f44336 100%);
  padding: 25px 30px;
  text-align: center;
  color: white;
}

.map-header h3 {
  margin: 0 0 8px 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.map-header p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}

.contact-page__left {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}

.contact-page__left .google-map__one {
  border-radius: 0 0 16px 16px;
  height: 500px;
  border: none;
  box-shadow: none;
  width: 100%;
}

/* Enhanced spacing between sections */
.contact-page__inner > .row:first-child {
  margin-bottom: 40px;
}

.contact-page__inner > .row:last-child {
  margin-bottom: 0;
}

/* Remove flexbox layout that was causing side-by-side */
.contact-page__inner {
  display: block !important;
}

.contact-page__inner .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Responsive adjustments for new layout */
@media (max-width: 991px) {
  .contact-page__form-section {
    margin-bottom: 30px;
  }

  .contact-page__inner > .row:first-child {
    margin-bottom: 30px;
  }

  .contact-page__left .google-map__one {
    height: 400px;
  }

  .map-header {
    padding: 20px;
  }

  .map-header h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .contact-page__form-section {
    margin-bottom: 25px;
  }

  .contact-page__inner > .row:first-child {
    margin-bottom: 25px;
  }

  .contact-page__left .google-map__one {
    height: 350px;
  }

  .map-header {
    padding: 15px;
  }

  .map-header h3 {
    font-size: 1.1rem;
  }

  .map-header p {
    font-size: 0.85rem;
  }
}

/* Enhanced Contact Page Background */
.contact-page {
  position: relative;
  display: block;
  padding: 60px 0 120px;
  background: #ffffff;
  z-index: 1;
}

.contact-page__inner {
  position: relative;
  display: block;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
}

/* Ensure equal height for form and map */
@media (min-width: 1200px) {
  .contact-page__right .standard-form {
    min-height: 600px;
    display: flex;
    flex-direction: column;
  }

  .contact-page__right .standard-form .form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .contact-page__left {
    padding-right: 15px;
  }

  .contact-page__right {
    padding-left: 15px;
  }

  .contact-page__inner {
    display: flex;
    align-items: stretch;
  }

  .contact-page__left,
  .contact-page__right {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .contact-page__left .google-map__one {
    flex: 1;
    height: auto !important;
    min-height: 600px;
  }

  .contact-page__right .standard-form {
    flex: 1;
    height: auto !important;
    min-height: 600px;
  }
}

/* Enhanced Form Sections */
.contact-page__right .standard-form .form-content {
  padding: 10px 0;
}

.contact-page__right .standard-form .section-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin: 25px -15px 20px -15px;
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid #ff9800;
}

.contact-page__right .standard-form .section-header:first-of-type {
  margin-top: 0;
}

/* Improved Input Group Styling */
.contact-page__right .standard-form .row {
  margin-bottom: 5px;
}

.contact-page__right .standard-form .form-group {
  position: relative;
}

.contact-page__right .standard-form .form-group input:focus + .input-icon,
.contact-page__right .standard-form .form-group select:focus + .input-icon,
.contact-page__right .standard-form .form-group textarea:focus + .input-icon {
  color: #ff9800;
  transform: scale(1.1);
}

/* Add icons to inputs */
.contact-page__right .standard-form .form-group.input-with-icon {
  position: relative;
}

.contact-page__right .standard-form .form-group.input-with-icon .input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #adb5bd;
  transition: all 0.3s ease;
  pointer-events: none;
}

.contact-page__right .standard-form .form-group.input-with-icon input {
  padding-right: 45px;
}

/* Enhanced Button Container */
.contact-page__right .standard-form .submit-btn-container {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

/* Contact Info Cards Enhancement */
.contact-info__single {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff9800, #f44336);
}

.contact-info__single:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-info__single .contact-info__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff9800, #f44336);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-info__single .contact-info__icon i {
  color: #ffffff;
  font-size: 24px;
}

.contact-info__single .contact-info__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.contact-info__single .contact-info__text {
  color: #6c757d;
  line-height: 1.6;
}

.contact-info__single .contact-info__text a {
  color: #ff9800;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info__single .contact-info__text a:hover {
  color: #f44336;
}

/* Responsive Design for Contact Page */
@media (max-width: 991px) {
  .contact-page__left,
  .contact-page__right {
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .contact-page__left .google-map__one {
    height: 400px;
  }

  .contact-page__right .standard-form {
    min-height: auto;
    height: auto;
  }

  .contact-page__inner {
    flex-direction: column;
  }

  .contact-page__left,
  .contact-page__right {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 40px 0;
  }

  .contact-info__single {
    margin-bottom: 20px;
    padding: 25px;
  }

  .contact-page__left .google-map__one {
    height: 350px;
  }

  .contact-page__inner {
    padding: 20px;
  }
}

/* Enhanced Form Sections */
.contact-page__right .standard-form .form-content {
  padding: 10px 0;
}

.contact-page__right .standard-form .section-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin: 25px -15px 20px -15px;
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid #ff9800;
}

.contact-page__right .standard-form .section-header:first-of-type {
  margin-top: 0;
}

/* Improved Input Group Styling */
.contact-page__right .standard-form .row {
  margin-bottom: 5px;
}

.contact-page__right .standard-form .form-group {
  position: relative;
}

.contact-page__right .standard-form .form-group input:focus + .input-icon,
.contact-page__right .standard-form .form-group select:focus + .input-icon,
.contact-page__right .standard-form .form-group textarea:focus + .input-icon {
  color: #ff9800;
  transform: scale(1.1);
}

/* Add icons to inputs */
.contact-page__right .standard-form .form-group.input-with-icon {
  position: relative;
}

.contact-page__right .standard-form .form-group.input-with-icon .input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #adb5bd;
  transition: all 0.3s ease;
  pointer-events: none;
}

.contact-page__right .standard-form .form-group.input-with-icon input {
  padding-right: 45px;
}

/* Enhanced Button Container */
.contact-page__right .standard-form .submit-btn-container {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

/* Contact Info Cards Enhancement */
.contact-info__single {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff9800, #f44336);
}

.contact-info__single:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-info__single .contact-info__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff9800, #f44336);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-info__single .contact-info__icon i {
  color: #ffffff;
  font-size: 24px;
}

.contact-info__single .contact-info__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.contact-info__single .contact-info__text {
  color: #6c757d;
  line-height: 1.6;
}

.contact-info__single .contact-info__text a {
  color: #ff9800;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info__single .contact-info__text a:hover {
  color: #f44336;
}

/* Responsive Design for Contact Page */
@media (max-width: 991px) {
  .contact-page__left,
  .contact-page__right {
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .contact-page__left .google-map__contact {
    height: 400px;
  }

  .contact-page__right .standard-form {
    min-height: auto;
    height: auto;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 40px 0;
  }

  .contact-info__single {
    margin-bottom: 20px;
    padding: 25px;
  }

  .contact-page__left .google-map__contact {
    height: 350px;
  }
}

/* Additional Enhanced Form Styling for Attractive UI */
.contact-page__form-section .standard-form .form-group {
  margin-bottom: 25px;
}

.contact-page__form-section .standard-form .form-group input,
.contact-page__form-section .standard-form .form-group select,
.contact-page__form-section .standard-form .form-group textarea {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
  transition: all 0.2s ease;
  outline: none;
}

.contact-page__form-section .standard-form .form-group input:focus,
.contact-page__form-section .standard-form .form-group select:focus,
.contact-page__form-section .standard-form .form-group textarea:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.contact-page__form-section .standard-form .form-group input::placeholder,
.contact-page__form-section .standard-form .form-group textarea::placeholder {
  color: #999999;
  font-weight: 400;
}

.contact-page__form-section
  .standard-form
  .form-group.input-with-icon
  .input-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #adb5bd;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
  width: 20px;
  text-align: center;
}

.contact-page__form-section .standard-form .form-group.input-with-icon input {
  padding-right: 55px;
  padding-left: 55px;
}

.contact-page__form-section
  .standard-form
  .form-group.input-with-icon
  input:focus
  + .input-icon {
  color: #ff9800;
  transform: translateY(-50%) scale(1.1);
}

.contact-page__form-section .standard-form .form-check-inline {
  display: inline-flex;
  align-items: center;
  margin-right: 25px;
  margin-bottom: 10px;
  padding: 10px 15px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-page__form-section .standard-form .form-check-inline:hover {
  background: #ffffff;
  border-color: #ff9800;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.1);
}

.contact-page__form-section .standard-form .submit-btn-container {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e9ecef;
}

.contact-page__form-section .standard-form .submit-btn {
  width: 50%;
  margin: 0 auto;
  padding: 14px 20px;
  /* background: #000000; */
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-page__form-section .standard-form .submit-btn:hover {
  background: #333333;
  transform: translateY(-1px);
}

.contact-page__form-section .standard-form .submit-btn:active {
  background: #000000;
  transform: translateY(0px);
}

.contact-page__form-section .standard-form .submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-page__form-section .standard-form .submit-btn:hover::before {
  left: 100%;
}

.contact-page__form-section .standard-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
  background: linear-gradient(135deg, #f44336 0%, #ff9800 100%);
}

.contact-page__form-section .standard-form .submit-btn:active {
  transform: translateY(-1px);
}

.contact-page__form-section .standard-form .submit-btn .btn-text {
  position: relative;
  z-index: 1;
}

.contact-page__form-section .standard-form .submit-btn i {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.contact-page__form-section .standard-form .submit-btn:hover i {
  transform: translateX(6px);
}
