/* ===============================
   GLOBAL MOBILE SAFETY LOCK
   (NO DESIGN BREAK)
================================ */

/* Prevent overflow issues */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Images & SVG never overflow */
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inputs & buttons mobile-safe */
input,
select,
textarea,
button {
  max-width: 100%;
  font-size: 16px; /* iOS zoom fix */
}

/* Touch-friendly spacing */
button, a {
  -webkit-tap-highlight-color: transparent;
}


/* ===============================
   CONTACT PAGE – BASE
================================ */
.lux-contact {
  padding: 110px 20px 120px;
  background:
    radial-gradient(circle at 15% 20%, rgba(230,184,106,0.22), transparent 45%),
    linear-gradient(180deg, #0b0a09, #000);
  overflow: hidden;
}

.lux-contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

/* ===============================
   LEFT SIDE – PREMIUM HERO CARD
================================ */
.lux-info {
  position: relative;
  padding: 52px 48px;
  border-radius: 32px;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.06),
    rgba(0,0,0,0.18)
  );
  backdrop-filter: blur(14px);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.75),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  animation: fadeUp 1.1s ease both;
}

/* gold vertical accent */
.lux-info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: 4px;
  height: 80%;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    transparent,
    #e6b86a,
    transparent
  );
}

/* tag */
.lux-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: #e6b86a;
  margin-bottom: 18px;
}

/* heading */
.lux-info h2 {
  font-size: 2.7rem;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #f4c86a;
}

/* paragraph */
.lux-info p {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #d4d4d4;
  margin-bottom: 30px;
}

/* ===============================
   BRANCH CARDS
================================ */
.lux-branch-card {
  margin-top: 18px;
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(230,184,106,0.35);
  transition: all 0.4s ease;
}

.lux-branch-card strong {
  display: block;
  color: #e6b86a;
  margin-bottom: 6px;
}

.lux-branch-card span {
  color: #e5e5e5;
  font-size: 0.95rem;
}

.lux-branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(230,184,106,0.25);
}

/* trust line */
.lux-trust {
  margin-top: 32px;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  color: #d6c08a;
}

/* ===============================
   RIGHT SIDE – PREMIUM FORM
================================ */
.lux-form-box {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 38px 32px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.75);
  animation: fadeUp 1.2s ease both;
}

.lux-form-box input,
.lux-form-box select,
.lux-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(230,184,106,0.35);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 0.95rem;
}

/* placeholders */
.lux-form-box input::placeholder,
.lux-form-box textarea::placeholder {
  color: rgba(255,255,255,0.65);
}

/* select fix */
.lux-form-box select {
  color: rgba(255,255,255,0.7);
}

.lux-form-box select option {
  color: #000;
}

/* textarea */
.lux-form-box textarea {
  resize: none;
}

/* ===============================
   BRANCH SELECT BUTTONS
================================ */
.branch-select {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.branch-btn {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(230,184,106,0.45);
  color: #e6b86a;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s ease;
}

.branch-btn:hover {
  background: rgba(230,184,106,0.12);
}

.branch-btn.active {
  background: linear-gradient(135deg,#e6b86a,#cfa14a);
  color: #2b1a14;
}

/* ===============================
   SUBMIT BUTTON
================================ */
.send-btn {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg,#e6b86a,#cfa14a);
  color: #2b1a14;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
}

.send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(230,184,106,0.45);
}

/* ===============================
   DATE / TIME ICON FIX
================================ */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.8;
  cursor: pointer;
}

