/* =========================================================
   ZIPPEE ZOHO DESK — HEADER + MERCHANT HUB + EXPERTS + FOOTER
   Paste this entire file into the CSS tab.
   ========================================================= */

.Header__navbar,
.Header__navbar *,
.zdqa,
.zdqa * {
  box-sizing: border-box;
}

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

.Header__navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(159, 61, 168, 0.16);
  box-shadow: 0 4px 18px rgba(29, 29, 31, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: Arial, "Segoe UI", sans-serif;
}

.Header__container {
  max-width: 1200px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.Header__logo img {
  display: block;
  width: auto;
  height: 38px;
}

.Header__name {
  color: #1d1d1f;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.Header__menuTab {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.Header__menuList {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.Header__tabsTab,
.Header__tabsTab a {
  position: relative;
  color: #4e4952 !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.Header__tabsTab {
  padding: 10px 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.Header__tabsTab::after {
  position: absolute;
  right: 13px;
  bottom: 4px;
  left: 13px;
  height: 2px;
  background: #9f3da8 !important;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.Header__tabsTab:hover,
.Header__tabsTab:hover a {
  background: #f8f0fa;
  color: #722b7a !important;
}

.Header__tabsTab:hover::after,
.Header__tabsTab.active::after {
  transform: scaleX(1);
}

.Header__tabsTab.active,
.Header__tabsTab.active a {
  color: #9f3da8 !important;
}

.Header__menuList > li:not(.Header__tabsTab) {
  margin-left: 6px;
  padding: 10px 17px;
  border-radius: 7px;
  background: #9f3da8;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.Header__menuList > li:not(.Header__tabsTab) a {
  color: #fff !important;
  text-decoration: none;
}

.Header__menuicon {
  display: none;
  margin-left: auto;
  cursor: pointer;
}

.Header__menuBoxMain {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
}

.Header__menu,
.Header__menu::before,
.Header__menu::after {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 4px;
  background: #722b7a;
  content: "";
  position: relative;
}

.Header__menu::before {
  position: absolute;
  top: -7px;
}

.Header__menu::after {
  position: absolute;
  top: 7px;
}

/* ==================== MERCHANT HUB ==================== */

.zdqa {
  --zippee-ink: #1d1d1f;
  --zippee-purple: #9f3da8;
  --zippee-purple-dark: #722b7a;
  --zippee-muted: #65636a;
  --zippee-line: #e7e1e9;

  width: 100%;
  max-width: 1120px;
  margin: 38px auto;
  padding: 0 20px;
  color: var(--zippee-ink);
  font-family: Arial, "Segoe UI", sans-serif;
}

.zdqa__panel {
  padding: 30px;
  border: 1px solid var(--zippee-line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(159, 61, 168, 0.10), transparent 28rem),
    #fbf9fc;
  box-shadow: 0 14px 35px rgba(29, 29, 31, 0.06);
}

.zdqa__header {
  margin-bottom: 22px;
}

.zdqa__eyebrow {
  margin: 0 0 6px;
  color: var(--zippee-purple-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.zdqa h2 {
  margin: 0;
  color: var(--zippee-ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.zdqa__intro {
  margin: 7px 0 0;
  color: var(--zippee-muted);
  font-size: 14px;
  line-height: 1.5;
}

.zdqa__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zdqa__item {
  min-width: 0;
  grid-column: span 2;
}

.zdqa__item--half {
  grid-column: span 3;
}

.zdqa__item--wide {
  grid-column: 1 / -1;
}

.zdqa__card {
  display: grid;
  min-height: 108px;
  grid-template-columns: 44px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--zippee-line);
  border-radius: 14px;
  background: #fff;
  color: var(--zippee-ink);
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(29, 29, 31, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.zdqa__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(159, 61, 168, 0.15);
  border-radius: 11px;
  background: #f7eff8;
  font-size: 19px;
}

.zdqa__copy {
  min-width: 0;
}

.zdqa__title,
.zdqa__desc {
  display: block;
  overflow-wrap: anywhere;
}

.zdqa__title {
  color: var(--zippee-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.zdqa__desc {
  margin-top: 4px;
  color: var(--zippee-purple-dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.zdqa__arrow {
  color: var(--zippee-purple);
  font-size: 20px;
  font-weight: 500;
}

.zdqa__card:focus-visible {
  outline: 3px solid var(--zippee-purple-dark);
  outline-offset: 3px;
}

.zdqa__card--pincode {
  min-height: 82px;
  border-color: transparent;
  background: linear-gradient(105deg, #431b49, #762d80 52%, #9f3da8);
  box-shadow: 0 12px 26px rgba(114, 43, 122, 0.22);
}

.zdqa__card--pincode .zdqa__icon {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.14);
}

.zdqa__card--pincode .zdqa__title {
  color: #fff;
}

.zdqa__card--pincode .zdqa__desc,
.zdqa__card--pincode .zdqa__arrow {
  color: rgba(255, 255, 255, 0.84);
}

.zdqa__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (hover: hover) {
  .zdqa__card:hover {
    border-color: rgba(159, 61, 168, 0.45);
    box-shadow: 0 12px 24px rgba(29, 29, 31, 0.10);
    transform: translateY(-3px);
  }

  .zdqa__card:hover .zdqa__arrow {
    transform: translateX(4px);
  }

  .zdqa__card--pincode:hover {
    border-color: transparent;
    box-shadow: 0 16px 30px rgba(114, 43, 122, 0.30);
  }
}

/* ==================== CENTRED ZIPPEE WELCOME HERO ==================== */

#headerContent.Header__searchSection {
  min-height: 230px;
  padding: 28px 20px 32px;
  position: relative;
  overflow: hidden;
}

#headerContent > .Header__container,
#headerContent .Header__hero {
  width: 100%;
  min-height: 170px;
  margin: 0 auto;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px;
  text-align: center !important;
  position: relative;
  z-index: 1;
}

#headerContent .Header__heroCopy {
  width: 100%;
  text-align: center;
}

#headerContent .Header__searchTitle {
  position: static !important;
  transform: none !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #1d1d1f !important;
  -webkit-text-fill-color: #1d1d1f !important;
  font-size: clamp(34px, 3.2vw, 50px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.035em !important;
  text-align: center !important;
  white-space: nowrap;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.95),
    0 0 16px rgba(255, 255, 255, 0.9),
    0 0 30px rgba(255, 255, 255, 0.72);
}

#headerContent .Header__description {
  display: none !important;
}

#headerContent .Header__heroSearch,
#headerContent form {
  width: min(100%, 620px);
  margin: 0 auto !important;
  float: none !important;
}

/* ==================== TALK TO AN EXPERT ==================== */

.qa {
  padding: 60px 20px;
  text-align: center;
  background: #fafafa;
}

.qa-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.qa-head {
  margin-bottom: 40px;
}

.qa-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #888;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.qa-head h2 {
  font-size: 32px;
  margin: 0 0 10px 0;
  color: #1a1a1a;
  font-weight: 700;
}

.qa-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 10px;
}

.expert-grid {
  margin-bottom: 50px;
}

.it-team {
  margin-top: 20px;
}

.expert-team h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.expert-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.expert-card {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333;
  width: 130px;
  transition: transform 0.2s ease;
}

.expert-card:hover {
  transform: translateY(-4px);
}

.expert-card:hover img {
  border-color: #7b3fa0;
  box-shadow: 0 8px 24px rgba(123, 63, 160, 0.2);
}

.expert-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 12px auto;
  border: 3px solid #e8e8e8;
  transition: all 0.3s ease;
}

.expert-card span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  line-height: 1.4;
  color: #444;
}

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

.Footer__zippeeFooter {
  margin-top: 64px;
  padding: 26px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(105deg, #321438, #692573 55%, #9f3da8);
  color: rgba(255, 255, 255, 0.84);
  font-family: Arial, "Segoe UI", sans-serif;
}

.Footer__zippeeFooter .Footer__container2 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.Footer__zippeeBrand,
.Footer__zippeeLegal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.Footer__zippeeKicker {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.Footer__zippeeTagline {
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.30);
  font-size: 13px;
}

.Footer__zippeeLegal {
  font-size: 12px;
}

.Footer__zippeeFooter .Footer__footerLink {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.Footer__zippeeFooter .Footer__footerLink:hover {
  color: #f6ddfa;
  text-decoration: underline;
}

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

@media (max-width: 900px) {
  .Header__container {
    min-height: 68px;
    padding: 0 16px;
  }

  .Header__menuTab {
    display: none;
  }

  .Header__menuicon {
    display: block;
  }

  .Header__menuTab.is-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    padding: 12px 16px 18px;
    border-bottom: 1px solid rgba(159, 61, 168, 0.16);
    background: #fff;
    box-shadow: 0 12px 24px rgba(29, 29, 31, 0.08);
  }

  .Header__menuTab.is-open .Header__menuList {
    align-items: stretch;
    flex-direction: column;
  }

  .Header__menuTab.is-open .Header__tabsTab,
  .Header__menuTab.is-open .Header__menuList > li:not(.Header__tabsTab) {
    width: 100%;
    margin: 0;
  }

  .zdqa__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zdqa__item,
  .zdqa__item--half {
    grid-column: span 1;
  }

  .zdqa__item--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  #headerContent.Header__searchSection {
    min-height: 210px;
    padding: 24px 16px 28px;
  }

  #headerContent .Header__searchTitle {
    font-size: 32px !important;
    white-space: normal;
  }

  #headerContent .Header__heroSearch,
  #headerContent form {
    width: 100%;
  }

  .Footer__zippeeFooter .Footer__container2,
  .Footer__zippeeBrand {
    align-items: flex-start;
    flex-direction: column;
  }

  .Footer__zippeeFooter .Footer__container2 {
    gap: 16px;
  }

  .Footer__zippeeTagline {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .zdqa {
    margin: 28px auto;
    padding: 0 14px;
  }

  .zdqa__panel {
    padding: 22px 16px;
    border-radius: 16px;
  }

  .zdqa h2 {
    font-size: 24px;
  }

  .zdqa__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .zdqa__item,
  .zdqa__item--half,
  .zdqa__item--wide {
    grid-column: 1 / -1;
  }

  .zdqa__card {
    min-height: 96px;
    padding: 15px;
  }

  .qa-head h2 {
    font-size: 26px;
  }

  .expert-members {
    gap: 24px;
  }

  .expert-card {
    width: 110px;
  }

  .expert-card img {
    width: 85px;
    height: 85px;
  }
}
