/* ============================
   Page: Contact Us Landing
   Scope: .page-contact-us
   ============================ */

.page-contact-us { --accent: #2563eb; --muted:#6b7280; --card-bg:#fff; }

/* ===== HERO SECTION ===== */
.page-contact__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.page-contact__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-contact__hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.page-contact__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
}

.page-contact__title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.page-contact__subtitle {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  color: #f1f1f1;
}

/* ===== BRAND STRIP ===== */
.page-contact__brand-strip {
  background: #fff;
  padding: 3rem 1rem;
}

.brand-strip__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.brand-strip__heading h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: hsl(var(--text-dark));
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.brand-strip__heading p {
  color: hsl(var(--text-muted));
  font-size: 1rem;
}

.brand-strip__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  align-items: center;
  justify-items: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-strip__logo img {
  max-width: 140px;
  max-height: 55px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.brand-strip__logo img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

.page-contact__brands { padding: 2rem 0; }
.brands-card { 
  background: radial-gradient(900px at 50% 45%, rgba(59, 130, 246, 0.1), rgba(255, 255, 255, 0) 60%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
 }
.brands-card__title { text-align:center; font-weight:600; color: var(--muted); margin: 0 0 0.75rem; font-size: .95rem; }
.brands-list { display:flex; align-items:center; justify-content: center; gap: 2rem; flex-wrap:wrap; padding: .75rem 0; }
.brands-list__item { display:flex; align-items:center; justify-content:center; max-height:48px; opacity:.7; transition: opacity .18s ease, transform .18s ease; filter: grayscale(1); }
.brands-list__item img { max-height: 40px; display:block; width: auto; }
.brands-list__item:hover { opacity:1; transform: translateY(-4px); filter: none; }

/* ===== OVERVIEW ===== */
.contact-intro {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.page-contact__intro {
    padding: 0 1rem 3rem;
    background-color: #f9fafb;
}

.page-contact__intro-text {
  text-align: center;
  font-size: 1rem;
  color: #4b5563;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.contact-routing {
  padding: 80px 0;
}

.contact-routing__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.page-contact__sales {padding: 3rem 0; background-color: #f9fafb;}
.page-contact__support {padding: 3rem 0;}
.page-contact__accounts {padding: 3rem 0; background-color: #f9fafb;}

.page-contact__form {
  padding: 80px 0;
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 48px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;

    .form-group {
      display: flex;
      flex-direction: column;

      label {
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--text-dark);
      }

      input,
      select,
      textarea {
        border: 1px solid #d1d5db;
        border-radius: 6px;
        padding: 12px 14px;
        font-size: 1rem;
        background: #f9fafb;
        transition: border-color 0.2s ease, background 0.2s ease;

        &:focus {
          outline: none;
          border-color: var(--primary-color);
          background: #fff;
          box-shadow: 0 0 0 3px rgba(0,85,165,0.1);
        }
      }

      textarea {
        min-height: 140px;
        resize: vertical;
      }

      &.full-width {
        grid-column: span 2;
      }
    }

    @media (max-width: 767.98px) {
      .form-group {
        width: 100%;
      }
    }
  }

  @media (max-width: 767.98px) {
    .form-grid {
      display: flex;
      flex-wrap: wrap;
    }
  }

  .form-actions {
    text-align: center;
    margin-top: 28px;
  }
}

/* VISIT US SECTION */
.page-about-contact__visit {
  padding: 80px 0;
}

.page-about-contact__visit .grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .page-about-contact__visit .grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.visit-info {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.visit-info a {
  color: var(--primary);
  text-decoration: none;
}

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

.visit-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

@media (max-width: 767.98px) {
  .page-contact .services-grid {
    margin: 0;
  }
}

@media (max-width: 991.98px) {
  .page-contact .services-grid {
    margin: 0;
  }
}