/* Centering & Frosted Glass Card */
.luxury-contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
}

.lux-form-card {
  background:white; /* Faint dark tint */
  backdrop-filter: blur(15px); /* Frosted glass effect */
  border: 1px solid rgba(210, 179, 86, 0.15); /* Extremely subtle gold rim */
  padding: 70px 60px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Header Styling */
.lux-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-contact {
  color: #d2b356;
  font-weight: 100;
  letter-spacing: 6px;
  font-size: 26px;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.lux-divider {
  width: 40px;
  height: 1px;
  background-color: #d2b356;
  margin: 20px auto 0;
  opacity: 0.5;
}

/* Floating Label Inputs */
.form-group {
  position: relative;
  margin-bottom: 45px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid black;
  color: black;
  padding: 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.form-group textarea {
  resize: none;
  min-height: 80px;
  padding-top: 15px;
}

/* The Label before interaction */
.form-group label {
  position: absolute;
  top: 10px;
  left: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  letter-spacing: 4px;
  font-size: 12px;
  text-transform: uppercase;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* The Label after interaction (Glides up and turns gold) */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -18px;
  font-size: 9px;
  letter-spacing: 5px;
  color: #d2b356;
}

/* Animated Center-Out Gold Underline */
.focus-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #d2b356;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateX(-50%);
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
  width: 100%;
}

/* Advanced Button Sweep Animation */
.lux-btn {
  position: relative;
  display: block;
  margin-left: 112px !important;
  height: 70px;
  max-width: 300px;
  background: transparent;
  color: #d2b356;
  border: 1px solid rgba(210, 179, 86, 0.5);
  padding: 20px 0;
  margin-top: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  letter-spacing: 5px;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.5s ease, border-color 0.5s ease;
  box-shadow: 10px 9px 12px rgba(0, 0, 0, 0.3) !important;
}

/* The block of gold that slides in */
.lux-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d2b356;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}

.lux-btn:hover {
  color: #000000;
  border-color: #d2b356;
  font-weight: 300;
}

.lux-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* LUXURY NOTIFICATION STYLING */
#lux-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%); /* Starts slightly lower */
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--brand-gold);
    padding: 40px 60px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1000;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

#lux-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%); /* Slides up into place */
}

.notification-text {
    color: black;
    font-weight: 100;
    letter-spacing: 6px; 
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.notification-line {
    width: 0%;
    height: 1px;
    background-color: var(--brand-gold);
    margin: 0 auto;
    transition: width 0.8s ease 0.3s; /* Animates a line outward */
}

#lux-notification.show .notification-line {
    width: 100%;
}

/* Keep your existing #lux-notification CSS here from the previous step.
  It is perfectly optimized for this layout! 
*/