/* Industrial Psychologist Custom Styles */
:root {
  --primary-navy: #0e2a47;
  --nav-bg: #0d2847;
  --footer-bg: #0c233f;
  --accent-blue: #1877f2;
  --accent-orange: #ff7700;
  --accent-teal: #00a884;
  --accent-red: #e81123;
  --accent-purple: #8a2be2;
  --card-radius: 20px;
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: #fcfdfe;
  color: #1e293b;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

p {
  color: #1e293b;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

/* Overriding faint text-muted to make it clear and readable */
.text-muted {
  color: #334155 !important;
  font-weight: 500;
}

small, .small {
  font-size: 13px;
  font-weight: 500;
}

/* TOP HEADER */
.top-header-wrapper {
  background: #ffffff;
  padding: 12px 0;
  border-bottom: 1px solid #edf2f7;
}

.top-header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.header-brand-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-brand-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.psychologist-center-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.psychologist-center-logo:hover {
  transform: scale(1.03);
}

.header-brand-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-divider {
  width: 2px;
  height: 42px;
  background-color: #e2e8f0;
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 20px;
  font-weight: 800;
  color: #9a4c14;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.brand-subtitle {
  font-size: 11.5px;
  font-weight: 600;
  color: #9a4c14;
  opacity: 0.85;
  letter-spacing: 0.2px;
}

.top-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  gap: 6px;
}

.btn-book-session {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: #103363;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 22px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(16, 51, 99, 0.22);
  transition: all 0.25s ease;
}

.btn-book-session:hover {
  background-color: #0b2242;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 51, 99, 0.35);
  color: #ffffff !important;
}

.top-quick-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: right;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.top-quick-nav a {
  color: #103363;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.top-quick-nav a:hover {
  color: #1877f2;
}

.top-quick-nav .sep {
  color: #cbd5e1;
  font-weight: 400;
  font-size: 11px;
  white-space: nowrap;
}

/* MAIN NAVBAR */
.main-nav-bar {
  background-color: #0e2a47;
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-link-item {
  position: relative;
}

.nav-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-link-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
}

.nav-link-item.active .nav-link-btn {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff !important;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.helpline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.helpline-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
}

.helpline-pill .phone-icon {
  color: #22c55e;
  font-size: 15px;
}

/* CARDS GRID SECTION */
.service-cards-section {
  padding: 40px 0 65px;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-width: 2.5px;
  border-style: solid;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.card-img-container {
  position: relative;
  width: 100%;
  height: 195px;
  overflow: hidden;
  background: #f1f5f9;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img-container img {
  transform: scale(1.05);
}

.card-badge-number {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-width: 2px;
  border-style: solid;
  z-index: 2;
}

.card-body-content {
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-service-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 10px;
  min-height: 44px;
}

.card-service-desc {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
}

.card-view-link {
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.card-view-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.card-book-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.card-book-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  color: #ffffff !important;
}

/* EXACT DEEP NAVY FOOTER (COMPACT & SLEEK) */
.main-navy-footer {
  background-color: var(--footer-bg);
  color: #e2e8f0;
  border-top: 3px solid #1877f2;
}

.footer-connect-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.connect-main-pill {
  background: #1877f2;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 3px 8px rgba(24, 119, 242, 0.25);
}

.connect-quote {
  font-size: 11px;
  color: #cbd5e1;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 8px;
}

.footer-opt-btn {
  display: inline-block;
  color: #ffffff !important;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.footer-opt-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  color: #ffffff !important;
}

.btn-opt-green { background: #22c55e; }
.btn-opt-blue { background: #1877f2; }
.btn-opt-purple { background: #c026d3; }
.btn-opt-red { background: #e11d48; }

.footer-col-title {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-clean-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-clean-links li {
  margin-bottom: 6px;
}

.footer-clean-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.footer-clean-links a:hover {
  color: #1877f2;
}

.center-address-box {
  margin-bottom: 14px;
}

.center-address-item {
  color: #e2e8f0;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 10px;
}

.center-address-item:last-child {
  margin-bottom: 0;
}

.btn-book-online-pill {
  display: inline-block;
  background-color: #1877f2;
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(24, 119, 242, 0.3);
  transition: all 0.2s ease;
}

.btn-book-online-pill:hover {
  background-color: #0c63db;
  transform: translateY(-1px);
  color: #ffffff !important;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 5px;
}

.footer-brand-logo-wrap {
  margin-bottom: 6px;
  text-align: center;
}

.footer-brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.footer-brand-logo:hover {
  transform: scale(1.03);
}

.footer-sub-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-sub-link:hover {
  color: #38bdf8;
}

.footer-action-pill {
  display: inline-block;
  background: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-action-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff !important;
}

.footer-bottom-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 20px !important;
  padding-top: 14px !important;
}

/* Floating WhatsApp */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp-btn img {
  width: 32px;
  height: 32px;
}

/* SUBPAGE STYLES: WORKPLACE SUPPORT & COUNSELLING */
.subpage-bg-wrapper {
  background-color: #f6f8fc;
  min-height: calc(100vh - 200px);
}

.sidebar-nav-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 18px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid #edf2f7;
}

.sidebar-card-title {
  font-size: 12px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 16px;
  color: #475569;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  background: transparent;
}

.nav-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #1877f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.2s;
}

.sidebar-nav-item:hover {
  background: #f8fafc;
  color: #0f172a;
}

.sidebar-nav-item:hover .nav-item-icon {
  background: #e2e8f0;
}

.sidebar-nav-item.active {
  background: #102e52;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(16, 46, 82, 0.3);
}

.sidebar-nav-item.active .nav-item-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.sidebar-urgent-card {
  background: #102e52;
  border-radius: 22px;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(16, 46, 82, 0.25);
}

.urgent-title-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #ffffff;
  text-transform: uppercase;
}

.btn-whatsapp-chat {
  background: #22c55e;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13px;
  border-radius: 50px;
  padding: 9px 16px;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp-chat:hover {
  background: #16a34a;
  transform: translateY(-2px);
  color: #ffffff !important;
}

.main-page-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #edf2f7;
}

.page-top-pill {
  display: inline-block;
  color: #1877f2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-main-heading {
  font-size: 32px;
  font-weight: 800;
  color: #0a1f38;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.page-intro-text {
  color: #1e293b;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.7;
}

.multilingual-banner {
  background: #f0f7ff;
  border: 1.5px solid #c7d2fe;
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.65;
  color: #1e293b;
  font-weight: 500;
}

.multi-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0d2847;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.section-block-title {
  font-size: 21px;
  font-weight: 800;
  color: #0a1f38;
}

.concern-category-box {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
  transition: all 0.25s;
}

.concern-category-box:hover {
  border-color: #94a3b8;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.concern-box-header {
  background: transparent;
  padding: 18px 24px 10px;
  border-bottom: none;
  font-size: 17px;
  font-weight: 800;
  color: #0a1f38;
  display: flex;
  align-items: center;
}

.concern-box-body {
  padding: 4px 24px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.65;
}

.concern-bullet {
  color: #334155;
  font-weight: 800;
  margin-right: 6px;
}

.concern-box-cta {
  display: block;
  background: #ffffff;
  color: #15803d !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 10px 24px 16px;
  border-top: none;
  text-decoration: none;
  transition: opacity 0.2s;
}

.concern-box-cta:hover {
  opacity: 0.85;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.6;
  padding: 6px 0;
}

.bottom-need-talk-banner {
  background: #0d2847;
  border-radius: 22px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(13, 40, 71, 0.25);
}

/* MOBILE NAVBAR & HEADER STYLES */
.mobile-top-header {
  padding: 8px 0 12px;
}

.mobile-top-header .brand-title {
  color: #a04a12;
  font-weight: 800;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.mobile-top-header .brand-subtitle {
  color: #a04a12;
  font-weight: 600;
  opacity: 0.9;
  white-space: nowrap;
  font-size: clamp(8px, 2.4vw, 10.5px);
  letter-spacing: -0.1px;
}

.mobile-nav-header-row {
  min-height: 44px;
}

.mobile-nav-brand {
  color: #ffffff;
}

.btn-mobile-book-pill {
  background-color: #ffffff;
  color: #0e2a47 !important;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.btn-mobile-book-pill:hover {
  background-color: #f1f5f9;
  color: #0e2a47 !important;
}

.mobile-nav-toggle-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-toggle-btn:focus {
  outline: none;
}

.mobile-nav-link {
  color: #ffffff !important;
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.btn-mobile-helpline {
  background: #253d5a;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s ease;
}

.btn-mobile-helpline:hover {
  background: #2e4a6d;
  color: #ffffff !important;
}

.btn-mobile-green {
  background: #00c09d;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  display: block;
  box-shadow: 0 4px 14px rgba(0, 192, 157, 0.35);
  transition: all 0.2s ease;
}

.btn-mobile-green:hover {
  background: #00a889;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* RESPONSIVENESS */
@media (max-width: 1199px) {
  .top-header-right {
    display: none;
  }
  .main-page-card {
    padding: 24px 18px;
  }
}

@media (max-width: 768px) {
  .top-quick-nav {
    font-size: 10px;
    gap: 6px;
    letter-spacing: 0.2px;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .top-quick-nav a {
    white-space: nowrap !important;
    font-size: 10px;
  }
  .top-quick-nav .sep {
    font-size: 9px;
  }
}

@media (max-width: 390px) {
  .top-quick-nav {
    font-size: 9px;
    gap: 4px;
    letter-spacing: 0px;
  }
  .top-quick-nav a {
    font-size: 9px;
  }
}



