
/* Nav menu items */
.Header__menuList,
.Header__menuList a,
.Header__nav li,
.Header__nav li a {
    color: #000000;
}
/* ─── HAMBURGER LINES — always black ─── */
.Header__menu,
.Header__menu::before,
.Header__menu::after {
  background-color: #000000 !important;
}

/* ─── BANNER OVERLAY ─── */
#headerContent.Header__searchSection {
  position: relative;
}

#headerContent.Header__searchSection::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 0;
}

/* Push all content above the overlay */
.Header__container {
  position: relative;
  z-index: 1;
}

/* ─── TEXT — readable on dark overlay ─── */
.Header__searchTitle {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.Header__description {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
/* ─── REDUCE GAP between title and description ─── */
.Header__searchTitle {
  margin-bottom: 10px;  /* was likely 24px or more — reduce to taste */
}

.Header__description {
  margin-top: 0;
}

/* new */

/* ─── NAVBAR LAYOUT — logo left, menu right ─── */
.Header__navbar {
  background: #ffffff;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}

.Header__navbar .Header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  gap: 16px;
}

/* ─── LOGO — far left ─── */
.Header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.Header__logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ─── NAV MENU — far right ─── */
.Header__menuTab {
  display: flex;
  align-items: center;
  margin-left: auto;
}

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

.Header__tabsTab {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  padding: 4px 3px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.Header__tabsTab:hover {
  background: #FFF8E7;
  color: #f0aa19;
}

.Header__tabsTab a,
.Header__tabsTab a:visited {
  color: inherit;
  text-decoration: none;
}

/* ─── HIDE Zoho's inline search in navbar ─── */
.Header__navbar > .Header__container > form,
.Header__navbar > .Header__container > [id*="search"],
.Header__navbar > .Header__container > [class*="search"] {
  display: none !important;
}

/* ─── HAMBURGER ─── */
.Header__menuicon {
  display: none;
  cursor: pointer;
}

.Header__menu,
.Header__menu::before,
.Header__menu::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #111827;
  border-radius: 2px;
  position: relative;
  transition: all 0.25s ease;
}

.Header__menu::before,
.Header__menu::after {
  content: '';
  position: absolute;
  left: 0;
}

.Header__menu::before { top: -7px; }
.Header__menu::after  { top:  7px; }

.Header__clBoth {
  clear: both;
  display: none;
}

/* ════════════════════════════════════════════
   BANNER / SEARCH SECTION
   ════════════════════════════════════════════ */
#headerContent.Header__searchSection {
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Overlay */
#headerContent.Header__searchSection::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 46, 22, 0.72);
  z-index: 0;
}

#headerContent .Header__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 24px;
}

/* ─── Banner text ─── */
.Header__searchTitle {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom:0px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.Header__description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
   margin-bottom:3px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* ─── Rounded search bar ─── */
.Header__searchHome,
.Header__searchHome form,
[id*="searchHome"],
[class*="searchHome"] {
  border-radius: 100px !important;
  overflow: hidden;
  width: 100%;
}

.Header__searchHome input,
.Header__searchHome input[type="text"],
.Header__searchHome input[type="search"],
[class*="searchHome"] input {
  border-radius: 50px 0 0 50px !important;
  border: none !important;
  outline: none !important;
}

.Header__searchHome button,
.Header__searchHome [data-id="searchButton"],
[class*="searchHome"] button {
  border-radius: 0 50px 50px 0 !important;
}




.Button__footerBtn{
background-color: #F0AA19;
  transition: background-color 0.2s ease;
}

.Button__footerBtn:hover {
  background-color: #C88D10;
}

.commonStyle__zt3BrandBg{
background-color: #F0AA19;
transition: background-color 0.2s ease;
}

.commonStyle__zt3BrandBg:hover {
  background-color: #C88D10;
}





/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
  .Header__navbar .Header__container {
    padding: 0 16px;
    height: 58px;
    flex-wrap: wrap;
    position: relative;
  }

  /* Show hamburger */
  .Header__menuicon {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  /* Hide nav by default on mobile */
  .Header__menuTab {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #E5E7EB;
    border-top: 1px solid #E5E7EB;
    z-index: 99;
    padding: 8px 16px 14px;
  }

  .Header__menuTab.open {
    display: flex;
  }

  .Header__menuList {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 2px;
  }

  .Header__tabsTab {
    padding: 11px 14px;
    border-bottom: 1px solid #F3F4F6;
    border-radius: 8px;
  }

  .Header__tabsTab:last-child {
    border-bottom: none;
  }
  

  /* Banner */
  #headerContent .Header__container {
    padding: 40px 16px;
  }

  .Header__searchTitle {
    font-size: 22px;
  }

  .Header__description {
    font-size: 13px;
  }
}

