/* ============================
   Page: Support Landing
   Scope: .page-support
   ============================ */

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

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

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

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

.page-support__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-support__hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
}

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

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

.page-support__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-support__actions .btn {
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.page-support__actions .btn--primary {
  background-color: hsl(var(--accent-blue));
  color: #fff;
}

.page-support__actions .btn--primary:hover {
  background-color: hsl(var(--accent-blue-hover));
  transform: translateY(-2px);
}

.page-support__actions .btn--secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.page-support__actions .btn--secondary:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .page-support__actions a {
    width: 100%;
  }
}

/* ===== BRAND STRIP ===== */
.page-support__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-support__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 ===== */
.support-intro {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

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

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

.how-to-get-support,
.service-levels,
.what-we-support {
  padding: 80px 0;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }

  .modern-table th {
    background: #0b67e6;
    color: #fff;
    text-align: left;
    padding: 14px 18px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .modern-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #e5e7eb;
    color: #333;
    font-size: 0.95rem;
  }

  .modern-table tbody tr:hover {
    background: #f9fafb;
    transition: background 0.2s ease;
  }

  .priority-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
  }

  .priority-badge.p1 { background: #d92c2c; }
  .priority-badge.p2 { background: #eab308; }
  .priority-badge.p3 { background: #16a34a; }

  @media (max-width: 768px) {
    .modern-table thead {
      display: none;
    }
    .modern-table, .modern-table tbody, .modern-table tr, .modern-table td {
      display: block;
      width: 100%;
    }
    .modern-table tr {
      margin-bottom: 1rem;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .modern-table td {
      border: none;
      padding: 10px 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .modern-table td::before {
      content: attr(data-label);
      font-weight: 600;
      color: #0b2042;
    }
  }

  .log-ticket {
  padding: 80px 20px;
}

.ticket-card {
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.log-ticket .sub-heading {
  text-align: center;
  color: #6b7280;
  margin-bottom: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

input, select, textarea {
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

/* NOTE BOX */
.ticket-note {
  margin: 30px auto 0;
  background: #f9fafb;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  padding: 24px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ticket-note h4 {
  margin-bottom: 10px;
  color: #111827;
  font-weight: 700;
}

.ticket-note ul {
  margin: 0;
  padding-left: 20px;
  color: #374151;
}

.ticket-note li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.contact-options {
  padding-bottom: 80px;
}

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

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

@media (min-width: 1024px) {
  .page-support-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-support .services-grid {
    margin: 0;
  }
}

@media (max-width: 991.98px) {
  .page-support .brand-strip__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .page-support .services-grid {
    margin: 0;
  }
}

@media (max-width: 1199.98px) {
  .brand-strip__logos {
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
  }
}