/**
 * Siyam Holidays – Frontend theme (logo-matched, one-hue blue chrome)
 * Chrome (topbar / header / footer): navy → royal blue family
 * Accent CTA orange kept only for action buttons
 */
html, body { font-family: var(--sh-font-family, Tahoma, sans-serif); }
:root {
  /* Reference mock: deep navy + bright orange */
  --sh-dark: #0c2340;
  --sh-primary: #1a5fad;
  --sh-primary-light: #2b7fd4;
  --sh-accent: #1a5fad;
  --sh-accent-soft: #9ec5ea;
  --sh-cta: #f57c00;
  --sh-cta-hover: #e06e00;
  --sh-topbar-bg: #0c2340;
  --sh-topbar-text: #ffffff;
  --sh-topbar-muted: rgba(255, 255, 255, 0.9);
  --sh-topbar-link-hover: #9ec5ea;
  --sh-cta-bg: #f57c00;
  --sh-cta-bg-hover: #e06e00;
  --sh-nav-link: #0c2340;
  --sh-nav-link-hover: #1a5fad;
  --sh-nav-dropdown-bg: #ffffff;
  --sh-nav-dropdown-hover: #eef5fb;
  --sh-footer-bg: #0c2340;
  --sh-footer-text: #ffffff;
  --sh-chrome-gradient: linear-gradient(105deg, #081829 0%, #0c2340 48%, #143a66 100%);
  --sh-header-bg: #ffffff;
  --sh-header-border: rgba(12, 35, 64, 0.1);
  --sh-page-bg: #f3f6f9;
}

/* Top bar – logo navy chrome */
.sh-topbar {
  background: var(--sh-chrome-gradient);
  background-color: var(--sh-topbar-bg);
  color: var(--sh-topbar-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(61, 142, 201, 0.35);
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}
.sh-topbar a { color: var(--sh-topbar-muted); text-decoration: none; transition: color 0.15s ease; }
.sh-topbar a:hover { color: var(--sh-topbar-link-hover); }
.sh-topbar .sh-cta-btn,
.sh-header .sh-cta-btn,
a.sh-header-cta {
  background-color: var(--sh-cta-bg) !important;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(232, 118, 43, 0.35);
}
.sh-topbar .sh-cta-btn:hover,
.sh-header .sh-cta-btn:hover,
a.sh-header-cta:hover {
  background-color: var(--sh-cta-bg-hover) !important;
  color: #fff !important;
}
.sh-topbar span { color: var(--sh-topbar-muted); }
.sh-topbar i { color: var(--sh-accent-soft); opacity: 0.95; }
.sh-topbar-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.7rem;
}
.sh-topbar-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}
.sh-topbar-lang a { margin: 0 0.2rem; }


/* Logged-in customer account menu — Traveloka-style click dropdown */
.sh-topbar .sh-user-menu {
  position: relative;
  display: inline-block;
  z-index: 10070;
  vertical-align: middle;
}

.sh-topbar button.sh-user-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: min(15rem, 46vw);
  border: none;
  background: transparent !important;
  color: #fff !important;
  padding: 0.15rem 0.25rem;
  border-radius: 0.35rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.3;
  box-shadow: none !important;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.sh-topbar button.sh-user-menu-trigger:hover,
.sh-topbar .sh-user-menu.is-open button.sh-user-menu-trigger {
  color: var(--sh-topbar-link-hover) !important;
  opacity: 1;
}

.sh-user-menu-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.7rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.sh-user-menu-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sh-user-menu-caret {
  font-size: 0.62rem;
  opacity: 0.92;
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

.sh-topbar .sh-user-menu.is-open .sh-user-menu-caret {
  transform: rotate(180deg);
}

.sh-topbar .sh-user-menu-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: min(18.5rem, 92vw);
  background: #fff;
  color: #1f2937;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
  overflow: hidden;
  z-index: 10080;
}

.sh-topbar .sh-user-menu-dropdown[hidden] {
  display: none !important;
}

.sh-topbar .sh-user-menu.is-open .sh-user-menu-dropdown {
  display: block !important;
}