.Header__searchHome,
.Header__searchHome form,
[id*="searchHome"],
[class*="searchHome"] {
  border-radius: 50px !important;
  overflow: hidden;
  
  
}


/* ─── REDUCE HOME MODULE CONTAINER HEIGHT ─── */
#kb_module,
#ticket_module {
  padding-top: 15px !important;
  padding-bottom: 20px !important;
  margin-top: 0 !important;
}

#layoutContainer{
  min-width:30vw;
  min-height:40vh;
}







/* ═══════════════════════════════════════════════════
   SAMR Technology — Footer Stylesheet
   File: samr-footer.css
   ═══════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── TOKENS ─── */
:root {
  --teal-deep:  #0D3D38;
  --teal-mid:   #0F4E4A;
  --teal-light: #1A6560;
  --gold:       #F0AA19;
  --gold-dark:  #C88D10;
  --white:      #ffffff;
  --white-70:   rgba(255, 255, 255, 0.70);
  --white-50:   rgba(255, 255, 255, 0.50);
  --white-20:   rgba(255, 255, 255, 0.12);
  --border:     rgba(255, 255, 255, 0.10);
  --font-head:  'Georgia', 'Times New Roman', serif;
  --font-body:  -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ═══════════════════════════════════════════════════
   FOOTER WRAPPER
   ═══════════════════════════════════════════════════ */
footer.samr-footer {
  font-family: var(--font-body);
  background-color: var(--teal-deep);
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 110%, rgba(15, 78, 74, 0.8) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% -10%, rgba(26, 101, 96, 0.4) 0%, transparent 55%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Decorative circle rings */
footer.samr-footer::before {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 40px solid var(--white-20);
  pointer-events: none;
}

footer.samr-footer::after {
  content: '';
  position: absolute;
  right: 60px;
  bottom: 60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 28px solid var(--white-20);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   MAIN GRID
   ═══════════════════════════════════════════════════ */
.samr-footer__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════
   COL 1 — BRAND
   ═══════════════════════════════════════════════════ */

/* ─── FOOTER LOGO IMAGE — white ─── */
.samr-footer__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 0px;
}

.samr-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  text-decoration: none;
}

.samr-footer__logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.samr-footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.samr-footer__logo-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  font-family: var(--font-head);
}

.samr-footer__logo-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--white-70);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 3px;
}

.samr-footer__desc {
  font-size: 13.5px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 340px;
}

.samr-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border: 2px solid var(--white);
  border-radius: 50px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.samr-footer__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--teal-deep);
}

.samr-footer__cta-arrow {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════
   COL 2 — CONTACT
   ═══════════════════════════════════════════════════ */
.samr-footer__col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.samr-footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.samr-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.samr-footer__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: var(--gold);
}

.samr-footer__contact-text {
  font-size: 13.5px;
  color: var(--white-70);
  line-height: 1.6;
}

.samr-footer__contact-text strong {
  color: var(--white);
  font-weight: 600;
}

.samr-footer__contact-text a {
  color: var(--white-70);
  text-decoration: none;
  transition: color 0.15s;
}

.samr-footer__contact-text a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   COL 3 — SERVICE LOCATIONS
   ═══════════════════════════════════════════════════ */
.samr-footer__city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.samr-footer__city {
  font-size: 13.5px;
  color: var(--white-70);
  transition: color 0.15s;
  cursor: default;
}

.samr-footer__city:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   BOTTOM BAR
   ═══════════════════════════════════════════════════ */
.samr-footer__bottom {
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.samr-footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.samr-footer__copyright {
  font-size: 12.5px;
  color: var(--white-50);
}

.samr-footer__legal {
  display: flex;
  gap: 20px;
}

.samr-footer__legal a {
  font-size: 12.5px;
  color: var(--white-50);
  text-decoration: none;
  transition: color 0.15s;
}

.samr-footer__legal a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 1024px
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .samr-footer__main {
    grid-template-columns: 1fr 1fr;
    padding: 48px 32px 40px;
    gap: 40px;
  }

  .samr-footer__locations {
    grid-column: 1 / -1;
  }

  .samr-footer__city-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .samr-footer__bottom-inner {
    padding: 18px 32px;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 768px
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .samr-footer__main {
    grid-template-columns: 1fr;
    padding: 40px 24px 32px;
    gap: 36px;
  }

  .samr-footer__desc {
    max-width: 100%;
  }

  .samr-footer__city-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .samr-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 8px;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE ≤ 480px
   ═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .samr-footer__main {
    padding: 32px 16px 24px;
    gap: 28px;
  }

  .samr-footer__logo-name {
    font-size: 22px;
  }

  .samr-footer__city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .samr-footer__bottom-inner {
    padding: 14px 16px;
  }

  .samr-footer__legal {
    flex-wrap: wrap;
    gap: 12px;
  }
}