/* ===============================
   ENTRY ANIMATION
================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   MOBILE – PERFECT STACK
================================ */
@media (max-width: 768px) {

  .lux-contact {
    padding: 90px 16px 30px;
  }

  .lux-contact-container {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .lux-info {
    padding: 36px 28px;
    border-radius: 26px;
  }

  .lux-info h2 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .lux-info p {
    font-size: 0.95rem;
  }

  .lux-info::before {
    left: -6px;
  }
}

.field {
  position: relative;
}

.field .icon {
  position: absolute;
  left: 14px;
  top: 38%;
  transform: translateY(-50%);
  opacity: 0.7;
}

.field input,
.field select,
.field textarea {
  padding-left: 42px;
}

/* PHONE FIELD FIX */
.phone-field {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
}

.phone-field .icon {
  position: absolute;
  left: 14px;
}

.phone-field select {
  padding-left: 36px;
  width: 90px;
}

.phone-field input {
  flex: 1;
  padding-left: 16px;
}

/* DATE TIME */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ===============================
   INTL TEL INPUT – DARK THEME FIX
================================ */

/* Selected country dial code (+91) */
.iti__selected-dial-code {
  color: #fff !important;
  font-weight: 500;
}

/* Country name inside dropdown */
.iti__country-name,
.iti__dial-code {
  color: #000;
}

/* Selected flag background */
.iti__selected-flag {
  background: transparent !important;
}

/* Phone input text */
.iti input {
  color: #fff !important;
}

/* Placeholder */
.iti input::placeholder {
  color: rgba(255,255,255,0.65);
}

/* Dropdown container */
.iti__country-list {
  background: #111;
  border: 1px solid rgba(230,184,106,0.35);
}

/* Hover country */
.iti__country:hover {
  background: rgba(230,184,106,0.15);
}

/* ===============================
   FIX PHONE & EMAIL GAP (INTL INPUT)
================================ */


/* Extra safety – field spacing */
.iti{
  margin-bottom: 16px;
  width: 100%;
}

/* ===============================
   SEND BUTTON LOADER
================================ */

.send-btn {
  position: relative;
  overflow: hidden;
}

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,0.25);
  border-top: 2px solid #2b1a14;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.send-btn.loading .btn-text {
  display: none;
}

.send-btn.loading .btn-loader {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===============================
   PREMIUM SELECT DROPDOWN FIX
================================ */

.lux-form-box select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background:
    rgba(0,0,0,0.45)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23e6b86a' d='M5.5 7.5l4.5 5 4.5-5z'/%3E%3C/svg%3E")
    no-repeat right 16px center;

  background-size: 14px;
  cursor: pointer;
}

/* Dropdown option panel */
.lux-form-box select option {
  background: #0b0a09;        /* dark premium */
  color: #e6e6e6;
}

/* Selected option text (IMPORTANT FIX) */
.lux-form-box select:focus,
.lux-form-box select:active {
  color: #e6e6e6;             /* ❌ white illa */
}

/* Hover effect */
.lux-form-box select:hover {
  border-color: rgba(230,184,106,0.65);
}

/* EMAIL INPUT SELECT COLOR FIX */
.lux-form-box input[type="email"]:focus {
  color: #e6e6e6;
  background: rgba(0,0,0,0.45);
}

/* ===============================
   FIX EMAIL AUTOFILL (GMAIL WHITE BG)
================================ */

/* Chrome / Edge / Mobile Chrome */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #e6e6e6 !important;
  -webkit-box-shadow: 0 0 0px 1000px rgba(0,0,0,0.45) inset !important;
  box-shadow: 0 0 0px 1000px rgba(0,0,0,0.45) inset !important;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: #e6e6e6;
}

/* Autofill focus state */
input:-webkit-autofill:focus {
  border-color: rgba(230,184,106,0.65);
}


/* ===============================
   CLEAR + PREMIUM ICONS (NO EMOJI)
================================ */

.svg-icon{
  width:20px;
  height:20px;
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  background-repeat:no-repeat;
  background-size:contain;
  opacity:0.95;
}

/* USER */
.icon-user{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e6b86a' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a5 5 0 100-10 5 5 0 000 10zm-7 8c0-3.3 3.6-6 7-6s7 2.7 7 6v1H5z'/%3E%3C/svg%3E");
}

/* EMAIL */
.icon-mail{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e6b86a' viewBox='0 0 24 24'%3E%3Cpath d='M2 4h20v16H2zm10 7 8-5H4z'/%3E%3C/svg%3E");
}

