/* ========================================
   LUXFLOW CONTACT PAGE
======================================== */

:root {
  --contact-bg: #08111f;
  --contact-bg-soft: #0f1b2d;
  --contact-panel: #ffffff;
  --contact-text: #0f172a;
  --contact-muted: #64748b;
  --contact-border: #e2e8f0;
  --contact-accent: #2563eb;
  --contact-accent-dark: #1d4ed8;
  --contact-whatsapp: #25d366;
}


/* ========================================
   HEADER
======================================== */

.contact-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(8, 17, 31, 0.96);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-header-inner {
  max-width: 1200px;
  margin: 0 auto;

  padding: 18px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-logo {
  color: #ffffff;
  text-decoration: none;

  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.contact-nav a {
  color: #cbd5e1;
  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: color 0.2s ease;
}

.contact-nav a:hover,
.contact-nav a.active {
  color: #ffffff;
}

.contact-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0 18px;

  border-radius: 10px;

  background: #ffffff;
  color: var(--contact-bg);

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.contact-login-button:hover {
  transform: translateY(-1px);
  background: #f8fafc;
}


/* ========================================
   GENERAL
======================================== */

.contact-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-eyebrow,
.contact-card-label {
  margin: 0 0 10px;

  color: #f59e0b;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-main-section {
  padding: 72px 24px 90px;

  background: #f8fafc;
}


/* ========================================
   HERO
======================================== */

.contact-hero {
  padding: 110px 24px 96px;

  background:
    radial-gradient(
      circle at top right,
      rgba(37, 99, 235, 0.2),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #08111f,
      #0f1b2d
    );

  color: #ffffff;
}

.contact-hero .contact-shell {
  max-width: 900px;
  text-align: center;
}

.contact-hero h1 {
  margin: 0;

  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-hero-copy {
  max-width: 720px;
  margin: 24px auto 0;

  color: #cbd5e1;

  font-size: 18px;
  line-height: 1.75;
}


/* ========================================
   CONTACT CARDS
======================================== */

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;

  margin-bottom: 54px;
}

.contact-info-card {
  min-height: 250px;

  padding: 28px;

  background: var(--contact-panel);

  border: 1px solid var(--contact-border);
  border-radius: 18px;

  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.06);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.1);
}

.contact-icon {
  width: 54px;
  height: 54px;

  margin-bottom: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: #eff6ff;

  font-size: 25px;
}

.contact-info-card h2 {
  margin: 0 0 12px;

  color: var(--contact-text);

  font-size: 22px;
}

.contact-info-card p {
  margin: 0 0 14px;

  color: var(--contact-muted);

  line-height: 1.65;
}

.contact-info-card a {
  color: var(--contact-accent);

  text-decoration: none;

  font-weight: 700;
}

.contact-info-card a:hover {
  text-decoration: underline;
}


/* ========================================
   CONTACT CONTENT GRID
======================================== */

.contact-content-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.5fr)
    minmax(300px, 0.7fr);

  gap: 28px;

  align-items: start;

  margin-bottom: 56px;
}


/* ========================================
   FORM
======================================== */

.contact-form-card,
.contact-side-card {
  background: var(--contact-panel);

  border: 1px solid var(--contact-border);
  border-radius: 20px;

  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.06);
}

.contact-form-card {
  padding: 38px;
}

.contact-form-card h2,
.contact-side-card h2,
.contact-map-heading h2 {
  margin: 0;

  color: var(--contact-text);

  font-size: 30px;
  letter-spacing: -0.02em;
}

.contact-intro {
  max-width: 650px;

  margin: 14px 0 30px;

  color: var(--contact-muted);

  line-height: 1.7;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-field {
  margin-bottom: 20px;
}

.contact-field label {
  display: block;

  margin-bottom: 8px;

  color: #334155;

  font-size: 14px;
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid #cbd5e1;
  border-radius: 10px;

  background: #ffffff;

  color: var(--contact-text);

  font: inherit;

  outline: none;

  box-sizing: border-box;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--contact-accent);

  box-shadow:
    0 0 0 3px rgba(37, 99, 235, 0.12);
}

