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

.contact-page {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  margin: 0;
}

/* --- Hero --- */
.contact-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2b2b2b;
  color: #fff;
  padding: 60px 80px;
  min-height: 200px;
}

.contact-hero h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  margin: 0;
}

.contact-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 280px;
}

.community-label {
  font-size: 14px;
  font-weight: 300;
  color: #ccc;
}

.hero-line {
  width: 100%;
  max-width: 400px;
  height: 1px;
  background: #fff;
}

/* --- Social bar --- */
.social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #fff;
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
}

.social-bar p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.social-bar .social-icons {
  display: flex;
  align-items: center;
}

/* --- Form section --- */
.contact-form-section {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 60px;
}

.contact-form-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
}

.faq-box {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 30px;
  max-width: 320px;
}

.faq-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 24px;
}

.faq-btn {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s;
}

.faq-btn:hover {
  background: #e0e0e0;
}

/* --- Form fields --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  color: #aaa;
}

.form-group input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  padding: 8px 0;
  outline: none;
}

.form-group input::placeholder {
  color: #666;
}

.form-group input:focus {
  border-bottom-color: #fff;
}

.form-group textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  padding: 16px;
  resize: vertical;
  outline: none;
}

.form-group textarea:focus {
  border-color: #fff;
}

/* Custom checkbox */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #aaa;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked {
  background: #fff;
  box-shadow: inset 0 0 0 3px #1a1a1a;
}

.submit-btn {
  align-self: flex-start;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 14px 40px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 8px;
}

.submit-btn:hover {
  background: #fff;
  color: #111;
}

/* --- Showrooms --- */
.showroom-section {
  background: #fff;
  padding: 80px 60px;
}

.showroom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.showroom-left h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: #888;
  margin-bottom: 24px;
  line-height: 1.3;
}

.showroom-left p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  max-width: 400px;
}

.showroom-right h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: lowercase;
}

.showroom-location {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 28px 36px;
  align-items: start;
}

.showroom-location-media img {
  width: 100%;
  max-width: 180px;
  display: block;
}

.showroom-location-text h3 {
  margin-bottom: 16px;
}

.showroom-location-text .hours {
  margin-bottom: 20px;
}

.hours {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.showroom-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pill-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #111;
  border-radius: 50px;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s, color 0.2s;
}

.pill-btn:hover {
  background: #111;
  color: #fff;
}

/* --- Resellers --- */
.reseller-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  background: #fff;
  border-top: 1px solid #eee;
  max-width: 1200px;
  margin: 0 auto;
}

.reseller-section p {
  font-size: 15px;
  color: #333;
  margin: 0;
}

.reseller-link {
  font-size: 12px;
  letter-spacing: 1px;
  color: #111;
  text-decoration: underline;
  white-space: nowrap;
}

/* --- Map --- */
.map-section iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

/* --- Contact details --- */
.contact-details {
  background: #fff;
  text-align: center;
  padding: 80px 40px;
}

.contact-details h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
}

.contact-details p {
  font-size: 15px;
  line-height: 2;
  color: #444;
}

.contact-details a {
  color: #111;
  text-decoration: none;
}

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

/* --- Responsive --- */
@media (max-width: 992px) {
  .contact-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 24px;
  }

  .contact-hero-right {
    align-items: flex-start;
    width: 100%;
  }

  .contact-form-inner,
  .showroom-inner {
    grid-template-columns: 1fr;
  }

  .showroom-location {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .showroom-location-media img {
    max-width: 160px;
  }

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

  .reseller-section {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .contact-form-section,
  .showroom-section {
    padding: 40px 24px;
  }

  .social-bar {
    flex-direction: column;
    gap: 12px;
  }
}