/* LOCATION */
.icon-location{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e6b86a' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 00-7 7c0 5.5 7 13 7 13s7-7.5 7-13a7 7 0 00-7-7zm0 9a2 2 0 110-4 2 2 0 010 4z'/%3E%3C/svg%3E");
}

/* SERVICE (SPA / MASSAGE CLEAR) */
.icon-service{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e6b86a' viewBox='0 0 24 24'%3E%3Cpath d='M4 14c4-6 12-6 16 0v4H4zm8-12a4 4 0 110 8 4 4 0 010-8z'/%3E%3C/svg%3E");
}

/* DURATION */
.icon-duration{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e6b86a' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}


/* MESSAGE */
.icon-message{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e6b86a' viewBox='0 0 24 24'%3E%3Cpath d='M2 4h20v14H6l-4 4z'/%3E%3C/svg%3E");
}


/* ===============================
   DATE & TIME – PREMIUM ICON STYLE
================================ */

/* Chrome / Edge / Brave */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(78%) sepia(45%) saturate(520%) hue-rotate(2deg);
  opacity: 0.9;
  cursor: pointer;
  padding-right: 6px;
}

/* Hover clarity */
input[type="date"]:hover::-webkit-calendar-picker-indicator,
input[type="time"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}

/* Firefox (limited but safe) */
input[type="date"],
input[type="time"] {
  accent-color: #e6b86a;
}

@media (max-width: 768px) {
  input[type="date"],
  input[type="time"] {
    font-size: 0.95rem;
  }
}

/* DATE & TIME LABEL – CENTER ALIGN */
.dt-label{
  display:block;
  width:100%;
  text-align:center;     /* 🔥 center */
  margin-bottom:8px;
  font-size:0.75rem;
  font-weight:500;
  color:#e6b86a;
  letter-spacing:0.6px;
}

/* Mobile clarity */
@media (max-width:768px){
  .dt-label{
    font-size:0.72rem;
  }
}

/* Contact form grid safety */
.lux-form-box {
  width: 100%;
  max-width: 100%;
}

.lux-form-box .field {
  width: 100%;
}

/* Date & Time – stack only on small screens */
@media (max-width: 768px) {
  .two-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}
/* Floating icons never overlap content */
.left-social {
  max-width: 100vw;
}

/* Prevent accidental zoom / misalign */
.left-social img {
  pointer-events: none;
}
/* Popup center safety */
.lux-popup,
.wa-popup,
.popup-overlay {
  padding: 16px;
  box-sizing: border-box;
}
/* Prevent layout jump when menu opens */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.ls-btn img {
  width: 40px;
  height: 26px;
  object-fit: contain;
}
/* ===============================
   FORM ICON – SAME AS STAT ICON
   (SAFE – NO DESIGN BREAK)
================================ */

.form-group.with-icon {
  position: relative;
  width: 100%;
}

.form-group.with-icon .form-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);

  font-size: 1.2rem;
  color: #f4c86a; /* SAME GOLD */
  pointer-events: none;
}

/* Space for icon */
.form-group.with-icon select {
  padding-left: 42px;
}

/* ===============================
   SERVICE – DOCTOR ICON FIX
   (MATCH EXISTING ICON STYLE)
================================ */

.field .fas.fa-user-md {
  color: #e6b86a;      /* SAME as other icons */
  font-size: 18px;     /* SAME visual size */
  opacity: 0.95;
}
/* ===============================
   DATE & TIME – MOBILE LEFT RIGHT
   (DESKTOP STYLE PRESERVED)
================================ */

@media (max-width: 768px) {
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 🔥 LEFT + RIGHT */
    gap: 12px;
  }

  .two-col .field {
    width: 100%;
  }

  .two-col input[type="date"],
  .two-col input[type="time"] {
    font-size: 0.9rem;
    padding: 12px 14px;
  }
}

