/* ═══════════════════════════════════════════════════════════
   LUCKY INTERNATIONAL — CONTACT PAGE CSS
   Import order: tokens.css → base.css → loaders.css → contact.css
   Desktop only — media queries to be added later
═══════════════════════════════════════════════════════════ */

html, body { overflow-x: hidden; }

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: 80px;
  background: rgba(249,248,246,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  box-shadow: 0 4px 24px rgba(26,26,26,0.06);
  /* Contact page starts light — nav always visible/solid */
}
.nav-inner {
  height: 100%;
  padding: 0 var(--margin-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg);
  line-height: 1;
}
.nav-logo-addr {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0.5;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  position: relative;
  transition: color var(--transition-fast);
  letter-spacing: 0.3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-dhaba-link { color: var(--dred) !important; font-weight: 600; }
.nav-dhaba-link::after { background: var(--dred) !important; }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--fg);
  transition: all var(--transition-base);
}
#mobile-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: var(--z-overlay);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s linear 0.35s;
  pointer-events: none;
}
#mobile-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s linear 0s;
}

#mobile-overlay a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
}
.overlay-dhaba { color: var(--dred) !important; }
.overlay-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 24px;
  color: var(--fg);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  background: none;
  border: none;
}

/* ── Check-In Bar ── */
#checkin-bar {
  background: var(--fg);
  margin-top: 80px; /* navbar height */
}
.checkin-inner {
  display: flex;
  align-items: stretch;
  padding: 0 var(--margin-desktop);
}
.checkin-item {
  flex: 1;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 40px;
}
.checkin-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.checkin-time {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.5px;
}
.checkin-note {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}
.checkin-divider {
  width: 1px;
  background: rgba(255,255,255,0.06);
  margin: 24px 40px 24px 0;
  flex-shrink: 0;
}
.form-required {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  vertical-align: super;
  margin-left: 4px;
}

/* ── Main Contact Grid ── */
#contact-main {
  background: var(--bg);
  padding: 80px var(--margin-desktop) 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: flex-start;
}

/* ── Form Column ── */
.contact-form-header { margin-bottom: 48px; }
.contact-form-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.contact-form-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.7;
  max-width: 420px;
}

.contact-form-bold {
  color: var(--gold);
  font-weight: 500;
}

/* Form fields — PDS: 0px border radius strictly */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-row {
  margin-bottom: 0;
  border-bottom: 1px solid var(--divider);
}
.form-row:last-of-type { border-bottom: none; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.form-row-split .form-field {
  border-right: 1px solid var(--divider);
}
.form-row-split .form-field:last-child { border-right: none; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fg-30);
  padding: 20px 24px 0;
  display: block;
}
.form-input {
  background: transparent;
  border: none !important;
  border-radius: 0 !important;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--fg);
  padding: 10px 24px 20px;
  width: 100%;
  box-sizing: border-box;
  transition: background var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--fg-30); }
.form-input:focus { background: rgba(212,175,55,0.04); outline: none; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1A1A' stroke-opacity='0.4' stroke-width='1.5' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 24px center;
  padding-right: 48px;
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.form-privacy-note {
  font-size: 11px;
  font-weight: 400;
  color: var(--fg-30);
  line-height: 1.6;
  padding: 20px 24px;
  border-top: 1px solid var(--divider);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.form-privacy-note span { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* Wrap the whole form in a bordered container */
.enquiry-form {
  border: 1px solid var(--divider);
}
.form-submit {
  margin: 24px;
  width: calc(100% - 48px);
  height: 52px;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ── Info Column ── */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 100px;
}
.info-block {
  padding: 36px 0;
  border-bottom: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-block:first-child { padding-top: 0; }
.info-block:last-child { border-bottom: none; }
.info-block-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg-30);
}
.info-block-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.7;
  max-width: 320px;
}

/* Call links */
.call-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--divider);
  background: var(--bg);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}
.call-link:hover {
  border-color: var(--fg);
  background: var(--fg);
}
.call-link:hover .call-icon,
.call-link:hover .call-number,
.call-link:hover .call-label { color: var(--white); }
.call-link-secondary { margin-top: -1px; }
.call-icon {
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.call-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.call-number {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.3px;
  transition: color var(--transition-fast);
}
.call-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-30);
  transition: color var(--transition-fast);
}

/* Address */
.address-block {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.address-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.address-line {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.6;
}
.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  transition: gap var(--transition-fast);
}
.directions-link:hover { gap: 12px; }

/* Quick links */
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--divider);
}
.quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--divider);
  transition: background var(--transition-fast);
  text-decoration: none;
}
.quick-link:last-child { border-bottom: none; }
.quick-link:hover { background: var(--fg-10); }
.quick-link-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}
.quick-link-arrow {
  font-size: 14px;
  color: var(--fg-30);
  transition: transform var(--transition-fast), color var(--transition-fast);
}
.quick-link:hover .quick-link-arrow {
  transform: translateX(4px);
  color: var(--fg);
}
.quick-link-dhaba .quick-link-title { color: var(--dred); }

/* Dhaba info block */
.info-block-dhaba {
  background: rgba(89,101,42,0.04);
  border-left: 2px solid var(--dgreen);
  padding-left: 16px;
  margin-left: -16px;
}

/* ── Map Section ── */
#map {
  background: var(--bg);
}
.map-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 60px var(--margin-desktop) 32px;
  border-top: 1px solid var(--divider);
}
.map-headline {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.map-address-line {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-50);
}
.map-frame-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  background: #E8E6E0;
  overflow: hidden;
}
.map-frame {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: grayscale(0.15);
  transition: filter 1500ms ease-in-out;
}
.map-frame-wrap:hover .map-frame { filter: grayscale(0); }
.map-pin-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--fg);
  color: var(--white);
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

/* ── Footer ── */
#footer { background: #0A0A0A; padding: 80px var(--margin-desktop) 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 14px;
}
.footer-brand-addr { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 20px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 14px; color: rgba(212,175,55,0.75); }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.48); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--white); }
.footer-dhaba-link { color: var(--dred) !important; }
.footer-bottom { padding-top: 32px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.2); transition: color var(--transition-fast); }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE 390px
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav */
  #navbar { height: 60px; }
  .nav-inner { padding: 0 var(--margin-mobile); }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Check-In Bar */
  #checkin-bar { margin-top: 60px; }
  .checkin-inner { flex-direction: column; padding: 0 var(--margin-mobile); }
  .checkin-item { padding: 20px 0; padding-right: 0; }
  .checkin-time { font-size: 20px; }
  .checkin-divider { display: none; }

  /* Main Contact Grid */
  #contact-main { padding: 48px var(--margin-mobile) 64px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-headline { font-size: 28px; }
  .contact-form-sub { font-size: 13px; max-width: 100%; }

  .form-row-split { grid-template-columns: 1fr; }
  .form-row-split .form-field { border-right: none; border-bottom: 1px solid var(--divider); }
  .form-row-split .form-field:last-child { border-bottom: none; }
  .form-label { padding: 16px 20px 0; }
  .form-input { padding: 8px 20px 16px; }
  .form-submit { margin: 16px; width: calc(100% - 32px); }

  .contact-info-col { position: static; }
  .info-block { padding: 24px 0; }

  /* Map */
  .map-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 40px var(--margin-mobile) 24px; }
  .map-headline { font-size: 22px; }
  .map-frame-wrap { height: 320px; }

  /* Footer */
  #footer { padding: 48px var(--margin-mobile) 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  hr.divider-line { margin: 0 var(--margin-mobile) !important; }
}