.contact-field textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-submit-button {
  min-height: 48px;

  padding: 0 24px;

  border: 0;
  border-radius: 10px;

  background: var(--contact-accent);
  color: #ffffff;

  font-size: 15px;
  font-weight: 800;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.contact-submit-button:hover {
  background: var(--contact-accent-dark);
  transform: translateY(-1px);
}

.contact-submit-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.contact-status {
  min-height: 22px;

  margin: 14px 0 0;

  font-size: 14px;
  font-weight: 600;
}


/* ========================================
   SIDE CARD
======================================== */

.contact-side-card {
  padding: 32px;
}

.hours-list {
  margin-top: 28px;
}

.hours-list > div {
  padding: 15px 0;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-bottom: 1px solid var(--contact-border);
}

.hours-list span {
  color: var(--contact-muted);
}

.hours-list strong {
  color: var(--contact-text);
  text-align: right;
}

.contact-time-note {
  margin: 14px 0 0;

  color: #94a3b8;

  font-size: 13px;
}

.contact-help-box {
  margin-top: 34px;
  padding: 24px;

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #0f172a,
      #1e293b
    );

  color: #ffffff;
}

.contact-help-box h3 {
  margin: 0 0 10px;

  font-size: 20px;
}

.contact-help-box p {
  margin: 0 0 20px;

  color: #cbd5e1;

  line-height: 1.6;
}

.contact-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;

  padding: 0 18px;

  border-radius: 10px;

  background: var(--contact-whatsapp);
  color: #ffffff;

  text-decoration: none;

  font-weight: 800;
}


/* ========================================
   MAP
======================================== */

.contact-map-section {
  overflow: hidden;

  background: #ffffff;

  border: 1px solid var(--contact-border);
  border-radius: 20px;

  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.06);
}

.contact-map-heading {
  padding: 28px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-map-link {
  flex-shrink: 0;

  color: var(--contact-accent);

  text-decoration: none;

  font-weight: 700;
}

.contact-map {
  display: block;

  width: 100%;
  height: 430px;

  border: 0;
}


/* ========================================
   FLOATING WHATSAPP
======================================== */

.contact-floating-whatsapp {
  position: fixed;

  right: 24px;
  bottom: 24px;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: var(--contact-whatsapp);
  color: #ffffff;

  text-decoration: none;

  font-size: 26px;

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.25);

  z-index: 1500;

  transition: transform 0.2s ease;
}

.contact-floating-whatsapp:hover {
  transform: scale(1.08);
}


/* ========================================
   FOOTER
======================================== */

.contact-footer {
  padding: 64px 24px 24px;

  background: #07101d;
  color: #ffffff;
}

.contact-footer-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 40px;
}

.contact-footer-logo {
  display: inline-block;

  margin-bottom: 16px;

  color: #ffffff;

  text-decoration: none;

  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-footer p {
  margin: 0 0 10px;

  color: #94a3b8;

  line-height: 1.7;
}

.contact-footer h3 {
  margin: 0 0 16px;

  font-size: 15px;
}

.contact-footer a:not(.contact-footer-logo) {
  display: block;

  margin-bottom: 10px;

  color: #cbd5e1;

  text-decoration: none;

  font-size: 14px;
}

.contact-footer a:hover {
  color: #ffffff;
}

.contact-footer-bottom {
  max-width: 1200px;

  margin: 46px auto 0;
  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: #64748b;

  text-align: center;

  font-size: 13px;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1000px) {

  .contact-card-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .contact-content-grid {
    grid-template-columns: 1fr;
  }

  .contact-footer-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


@media (max-width: 760px) {

  .contact-header-inner {
    flex-wrap: wrap;
  }

  .contact-nav {
    width: 100%;

    order: 3;

    justify-content: center;
    flex-wrap: wrap;

    gap: 15px;
  }

  .contact-hero {
    padding-top: 80px;
    padding-bottom: 72px;
  }

  .contact-main-section {
    padding:
      48px 18px 70px;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-side-card {
    padding: 26px 22px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-map-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-map {
    height: 360px;
  }

  .contact-footer-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 480px) {

  .contact-header-inner {
    padding:
      14px 16px;
  }

  .contact-login-button {
    padding:
      0 13px;
  }

  .contact-nav a {
    font-size: 13px;
  }

  .contact-hero h1 {
    font-size: 38px;
  }

  .contact-hero-copy {
    font-size: 16px;
  }

  .contact-info-card {
    padding: 24px;
  }

  .hours-list > div {
    flex-direction: column;
    gap: 5px;
  }

  .hours-list strong {
    text-align: left;
  }

  .contact-map {
    height: 300px;
  }

  .contact-floating-whatsapp {
    right: 18px;
    bottom: 18px;

    width: 54px;
    height: 54px;
  }

}