/* Base Form Reset & Foundation */
.enhanced-form {
  color: #c6c6c6;
}

.enhanced-form * {
  box-sizing: border-box;
}

/* ==================== CONTACT FORM DARK STYLING ==================== */
/* Contact Form Dark Styling - Match Offcanvas */
.contact-form-dark {
  padding: 32px;
}

.contact-form-dark .form-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form-dark .form-control {
  background: transparent;
  border: 1.5px solid #a52422;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  min-height: 44px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-dark .form-control:focus {
  border-color: #a52422;
  box-shadow: 0 0 0 3px rgba(165, 36, 34, 0.2),
    0 4px 12px rgba(165, 36, 34, 0.1);
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.contact-form-dark .form-control::placeholder {
  color: #bbb !important;
  opacity: 1 !important;
}

.contact-form-dark select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' 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") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px 16px !important;
  padding-right: 45px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

.contact-form-dark select.form-control:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a52422' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

.contact-form-dark textarea.form-control {
  min-height: 100px;
  resize: vertical;
  line-height: 1.6;
}

.contact-form-dark .help-block.with-errors {
  color: #e74c3c;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.contact-form-dark .form-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.contact-form-dark .messages .alert {
  border-radius: 12px;
  padding: 16px 20px;
  font-weight: 500;
  border: none;
  margin-bottom: 24px;
}

.contact-form-dark .messages .alert-success {
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(46, 204, 113, 0.1));
  color: #27ae60;
  border-left: 4px solid #27ae60;
}

.contact-form-dark .messages .alert-danger {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
  color: #e74c3c;
  border-left: 4px solid #e74c3c;
}

.contact-form-dark .loading-indicator {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  margin: 16px 0;
}

.contact-form-dark .loading-indicator .spinner-border {
  border-color: #a52422;
  border-right-color: transparent;
}

.contact-form-dark .loading-indicator p {
  color: rgba(255, 255, 255, 0.9);
  margin: 8px 0 0 0;
}

/* Force transparent background for email and select fields */
.contact-form-dark input[type="email"] {
  background: transparent !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.contact-form-dark select {
  background: transparent !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* ==================== CURSOR STYLING FOR FORM ELEMENTS ==================== */
/* Custom Cursor for All Clickable Form Elements */
.btn-close,
[data-bs-dismiss],
button[data-bs-toggle],
button[type="submit"],
.btn,
input[type="submit"],
input[type="button"] {
  cursor: pointer !important;
}

/* ==================== BUTTON STYLING ==================== */
/* Glow button styling - matching offcanvas */
.glow-on-hover {
  width: 220px;
  height: 50px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000;
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

/* Red button styling for contact form - matching the big red buttons */
.contact-form-red-button {
  width: 180px;
  height: 44px;
  border: none;
  padding: 8px 16px;
  border-radius: 1rem .25rem 1rem .25rem;
  background-color: #a52422;
  color: #e8eddf;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  box-sizing: border-box;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form-red-button:hover {
  background-color: #e8eddf;
  color: #a52422;
  transform: scale(1.02);
}

.contact-form-red-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(165, 36, 34, 0.3);
}

/* ==================== SELECT STYLING FROM STYLES-LUXILLAG.CSS ==================== */
/* General select styling */
select {
  color: #e7e7e7;
  appearance: none;
  border: 1px solid #e4e4e4;
  background-color: #12121200;
  border-radius: 0.25rem;
  padding: 0.75rem 2.25rem 0.75rem 0.75rem;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.343146 0.999884L6 6.65674L11.6569 0.999884L10.9497 0.292777L6 5.24252L1.05025 0.292777L0.343146 0.999884Z' fill='%23666'/%3E%3C/svg%3E");
}

select:active {
  border-color: #bb2121;
}

select:focus {
  border-color: #ff0000;
}

select:focus:hover {
  border-color: #e52c1483;
}

/* ==================== FOOTER MAILCHIMP STYLING FROM STYLES-LUXILLAG.CSS ==================== */
/* Footer Mailchimp Styling */
#mc_embed_signup_footer,
#mc_embed_signup_footer * {
  all: unset;
  box-sizing: border-box;
  background: transparent !important;
  font-family: 'Poppins', 'Sora', 'Inter', sans-serif !important;
}

#mc_embed_signup_footer label {
  color: #e8eddfff !important;
  font-weight: 500;
}