.sh-user-menu-head {
  padding: 1rem 1rem 0.85rem;
  background: linear-gradient(135deg, #334155 0%, #1e3a5f 55%, #0f2744 100%);
  color: #fff;
}

.sh-user-menu-head-name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.sh-user-menu-head-email {
  margin: 0.25rem 0 0.65rem;
  font-size: 0.78rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sh-user-menu-tier {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.45rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95) !important;
  text-decoration: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sh-user-menu-tier:hover,
.sh-user-menu-tier:focus {
  color: #fde68a !important;
  outline: none;
}

.sh-user-menu-tier i:first-child {
  color: #fbbf24;
  width: 1rem;
  text-align: center;
}

.sh-user-menu-tier-arrow {
  margin-left: auto;
  font-size: 0.62rem;
  opacity: 0.85;
}

.sh-user-menu-links {
  padding: 0.35rem 0 0.45rem;
  background: #fff;
}

.sh-topbar .sh-user-menu-dropdown .sh-user-menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.62rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155 !important;
  text-decoration: none !important;
  transition: background 0.12s ease, color 0.12s ease;
}

.sh-topbar .sh-user-menu-dropdown .sh-user-menu-link:hover,
.sh-topbar .sh-user-menu-dropdown .sh-user-menu-link:focus {
  background: #f1f5f9;
  color: var(--sh-primary) !important;
  outline: none;
}

.sh-topbar .sh-user-menu-dropdown .sh-user-menu-link i {
  width: 1.15rem;
  text-align: center;
  color: var(--sh-primary);
  flex-shrink: 0;
  font-size: 0.95rem;
}

.sh-topbar .sh-user-menu-dropdown .sh-user-menu-link--logout {
  border-top: 1px solid #e5e7eb;
  margin-top: 0.15rem;
  padding-top: 0.75rem;
}

.sh-topbar .sh-user-menu-dropdown .sh-user-menu-link--logout i {
  color: #64748b;
}

.sh-topbar .sh-user-menu-dropdown .sh-user-menu-link--logout:hover,
.sh-topbar .sh-user-menu-dropdown .sh-user-menu-link--logout:focus {
  background: #fef2f2;
  color: #b91c1c !important;
}

.sh-topbar .sh-user-menu-dropdown .sh-user-menu-link--logout:hover i,
.sh-topbar .sh-user-menu-dropdown .sh-user-menu-link--logout:focus i {
  color: #b91c1c;
}

/* Logo tagline – smaller than logo */
.sh-tagline { font-size: 0.65rem; font-weight: 600; color: var(--sh-dark); max-width: 140px; line-height: 1.2; }
@media (min-width: 640px) { .sh-tagline { font-size: 0.7rem; max-width: 160px; } }

/* Nav links */
.sh-nav a,
.sh-nav-link {
  color: var(--sh-nav-link);
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  text-decoration: none;
  font-size: 0.875rem;
  white-space: nowrap;
}
.sh-nav a:hover,
.sh-nav-link:hover { color: var(--sh-nav-link-hover); }
.sh-nav--main .sh-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 2px;
  background: var(--sh-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}
.sh-nav--main .sh-nav-link:hover::after,
.sh-nav--main .sh-nav-link.is-active::after {
  transform: scaleX(1);
}
.sh-nav--main .sh-nav-link.is-active {
  color: var(--sh-primary);
}
.sh-nav .sh-btn {
  background: linear-gradient(135deg, var(--sh-primary) 0%, var(--sh-primary-light) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(30, 95, 158, 0.28);
}
.sh-nav .sh-btn:hover {
  background: linear-gradient(135deg, var(--sh-primary-light) 0%, var(--sh-accent) 100%);
  color: #fff;
}

/* Dropdown */
.sh-dropdown { background: var(--sh-nav-dropdown-bg); }
.sh-dropdown a:hover { background: var(--sh-nav-dropdown-hover); color: var(--sh-primary); }

/* Primary button (Support, etc.) */
.sh-btn { background-color: var(--sh-primary); color: #fff; border-radius: var(--sh-btn-radius, 8px); }
.sh-btn:hover { background-color: var(--sh-primary-light); color: #fff; }

/* Main header – white bar like design */
.sh-header {
  background: #ffffff !important;
  border-bottom: 1px solid var(--sh-header-border);
  box-shadow: 0 2px 16px rgba(10, 37, 64, 0.06) !important;
}
.sh-header-row {
  min-height: 4.25rem;
}
#mobileMenu,
.sh-mobile-menu {
  border-color: var(--sh-header-border) !important;
  background: #f7f9fc;
  padding: 0.65rem 0 1rem;
  border-top: 1px solid var(--sh-header-border);
}
.sh-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem 0.5rem;
  max-height: min(70vh, 32rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.sh-mobile-menu__group {
  margin: 0.65rem 0.35rem 0.25rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a8a9a;
}
.sh-mobile-menu__group:first-child {
  margin-top: 0.15rem;
}
.sh-mobile-menu__link {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.85rem;
  padding: 0.65rem 0.85rem !important;
  border-radius: 0.7rem !important;
  background: #fff;
  border: 1px solid #e6edf4;
  color: var(--sh-nav-link) !important;
  font-weight: 650;
  font-size: 0.92rem;
  text-decoration: none !important;
  box-shadow: 0 1px 2px rgba(12, 35, 64, 0.04);
  touch-action: manipulation;
}
.sh-mobile-menu__link > i:first-child {
  width: 1.35rem;
  text-align: center;
  color: var(--sh-primary, #1a5fad);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.sh-mobile-menu__link span {
  flex: 1 1 auto;
  min-width: 0;
}
.sh-mobile-menu__chev {
  font-size: 0.7rem;
  color: #a0aec0;
  flex-shrink: 0;
}
.sh-mobile-menu__link:hover,
.sh-mobile-menu__link:focus {
  background: #eef5fb !important;
  border-color: #c5d4e4;
  color: var(--sh-nav-link-hover) !important;
  text-decoration: none !important;
}
.sh-mobile-menu__link.is-active {
  border-color: rgba(26, 95, 173, 0.45);
  background: #eef5fb !important;
  color: var(--sh-primary, #1a5fad) !important;
}
#mobileMenu .sh-nav a:not(.sh-cta-btn) {
  color: var(--sh-nav-link);
  border-radius: 0.5rem;
}
#mobileMenu .sh-nav a:not(.sh-cta-btn):hover {
  background: var(--sh-nav-dropdown-hover);
  color: var(--sh-nav-link-hover);
}
@media (max-width: 1279px) {
  .sh-header-logo img {
    height: 3.25rem;
  }
}

/* Sticky footer – footer at bottom of viewport when content is short */
.sh-page { display: flex; flex-direction: column; min-height: 100vh; }
.sh-page-main { flex: 1 1 auto; min-height: 0; width: 100%; }
.sh-page > .sh-topbar,
.sh-page > header,
.sh-page > footer { flex-shrink: 0; }

/* Footer – same navy chrome as topbar (one-color brand system) */
.sh-footer,
footer.sh-footer {
  background: var(--sh-chrome-gradient) !important;
  background-color: var(--sh-footer-bg, var(--sh-dark)) !important;
  color: var(--sh-footer-text, #ffffff) !important;
}
.sh-footer h3,
.sh-footer h4 {
  color: #ffffff !important;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.sh-footer a {
  color: rgba(255, 255, 255, 0.86) !important;
  transition: color 0.15s ease;
}
.sh-footer a:hover {
  color: var(--sh-accent-soft, #a8d4f0) !important;
}
.sh-footer p,
.sh-footer li {
  color: rgba(255, 255, 255, 0.9) !important;
}
.sh-footer .border-t {
  border-color: rgba(168, 212, 240, 0.22) !important;
}

/* Compact dynamic footer */
.sh-footer-compact {
  font-family: var(--sh-font-family, Tahoma, sans-serif);
}
.sh-footer-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sh-primary) 0%, var(--sh-accent) 50%, var(--sh-primary-light) 100%);
}
.sh-footer-actions .sh-footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(168, 212, 240, 0.22);
  color: #fff !important;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sh-footer-actions .sh-footer-pill:hover {
  background: rgba(61, 142, 201, 0.35);
  border-color: rgba(168, 212, 240, 0.55);
  color: var(--sh-accent-soft) !important;
}
.sh-footer-pill-cta {
  background: var(--sh-cta, #e8762b) !important;
  border-color: transparent !important;
  color: #0f172a !important;
}
.sh-footer-pill-cta:hover {
  background: var(--sh-cta-hover, #d46920) !important;
  color: #0f172a !important;
}
.sh-footer-pill-wa {
  background: rgba(37, 211, 102, 0.2) !important;
  border-color: rgba(37, 211, 102, 0.4) !important;
}
.sh-footer-pill-text {
  max-width: 9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sh-footer-pill-email {
  max-width: 11rem;
}
@media (max-width: 480px) {
  .sh-footer-pill-text,
  .sh-footer-pill-email {
    display: none;
  }
}
.sh-footer-social {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  text-decoration: none !important;
}
.sh-footer-social:hover {
  background: var(--sh-cta, #e8762b);
  color: #0f172a !important;
}
.sh-footer-fold-title {
  list-style: none;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 0.15rem 0;
  user-select: none;
}
.sh-footer-fold-title::-webkit-details-marker {
  display: none;
}
.sh-footer-fold-title::before {
  content: "▸ ";
  color: var(--sh-cta, #e8762b);
}
.sh-footer-fold[open] .sh-footer-fold-title::before {
  content: "▾ ";
}
@media (min-width: 768px) {
  .sh-footer-fold-title {
    cursor: default;
    pointer-events: none;
  }
  .sh-footer-fold-title::before {
    display: none;
  }
  .sh-footer-fold .sh-footer-fold-body {
    display: block !important;
  }
}
.sh-footer-main > * {
  min-width: 0;
}
.sh-footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
.sh-footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 1.75rem;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sh-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sh-footer-columns .sh-footer-fold:only-child {
    grid-column: 1 / -1;
    max-width: 28rem;
    margin: 0 auto;
    width: 100%;
  }
}
.sh-footer-columns .sh-footer-fold-title {
  text-align: center;
}
.sh-footer-fold-title--center {
  text-align: center;
}
.sh-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.sh-footer-brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.65rem;
  text-decoration: none !important;
  max-width: 36rem;
  margin: 0 auto;
  width: 100%;
}
.sh-footer-brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 0.25rem;
}
.sh-footer-brand-logo {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  border-radius: 0.5rem;
  flex-shrink: 0;
  margin: 0 auto;
  display: block;
}
@media (min-width: 768px) {
  .sh-footer-brand-logo {
    width: 4.5rem;
    height: 4.5rem;
  }
  .sh-footer-brand-link {
    gap: 0.75rem;
  }
}
.sh-footer-brand-name {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) {
  .sh-footer-brand-name {
    font-size: 1.0625rem;
  }
}
.sh-footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  margin: 0.35rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sh-footer-brand-social {
  text-align: center;
  width: 100%;
}
.sh-footer-brand-social .sh-footer-connect-label {
  justify-content: center;
}
.sh-footer-connect-label {
  cursor: default;
  pointer-events: none;
}
.sh-footer-connect-label::before {
  display: none;
}
.sh-footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.85rem;
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}
.sh-footer-services-list {
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .sh-footer-services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.sh-footer-link-grid > li {
  margin: 0;
  padding: 0;
  min-width: 0;
}
.sh-footer-link-grid a,
.sh-footer-link-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.875rem;
  line-height: 1.45;
  padding: 0.2rem 0;
  min-width: 0;
  color: rgba(255, 255, 255, 0.88) !important;
  text-decoration: none !important;
}
.sh-footer-link-grid a span {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}
.sh-footer-link-grid a i {
  flex-shrink: 0;
  width: 0.9rem;
  margin-top: 0.15rem;
  text-align: center;
  font-size: 0.7rem;
  color: var(--sh-accent-soft, #a8d4f0);
  opacity: 0.95;
}
.sh-footer-more-item.is-collapsed {
  display: none !important;
}
.sh-footer-link-grid a:hover,
.sh-footer-link-list a:hover {
  color: var(--sh-accent-soft, #a8d4f0) !important;
}
.sh-footer-link-list {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  columns: 2;
  column-gap: 1rem;
}
.sh-footer-link-list li {
  break-inside: avoid;
}
.sh-footer-expand,
.sh-footer-expand-inline {
  font-size: 0.7rem;
  color: var(--sh-accent-soft, #a8d4f0);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}
.sh-footer-expand-inline {
  list-style: none;
  color: rgba(255, 255, 255, 0.75);
}
.sh-footer-expand-inline::-webkit-details-marker {
  display: none;
}
.sh-footer-offices-wrap {
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  display: flex;
  justify-content: center;
  width: 100%;
}
.sh-footer-offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 0.5rem;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
}
.sh-footer-contact-section {
  width: 100%;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sh-footer-contact-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh-footer-contact-link {
  text-align: center;
}
.sh-footer-office-chip {
  min-width: 0;
  text-align: center;
  padding: 0.5rem 0.65rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sh-footer-office-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 0 0.25rem;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #fff;
}
.sh-footer-office-name > span {
  min-width: 0;
}
.sh-footer-office-flag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.625rem;
  height: 1.125rem;
  padding: 0 0.2rem;
  border-radius: 0.2rem;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  background: rgba(251, 191, 36, 0.22);
  color: #fde68a;
  border: 1px solid rgba(251, 191, 36, 0.45);
  font-family: var(--sh-font-family, Tahoma, sans-serif);
}
/* Contact page reuses office country badges */
.contact-page .sh-footer-office-flag,
.bg-white .sh-footer-office-flag {
  background: rgba(30, 95, 158, 0.12);
  color: #1e5f9e;
  border-color: rgba(30, 95, 158, 0.35);
  min-width: 1.75rem;
  height: 1.25rem;
  font-size: 0.625rem;
}
.sh-footer-office-phone {
  display: block;
  font-size: 0.6875rem;
  color: rgba(251, 191, 36, 0.9) !important;
  text-decoration: none !important;
  word-break: break-word;
}
.sh-footer-office-phone:hover {
  color: #fde68a !important;
}
.sh-footer-newsletter {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sh-footer-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 28rem;
  align-items: stretch;
  margin: 0 auto;
  justify-content: center;
}
.sh-footer-newsletter-form input[type="email"] {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 0.8125rem;
}
.sh-footer-newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.sh-footer-newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(251, 191, 36, 0.65);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}
.sh-footer-newsletter-form button {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: var(--sh-primary, #1e5f9e);
  color: #ffffff;
}
.sh-footer-newsletter-form button:hover {
  background: var(--sh-primary-light, #2d7ab8);
}
.sh-footer-newsletter-msg {
  font-size: 0.75rem;
  margin-top: 0.35rem;
}
.sh-footer-newsletter-msg.hidden {
  display: none;
}
.sh-footer-main .sh-footer-fold {
  align-self: stretch;
  width: 100%;
}
.sh-footer-columns .sh-footer-link-grid,
.sh-footer-columns .sh-footer-link-list {
  text-align: left;
}

/* Footer — multi-column mock layout */
.sh-footer-mock {
  font-family: var(--sh-font-family, Tahoma, sans-serif);
  background: var(--sh-dark, #0c2340);
}
.sh-footer-mock-grid {
  display: grid;
  gap: 1.5rem 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .sh-footer-mock-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .sh-footer-mock-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr 1.15fr;
    gap: 1.35rem 1.5rem;
    align-items: start;
  }
}
.sh-footer-mock-title--sub {
  margin-top: 1.15rem;
  font-size: 0.72rem;
  opacity: 0.95;
}
.sh-footer-mock .sh-footer-brand-text,
.sh-footer-mock-brand .sh-footer-brand-text {
  align-items: flex-start;
  text-align: left;
}
.sh-footer-mock-brand .sh-footer-brand-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}
.sh-footer-mock-brand .sh-footer-brand-logo {
  height: 3rem;
  width: auto;
  object-fit: contain;
}
.sh-footer-mock-brand .sh-footer-brand-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.sh-footer-mock-brand .sh-footer-brand-desc {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  max-width: 16rem;
}
.sh-footer-mock-title {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.sh-footer-mock-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.sh-footer-mock-list a {
  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none !important;
  font-size: 0.84rem;
  line-height: 1.35;
}
.sh-footer-mock-list a:hover {
  color: var(--sh-cta, #f57c00) !important;
}
.sh-footer-mock-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}
.sh-footer-mock-contact-list i {
  margin-top: 0.2rem;
  color: var(--sh-cta, #f57c00);
  width: 0.95rem;
  text-align: center;
  flex-shrink: 0;
}
.sh-footer-mock-offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 900px) {
  .sh-footer-mock-offices {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.sh-footer-mock-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}
.sh-footer-pay-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.sh-footer-pay-icons img {
  height: 22px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 0.25rem;
  padding: 0.15rem 0.35rem;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   Homepage booking chrome — design mock (navy tabs + orange CTA)
   Keep form markup; unify colors across all services.
   ============================================ */
#booking .search-form {
  border-radius: 0;
  padding-left: 0;
  margin-left: 0;
  border-left: 0;
  background: transparent;
}

#booking .service-tab.active,
#booking .service-tab[data-service].active,
#booking .service-tab.active:hover,
#booking .service-tab[data-service].active:hover {
  background: var(--sh-dark, #0c2340) !important;
  border-color: var(--sh-dark, #0c2340) !important;
  color: #fff !important;
}
#booking .service-tab.active i,
#booking .service-tab[data-service].active i {
  color: #fff !important;
}
#booking .service-tab:not(.active) {
  color: var(--sh-nav-link, #0c2340) !important;
  background: #fff !important;
  border-color: #d5dee8 !important;
}
#booking .service-tab:not(.active) i {
  color: var(--sh-primary, #1a5fad) !important;
}
#booking .service-tab:not(.active):hover {
  background: #f3f7fb !important;
  color: var(--sh-dark, #0c2340) !important;
}

/* Orange search CTAs for every service form */
#booking .search-form .gradient-bg,
#booking .search-form button[type="submit"],
#booking .search-form .hhs-btn-search,
#booking .search-form .fhs-btn-search,
#booking .search-form [class*="-btn-search"] {
  background: var(--sh-cta, #f57c00) !important;
  background-image: none !important;
  border-color: var(--sh-cta, #f57c00) !important;
  color: #fff !important;
}
#booking .search-form .gradient-bg:hover,
#booking .search-form button[type="submit"]:hover,
#booking .search-form .hhs-btn-search:hover,
#booking .search-form .fhs-btn-search:hover,
#booking .search-form [class*="-btn-search"]:hover {
  background: var(--sh-cta-hover, #e06e00) !important;
}

/* Soft left accent only — no rainbow form backgrounds */
#booking #hotels-form,
#booking #flights-form,
#booking #packages-form,
#booking #sightseeing-form,
#booking #transfers-form,
#booking #visa-form,
#booking #hajj-umrah-form,
#booking #student-consultancy-form,
#booking #immigration-form,
#booking #business-setup-form {
  border-left: 0 !important;
  background: transparent !important;
}

/* Regional market switcher (header) */
.sh-market-switch { position: relative; display: inline-block; }
.sh-market-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}
.sh-market-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  padding: 0.05rem 0.25rem;
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.65rem;
  letter-spacing: 0.03em;
}
.sh-market-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  min-width: 11rem;
  z-index: 60;
  background: #fff;
  color: #1f2937;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.sh-market-menu.hidden { display: none; }
.sh-market-menu-item {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  color: #374151;
  text-decoration: none;
}
.sh-market-menu-item:hover { background: #f3f4f6; text-decoration: none; }
.sh-market-menu-item.is-active { background: #ede9fe; color: #5b21b6; font-weight: 600; }
