:root {
  --bg-dark: #272A2C;
  --bg-light: #F3F5F7;
  --panel-dark: #1C1F22;
  --text: #272A2C;
  --muted: #6B7280;
  --muted-2: #9CA3AF;
  --white: #ffffff;
  --brand: #0B1520;   /* heading text */
  --accent: #00C2A8;  /* focus/accent if needed */
  --radius-lg: 14px;
  --radius-md: 10px;
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, .15);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, .2);
}

/* Page baseline (contact page uses light bg) */
body {
  background: var(--bg-light);
  color: var(--text);
}

/* Keep navbar consistent with site */
.navbar {
  background: var(--bg-dark);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
}
.navbar .logo { font-weight: 800; font-size: 1.5rem; letter-spacing: 1px; }
.navbar a { color: #fff; text-decoration: none; font-weight: 600; margin-left: 25px; }
.navbar a[aria-current="page"] { opacity: .85; }
.navbar a:hover { opacity: .85; }

/* ===== CONTACT ===== */
.contact { padding: 70px clamp(16px, 6vw, 60px) 90px; }
.contact-head { text-align: center; margin-bottom: 24px; }
.contact-head h2 { font-size: clamp(1.9rem, 4.5vw, 2.6rem); font-weight: 800; color: var(--brand); }
.contact-head p { color: var(--muted); margin-top: 6px; }

.contact-wrap {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 24px auto 0;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Left info panel */
.contact-info {
  background: var(--bg-dark);
  color: #E5E7EB;
  padding: clamp(20px, 4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info h3 { color: #fff; font-size: 1.25rem; font-weight: 800; }
.contact-info .hint { color: var(--muted-2); font-size: .95rem; margin-top: -6px; }

.info-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 8px; padding: 0; }
.info-list li { display: flex; gap: 12px; align-items: flex-start; }
.info-list i { width: 20px; font-size: 18px; color: #fff; margin-top: 2px; opacity: .9; }
.info-list span { color: #E5E7EB; }

.info-head { margin: 8px 0; font-weight: 800; color: #fff; }
.info-item small { display: block; color: var(--muted-2); margin-bottom: 4px; }
.info-item div { color: #E5E7EB; }

/* Map (iframe) */
.map-wrap { margin-top: 12px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.map { width: 100%; height: 220px; border: 0; }

/* Socials */
.socials { margin-top: auto; display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%; background: var(--panel-dark); color: #fff; transition: .2s;
}
.socials a:hover { transform: translateY(-2px); background: #2A2F34; }
.socials a i { font-size: 16px; line-height: 36px; }

/* Right form */
.contact-form { padding: clamp(20px, 4.5vw, 30px); }
.row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field span { color: var(--muted); font-size: .95rem; }
.field input, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 2px solid #E5E7EB;
  padding: 12px 6px 10px; font-size: 1rem; outline: none;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus {
  border-color: var(--bg-dark); background: #F9FAFB; box-shadow: 0 0 0 3px rgba(39, 42, 44, .12);
}

.subject { border: none; margin: 18px 0 6px; padding: 0; }
.subject legend { color: var(--muted); margin-bottom: 10px; font-size: .95rem; }
.subject label { margin-right: 18px; color: var(--text); font-size: .98rem; }
.subject input { transform: translateY(1px); }

.actions { display: flex; align-items: center; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.btn-send {
  background: var(--bg-dark); color: #fff; border: 0; border-radius: var(--radius-md);
  padding: 12px 22px; font-weight: 700; cursor: pointer; transition: transform .15s ease, opacity .2s;
  box-shadow: var(--shadow-sm);
}
.btn-send:hover { transform: translateY(-1px); opacity: .92; }
.form-note { color: #16a34a; font-weight: 600; }

/* Footer (reusing your site footer classes) */
footer.footer {
  background: var(--bg-dark); color: #E5E7EB; text-align: center; padding: 20px; font-size: .9rem; margin-top: 60px;
}
.footer-inner { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-left p { font-size: .95rem; color: #9CA3AF; margin: 0; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: #E5E7EB; text-decoration: none; font-weight: 500; font-size: .95rem; }
.footer-links a:hover { color: #fff; }
.footer-store { display: flex; gap: 10px; align-items: center; }
.footer-store img { height: 38px; width: auto; display: block; }

/* Responsive */
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .row.two { grid-template-columns: 1fr; }
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}