#mc_embed_signup_footer input,
#mc_embed_signup_footer select {
  font-size: 1rem !important;
}

#mc_embed_signup_footer input[type="email"],
#mc_embed_signup_footer select {
  background: #222 !important;
  color: #e8eddfff !important;
  border: 1px solid #a52422ff !important;
  border-radius: 8px !important;
  padding: 10px !important;
  margin-bottom: 1em !important;
  font-size: 1rem !important;
  width: 100% !important;
}

#mc_embed_signup_footer input[type="email"]::placeholder {
  color: #bbb !important;
  opacity: 1 !important;
}

#mc_embed_signup_footer .button,
#mc_embed_signup_footer input[type="submit"] {
  width: 180px !important; 
  height: 44px;
  border: none;
  padding: 8px 16px;
  border-radius: 1rem .25rem 1rem .25rem;
  background-color: #a52422 !important;
  color: #e8eddf;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  box-sizing: border-box;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#mc_embed_signup_footer .button:hover,
#mc_embed_signup_footer input[type="submit"]:hover {
  background: #e8eddfff !important;
  color: #a52422ff !important;
}

#mc_embed_signup_footer .asterisk {
  color: #a52422ff !important;
  font-weight: bold !important;
}

#mc_embed_signup_footer .mc-field-group {
  margin-bottom: 1.2em !important;
}

#mc_embed_signup_footer .clear.mt-3 {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  margin-top: 0.5rem !important;
  margin-bottom: 1rem !important;
}

#mc_embed_signup_footer #mce-responses .response {
  color: #fff !important;
  background: transparent !important;
  font-size: 0.95em !important;
  margin-top: 0.5em !important;
}

#mc_embed_signup form {
  margin: 0px;
  padding: 0px;
}

/* ==================== ENHANCED FORM BASE STYLES ==================== */
/* Core form styling for .enhanced-form elements */
.enhanced-form .form-control::placeholder {
  color: #bbb !important;
  opacity: 1 !important;
  transition: opacity 0.3s ease;
  font-size: 1rem !important;
}

.enhanced-form .form-control:focus::placeholder {
  color: #bbb !important;
  opacity: 1 !important;
  transform: translateX(4px);
}


/* Enhanced form select and textarea styles use the contact-form-dark and offcanvas styles below */

/* Textarea Premium Styling */
.enhanced-form textarea.form-control {
  min-height: 100px;
  resize: vertical;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* Button styles are handled in offcanvas and contact-form-dark sections */

/* Form Groups - Clean Spacing */
.enhanced-form .form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.enhanced-form .form-group .help-block.with-errors {
  color: #e74c3c;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Loading indicators are handled in specific form contexts below */

/* Messages - Success & Error */
.enhanced-form .messages .alert {
  border-radius: 12px;
  padding: 16px 20px;
  font-weight: 500;
  border: none;
  margin-bottom: 24px;
}

.enhanced-form .messages .alert-success {
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(46, 204, 113, 0.1));
  color: #27ae60;
  border-left: 4px solid #27ae60;
}

.enhanced-form .messages .alert-danger {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
  color: #e74c3c;
  border-left: 4px solid #e74c3c;
}

/* OFFCANVAS LUXILLAG PREMIUM STYLING */
/* Dark elegant design that fits perfectly */

.offcanvas {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.offcanvas .offcanvas-header {
  padding: 24px;
}

.offcanvas .offcanvas-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
}

.offcanvas .offcanvas-body {
  padding: 24px;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

/* Form Container in Offcanvas */
.offcanvas .enhanced-form {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Compact & Elegant Form Styling */
.offcanvas .enhanced-form .form-group {
  margin-bottom: 1rem;
}

.offcanvas .enhanced-form .form-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offcanvas .enhanced-form .form-control {
  background: transparent !important;
  border: 1.5px solid #a52422 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  min-height: 44px !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: 100% !important;
}

.offcanvas .enhanced-form .form-control:focus {
  border-color: #a52422 !important;
  box-shadow: 0 0 0 3px rgba(165, 36, 34, 0.2), 0 4px 12px rgba(165, 36, 34, 0.1) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
  background: transparent !important;
}

.offcanvas .enhanced-form .form-control::placeholder {
  color: #bbb !important;
  opacity: 1 !important;
  font-size: 1rem !important;
}

/* Select Dropdown in Offcanvas */
.offcanvas .enhanced-form select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' 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") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px 16px !important;
  padding-right: 45px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  color: #2c2c2c;
}

.offcanvas .enhanced-form select.form-control:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a52422' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px 16px !important;
  color: #2c2c2c;
}

/* Textarea in Offcanvas */
.offcanvas .enhanced-form textarea.form-control {
  min-height: 80px;
  max-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

/* Premium Button in Offcanvas */
.offcanvas .enhanced-form .btn-enhanced {
  background: linear-gradient(135deg, #a52422 0%, #d4372e 50%, #a52422 100%);
  background-size: 200% 200%;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 400;
  min-height: 48px;
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(165, 36, 34, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  width: 100%;
  margin-top: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offcanvas .enhanced-form .btn-enhanced:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(165, 36, 34, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Compact Row Layout */
.offcanvas .enhanced-form .row {
  margin: 0 -8px;
  gap: 0;
}

.offcanvas .enhanced-form .col-lg-6,
.offcanvas .enhanced-form .col-lg-8,
.offcanvas .enhanced-form .col-lg-4,
.offcanvas .enhanced-form .col-12 {
  padding: 0 8px;
}

/* Form Text & Help */
.offcanvas .enhanced-form .form-text {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  font-style: italic;
}

.offcanvas .enhanced-form .help-block.with-errors {
  color: #ff6b6b;
  font-size: 0.7rem;
  padding: 6px 10px;
  border-radius: 4px;
  margin-top: 0.3rem;
}

/* Messages in Offcanvas */
.offcanvas .enhanced-form .messages .alert {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.offcanvas .enhanced-form .messages .alert-success {
  border-left: 3px solid #27ae60;
  background: rgba(39, 174, 96, 0.15);
}

.offcanvas .enhanced-form .messages .alert-danger {
  border-left: 3px solid #e74c3c;
  background: rgba(231, 76, 60, 0.15);
}

/* Offcanvas Error Messages - Bootstrap-like behavior */
.offcanvas .enhanced-form .messages .error {
  background: rgba(231, 76, 60, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-left: 4px solid #e74c3c;
  color: #ff6b6b;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Offcanvas Bootstrap-like error states */
.offcanvas .enhanced-form.has-error .form-control,
.offcanvas .enhanced-form .form-group.has-error .form-control,
.offcanvas .enhanced-form .has-danger .form-control,
.offcanvas .enhanced-form .form-group.mb-3.has-error.has-danger .form-control {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3) !important;
  background: rgba(231, 76, 60, 0.05) !important;
}

.offcanvas .enhanced-form.has-error .form-label,
.offcanvas .enhanced-form .form-group.has-error .form-label,
.offcanvas .enhanced-form .has-danger .form-label {
  color: #ff6b6b !important;
}

/* Loading Indicator in Offcanvas */
.offcanvas .enhanced-form .loading-indicator {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
  border-radius: 12px;
  margin: 16px 0;
}

.offcanvas .enhanced-form .loading-indicator .spinner-border {
  border-color: #a52422;
  border-right-color: transparent;
  width: 2.5rem;
  height: 2.5rem;
}

.offcanvas .enhanced-form .loading-indicator p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 12px;
  font-size: 0.9rem;
}

/* Hide Scrollbars but Keep Functionality */
.offcanvas *::-webkit-scrollbar {
  width: 4px;
}

.offcanvas *::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.offcanvas *::-webkit-scrollbar-thumb {
  background: rgba(165, 36, 34, 0.6);
  border-radius: 2px;
}

.offcanvas *::-webkit-scrollbar-thumb:hover {
  background: rgba(165, 36, 34, 0.8);
}

/* Enhanced Date Input Styling */
.enhanced-form .form-control[type="date"] {
  position: relative;
}

.enhanced-form .form-control[type="date"]::-webkit-calendar-picker-indicator {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a52422' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.enhanced-form .form-control[type="date"]::-webkit-calendar-picker-indicator:hover {
  background-color: rgba(165, 36, 34, 0.1);
  transform: scale(1.1);
}

/* Duplicated form styling is handled in the specific sections above */

/* Animation Keyframes */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Form Entry Animation */
.offcanvas .enhanced-form .form-group {
  animation: slideInFromRight 0.4s ease-out;
  animation-fill-mode: both;
}

.offcanvas .enhanced-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.offcanvas .enhanced-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.offcanvas .enhanced-form .form-group:nth-child(3) { animation-delay: 0.3s; }
.offcanvas .enhanced-form .form-group:nth-child(4) { animation-delay: 0.4s; }

/* Focus States & Interactions */
.enhanced-form .form-control:focus {
  animation: pulse 0.3s ease-in-out;
}

/* Premium Focus Ring 
.enhanced-form .form-control:focus-visible {
  outline: 2px solid rgba(165, 36, 34, 0.5);
  outline-offset: 2px;
}
*/

/* Button Loading State */
.enhanced-form .btn-enhanced:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.enhanced-form .btn-enhanced:disabled:hover {
  transform: none !important;
  box-shadow: 0 4px 15px rgba(165, 36, 34, 0.3);
}

/* Loading Indicator */
.enhanced-form .loading-indicator {
  text-align: center;
  padding: 20px;
  background: rgba(44, 44, 44, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(165, 36, 34, 0.2);
}

.enhanced-form .loading-indicator .spinner-border {
  width: 2rem;
  height: 2rem;
  margin-bottom: 10px;
  border-color: #a52422;
  border-right-color: transparent;
}

/* Messages Styling */
.enhanced-form .messages {
  margin-bottom: 1rem;
}

.enhanced-form .messages .success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.enhanced-form .messages .error {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid #e74c3c;
  border-left: 4px solid #e74c3c;
  color: #e74c3c;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Bootstrap-like error state for enhanced forms */
.enhanced-form.has-error .form-control,
.enhanced-form .form-group.has-error .form-control,
.enhanced-form .has-danger .form-control {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2) !important;
}

.enhanced-form.has-error .form-label,
.enhanced-form .form-group.has-error .form-label,
.enhanced-form .has-danger .form-label {
  color: #e74c3c !important;
}

.enhanced-form .form-group.mb-3.has-error.has-danger .form-control {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2) !important;
  background-color: rgba(231, 76, 60, 0.05) !important;
}

/* Product Dropdown (if needed) */
.enhanced-form .product-dropdown-wrapper {
  position: relative;
}

.enhanced-form .product-dropdown {
  position: relative;
  width: 100%;
}

.enhanced-form .dropdown-selected {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease;
  min-height: 48px;
}

.enhanced-form .dropdown-selected:hover {
  border-color: #a52422;
}

.enhanced-form .dropdown-selected.open {
  border-color: #a52422;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 0 0 0.2rem rgba(165, 36, 34, 0.25);
}

.enhanced-form .dropdown-arrow {
  color: #666;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.enhanced-form .dropdown-selected.open .dropdown-arrow {
  transform: rotate(180deg);
}

.enhanced-form .dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #a52422;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.enhanced-form .dropdown-options.show {
  display: block;
  animation: slideDown 0.3s ease;
}

.enhanced-form .dropdown-option {
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.enhanced-form .dropdown-option:last-child {
  border-bottom: none;
}

.enhanced-form .dropdown-option:hover {
  background-color: #f8f9fa;
}

.enhanced-form .dropdown-option.selected {
  background-color: #e3f2fd;
  font-weight: 500;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive design is handled above */

/* NEWSLETTER FOOTER FORM OVERRIDES */
/* Override Mailchimp default styles with enhanced-form styling */
.footer-mailchimp.enhanced-form input[type="email"],
.footer-mailchimp.enhanced-form select,
.enhanced-form .footer-mailchimp input[type="email"],
.enhanced-form .footer-mailchimp select {
  background: transparent !important;
  border: 1.5px solid #a52422 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  min-height: 44px !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: 100% !important;
  margin-bottom: 1rem !important;
}

.footer-mailchimp.enhanced-form input[type="email"]:focus,
.footer-mailchimp.enhanced-form select:focus,
.enhanced-form .footer-mailchimp input[type="email"]:focus,
.enhanced-form .footer-mailchimp select:focus {
  border-color: #a52422 !important;
  box-shadow: 0 0 0 3px rgba(165, 36, 34, 0.2), 0 4px 12px rgba(165, 36, 34, 0.1) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
  background: transparent !important;
}

.footer-mailchimp.enhanced-form input[type="email"]::placeholder,
.enhanced-form .footer-mailchimp input[type="email"]::placeholder {
  color: #bbb !important;
  opacity: 1 !important;
  font-size: 1rem !important;
}

.footer-mailchimp.enhanced-form label,
.enhanced-form .footer-mailchimp label {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 0.5rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  display: block !important;
}

/* Newsletter button styling handled in FOOTER MAILCHIMP section above */

/* Select dropdown styling for newsletter */
.footer-mailchimp.enhanced-form select,
.enhanced-form .footer-mailchimp select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' 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") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px 16px !important;
  padding-right: 45px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

.footer-mailchimp.enhanced-form select:focus,
.enhanced-form .footer-mailchimp select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a52422' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

/* Mailchimp Validation Messages Styling */
.footer-mailchimp.enhanced-form .mce_inline_error,
.footer-mailchimp.enhanced-form .response,
.footer-mailchimp.enhanced-form #mce-error-response,
.footer-mailchimp.enhanced-form #mce-success-response,
.enhanced-form .footer-mailchimp .mce_inline_error,
.enhanced-form .footer-mailchimp .response,
.enhanced-form .footer-mailchimp #mce-error-response,
.enhanced-form .footer-mailchimp #mce-success-response {
  background: none !important;
  backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 6px 10px !important;
  margin-top: 0.3rem !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  display: block !important;
}

.footer-mailchimp.enhanced-form #mce-success-response,
.enhanced-form .footer-mailchimp #mce-success-response {
  color: #27ae60 !important;
}

.footer-mailchimp.enhanced-form .mce_inline_error,
.footer-mailchimp.enhanced-form #mce-error-response,
.enhanced-form .footer-mailchimp .mce_inline_error,
.enhanced-form .footer-mailchimp #mce-error-response {
  color: #e74c3c !important;
}

/* Form field error states for Mailchimp */
.footer-mailchimp.enhanced-form .mce_inline_error_field,
.enhanced-form .footer-mailchimp .mce_inline_error_field {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2) !important;
}

/* Asterisk styling consistency */
.footer-mailchimp.enhanced-form .asterisk,
.enhanced-form .footer-mailchimp .asterisk {
  color: #a52422 !important;
  font-weight: bold !important;
}

/* Fix "Let's Talk" button text wrapping */
.enhanced-form .glow-on-hover,
.glow-on-hover {
  width: auto !important;
  min-width: 160px !important;
  padding: 12px 24px !important;
  white-space: nowrap !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

/* Make Subscribe button smaller and prevent text issues */
.footer-mailchimp.enhanced-form .button,
.footer-mailchimp.enhanced-form input[type="submit"],
.enhanced-form .footer-mailchimp .button,
.enhanced-form .footer-mailchimp input[type="submit"] {
  width: auto !important;
  min-width: 120px !important;
  max-width: 140px !important;
  padding: 10px 20px !important;
  font-size: 10px !important;
}

/* Offcanvas form control styling is handled in the main OFFCANVAS section above */
