/* ==========================================================================
   SAHABATKU MODERN LANDING PAGE STYLES
   Designed for https://sahabatku.local/
   Brand Colors & System according to DESIGN.md
   ========================================================================== */

:root {
  --sh-primary: #23408e;
  --sh-primary-hover: #182d63;
  --sh-primary-light: #eef3fb;
  --sh-primary-glow: rgba(35, 64, 142, 0.15);
  --sh-green: #23704f;
  --sh-green-light: #eaf5ee;
  --sh-amber: #f59e0b;
  --sh-amber-light: #fff0de;
  --sh-text-main: #242c3c;
  --sh-text-sub: #596478;
  --sh-text-muted: #8c96a5;
  --sh-bg-page: #f7f8fb;
  --sh-surface: #ffffff;
  --sh-border: #dfe4ed;
  --sh-border-light: #edf1f7;
  --sh-radius-sm: 8px;
  --sh-radius-md: 16px;
  --sh-radius-lg: 24px;
  --sh-radius-pill: 9999px;
  --sh-shadow-sm: 0 2px 10px rgba(36, 44, 60, 0.04);
  --sh-shadow-md: 0 8px 28px rgba(35, 64, 142, 0.07);
  --sh-shadow-lg: 0 16px 40px rgba(35, 64, 142, 0.12);
  --sh-font-family: 'Poppins\, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base typography & resets for upgraded landing */
body.sh-landing-body {
  font-family: var(--sh-font-family);
  background-color: var(--sh-bg-page);
  color: var(--sh-text-main);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.sh-landing-body h1,
.sh-landing-body h2,
.sh-landing-body h3,
.sh-landing-body h4,
.sh-landing-body h5,
.sh-landing-body h6 {
  font-family: var(--sh-font-family);
  color: var(--sh-text-main);
  font-weight: 600;
  line-height: 1.3;
}

/* ==========================================================================
   MODERN HEADER & NAVBAR
   ========================================================================== */
.sh-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sh-border-light);
  transition: all 0.3s ease;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.sh-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.sh-brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.sh-brand-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.sh-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 26px;
}

.sh-nav-menu li a {
  color: var(--sh-text-sub);
  font-weight: 500;
  font-size: 14.5px;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.sh-nav-menu li a:hover,
.sh-nav-menu li.active a {
  color: var(--sh-primary);
}

.sh-nav-menu li.active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--sh-primary);
  border-radius: 2px;
}

.sh-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--sh-radius-pill);
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.sh-btn-primary {
  background-color: var(--sh-primary);
  color: #ffffff !important;
  box-shadow: 0 4px 14px var(--sh-primary-glow);
}

.sh-btn-primary:hover {
  background-color: var(--sh-primary-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(35, 64, 142, 0.25);
}

.sh-btn-outline {
  background-color: transparent;
  color: var(--sh-primary) !important;
  border-color: var(--sh-border);
}

.sh-btn-outline:hover {
  border-color: var(--sh-primary);
  background-color: var(--sh-primary-light);
  color: var(--sh-primary) !important;
}

.sh-btn-white {
  background-color: #ffffff;
  color: var(--sh-primary) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.sh-btn-white:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sh-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--sh-text-main);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.sh-hero-section {
  position: relative;
  padding: 70px 0 90px;
  background: radial-gradient(circle at 85% 20%, rgba(35, 64, 142, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 10% 70%, rgba(35, 112, 79, 0.06) 0%, transparent 40%),
              linear-gradient(180deg, #f0f4fd 0%, #f7f8fb 100%);
  overflow: hidden;
}

.sh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--sh-primary);
  margin-bottom: 20px;
  box-shadow: var(--sh-shadow-sm);
}

.sh-hero-badge i {
  color: var(--sh-green);
}

.sh-hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--sh-text-main);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.sh-hero-title .sh-highlight {
  color: var(--sh-primary);
  position: relative;
  display: inline-block;
}

.sh-hero-desc {
  font-size: 16.5px;
  color: var(--sh-text-sub);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 530px;
}

.sh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.sh-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--sh-border);
}

.sh-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--sh-text-sub);
}

.sh-trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--sh-green-light);
  color: var(--sh-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Phone Mockup */
.sh-mockup-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sh-phone-frame {
  width: 310px;
  height: 610px;
  background: #ffffff;
  border: 11px solid #1e2433;
  border-radius: 46px;
  box-shadow: 0 25px 60px -12px rgba(35, 64, 142, 0.25), 0 0 0 1px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sh-phone-notch {
  width: 110px;
  height: 20px;
  background: #1e2433;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.sh-phone-screen {
  flex: 1;
  background: #f7f8fb;
  padding: 14px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sh-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}

.sh-screen-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sh-screen-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sh-primary-light);
  color: var(--sh-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
}

.sh-screen-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--sh-text-main);
  line-height: 1.2;
}

.sh-screen-subtitle {
  font-size: 10px;
  color: var(--sh-text-muted);
}

.sh-app-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--sh-border-light);
}

.sh-app-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.sh-app-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.sh-app-badge-green {
  background: var(--sh-green-light);
  color: var(--sh-green);
}

.sh-app-badge-blue {
  background: var(--sh-primary-light);
  color: var(--sh-primary);
}

.sh-app-card h6 {
  font-size: 12px;
  margin: 0 0 4px 0;
  font-weight: 600;
}

.sh-app-card p {
  font-size: 10.5px;
  color: var(--sh-text-sub);
  margin: 0;
  line-height: 1.4;
}

.sh-mood-row {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin-top: 8px;
}

.sh-mood-pill {
  flex: 1;
  text-align: center;
  padding: 6px 2px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  transition: all 0.2s ease;
}

.sh-mood-pill i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-bottom: 2px;
}

.sh-mood-pill.active {
  background: #eff6ff;
  border-color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(35, 64, 142, 0.1);
}

.sh-mood-pill span {
  display: block;
  font-size: 8px;
  color: var(--sh-text-sub);
  margin-top: 2px;
  font-weight: 500;
  white-space: nowrap;
}

.sh-floating-card {
  position: absolute;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: var(--sh-shadow-lg);
  border: 1px solid var(--sh-border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
  animation: floatCard 4s ease-in-out infinite alternate;
}

.sh-float-1 {
  top: 15%;
  left: -24px;
}

.sh-float-2 {
  bottom: 12%;
  right: -24px;
  animation-delay: -2s;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.sh-floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sh-float-text h5 {
  font-size: 13px;
  margin: 0;
  font-weight: 600;
}

.sh-float-text p {
  font-size: 11px;
  margin: 0;
  color: var(--sh-text-muted);
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.sh-stats-section {
  padding: 35px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--sh-border-light);
}

.sh-stat-box {
  text-align: center;
  padding: 10px 15px;
}

.sh-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--sh-primary);
  margin-bottom: 4px;
}

.sh-stat-label {
  font-size: 13.5px;
  color: var(--sh-text-sub);
  font-weight: 500;
}

/* ==========================================================================
   WHY SAHABATKU / VALUES SECTION
   ========================================================================== */
.sh-section {
  padding: 85px 0;
}

.sh-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.sh-section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sh-primary);
  background: var(--sh-primary-light);
  padding: 5px 14px;
  border-radius: var(--sh-radius-pill);
  margin-bottom: 12px;
}

.sh-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--sh-text-main);
  margin-bottom: 14px;
  line-height: 1.3;
}

.sh-section-subtitle {
  font-size: 15.5px;
  color: var(--sh-text-sub);
  line-height: 1.65;
}

.sh-value-card {
  background: var(--sh-surface);
  border: 1px solid var(--sh-border-light);
  border-radius: var(--sh-radius-md);
  padding: 30px 24px;
  box-shadow: var(--sh-shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.sh-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-shadow-md);
  border-color: rgba(35, 64, 142, 0.2);
}

.sh-value-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--sh-primary-light);
  color: var(--sh-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.sh-value-card:hover .sh-value-icon {
  background: var(--sh-primary);
  color: #ffffff;
}

.sh-value-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sh-value-card p {
  font-size: 13.5px;
  color: var(--sh-text-sub);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   FEATURES SHOWCASE (GRID)
   ========================================================================== */
.sh-feature-card {
  background: var(--sh-surface);
  border: 1px solid var(--sh-border-light);
  border-radius: var(--sh-radius-md);
  padding: 30px 26px;
  margin-bottom: 30px;
  box-shadow: var(--sh-shadow-sm);
  transition: all 0.3s ease;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}

.sh-feature-card:hover {
  box-shadow: var(--sh-shadow-md);
  transform: translateY(-5px);
  border-color: rgba(35, 64, 142, 0.25);
}

.sh-feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sh-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.sh-feature-icon.icon-blue {
  background: var(--sh-primary-light);
  color: var(--sh-primary);
}

.sh-feature-icon.icon-green {
  background: var(--sh-green-light);
  color: var(--sh-green);
}

.sh-feature-icon.icon-amber {
  background: var(--sh-amber-light);
  color: var(--sh-amber);
}

.sh-feature-card h4 {
  font-size: 17.5px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sh-feature-card p {
  font-size: 13.5px;
  color: var(--sh-text-sub);
  margin-bottom: 16px;
  flex-grow: 1;
  line-height: 1.6;
}

.sh-feature-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--sh-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   SAHABAT AYAH BUNDA HIGHLIGHT
   ========================================================================== */
.sh-ayah-bunda-banner {
  background: linear-gradient(135deg, #fdfaf3 0%, #fffbf2 50%, #ffffff 100%);
  border: 1px solid #fae6c6;
  border-radius: var(--sh-radius-lg);
  padding: 48px 42px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-shadow-sm);
}

.sh-ayah-bunda-badge {
  display: inline-block;
  background: #fdf0dc;
  color: #a85806;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--sh-radius-pill);
  margin-bottom: 14px;
}

.sh-ayah-bunda-banner h3 {
  font-size: 27px;
  font-weight: 700;
  color: #3b2810;
  margin-bottom: 14px;
}

.sh-ayah-bunda-banner p {
  font-size: 15px;
  color: #6a553c;
  line-height: 1.65;
  margin-bottom: 22px;
}

.sh-ab-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
}

.sh-ab-features-list li {
  font-size: 14px;
  color: #5c472d;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sh-ab-features-list li i {
  color: #c07316;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.sh-step-box {
  text-align: center;
  position: relative;
  padding: 0 15px;
}

.sh-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sh-primary);
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: 0 4px 14px var(--sh-primary-glow);
}

.sh-step-box h4 {
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 8px;
}

.sh-step-box p {
  font-size: 13.5px;
  color: var(--sh-text-sub);
  line-height: 1.55;
}

/* ==========================================================================
   DYNAMIC ARTICLES SECTION
   ========================================================================== */
.sh-article-card {
  background: var(--sh-surface);
  border: 1px solid var(--sh-border-light);
  border-radius: var(--sh-radius-md);
  overflow: hidden;
  box-shadow: var(--sh-shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sh-article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-shadow-md);
}

.sh-article-thumb-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  background-color: var(--sh-primary-light);
  overflow: hidden;
}

.sh-article-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sh-article-card:hover .sh-article-thumb-wrap img {
  transform: scale(1.05);
}

.sh-article-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sh-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--sh-text-muted);
  margin-bottom: 10px;
}

.sh-article-meta i {
  color: var(--sh-primary);
}

.sh-article-title {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}

.sh-article-title a {
  color: var(--sh-text-main);
  text-decoration: none !important;
  transition: color 0.2s;
}

.sh-article-title a:hover {
  color: var(--sh-primary);
}

.sh-article-excerpt {
  font-size: 13px;
  color: var(--sh-text-sub);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.sh-article-readmore {
  font-size: 13px;
  font-weight: 600;
  color: var(--sh-primary);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.sh-article-readmore:hover {
  gap: 10px;
  color: var(--sh-primary-hover);
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.sh-cta-section {
  padding: 60px 0;
}

.sh-cta-box {
  background: linear-gradient(135deg, #23408e 0%, #152759 100%);
  border-radius: var(--sh-radius-lg);
  padding: 55px 45px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-shadow-lg);
}

.sh-cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.sh-cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.25;
}

.sh-cta-desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ==========================================================================
   MODERN FOOTER
   ========================================================================== */
.sh-footer {
  background: #ffffff;
  border-top: 1px solid var(--sh-border);
  padding: 65px 0 0 0;
}

.sh-footer-brand img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.sh-footer-brand p {
  font-size: 13.5px;
  color: var(--sh-text-sub);
  margin: 16px 0 20px 0;
  max-width: 290px;
}

.sh-footer-social {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sh-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sh-primary-light);
  color: var(--sh-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.25s;
  text-decoration: none !important;
}

.sh-footer-social a:hover {
  background: var(--sh-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.sh-footer-col h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--sh-text-main);
  margin-bottom: 18px;
  position: relative;
}

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

.sh-footer-links li {
  margin-bottom: 10px;
}

.sh-footer-links li a {
  color: var(--sh-text-sub);
  font-size: 13.5px;
  text-decoration: none !important;
  transition: color 0.2s;
}

.sh-footer-links li a:hover {
  color: var(--sh-primary);
}

.sh-footer-bottom {
  margin-top: 45px;
  padding: 22px 0;
  border-top: 1px solid var(--sh-border-light);
  font-size: 13px;
  color: var(--sh-text-muted);
  text-align: center;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 991px) {
  .sh-hero-title {
    font-size: 32px;
  }
  .sh-hero-section {
    padding: 45px 0 55px;
    text-align: center;
  }
  .sh-hero-desc {
    margin: 0 auto 28px auto;
  }
  .sh-hero-actions {
    justify-content: center;
  }
  .sh-hero-trust {
    justify-content: center;
  }
  .sh-mockup-container {
    margin-top: 45px;
  }
  .sh-nav-menu {
    display: none;
  }
  .sh-mobile-toggle {
    display: block;
  }
  .sh-cta-box {
    padding: 35px 22px;
    text-align: center;
  }
  .sh-cta-desc {
    margin: 0 auto 25px auto;
  }
  .sh-ayah-bunda-banner {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .sh-hero-title {
    font-size: 26px;
  }
  .sh-floating-card {
    display: none;
  }
  .sh-phone-frame {
    width: 270px;
    height: 540px;
  }
}

/* ==========================================================================
   INSTAGRAM LOOK & FEEL EXTENSIONS (Inspired by @sahabatku_app)
   Warm Pastel Tones, Playful Badges, Rounded Cards, Empathetic Callouts
   ========================================================================== */

.sh-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--sh-radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.sh-tag-yellow {
  background-color: #FEF08A;
  color: #854D0E;
  border: 1px solid #FDE047;
}

.sh-tag-coral {
  background-color: #FFE4E6;
  color: #9F1239;
  border: 1px solid #FECDD3;
}

.sh-tag-sky {
  background-color: #E0F2FE;
  color: #0369A1;
  border: 1px solid #BAE6FD;
}

.sh-tag-mint {
  background-color: #E8F7F0;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.sh-tag-purple {
  background-color: #F3E8FF;
  color: #6B21A8;
  border: 1px solid #E9D5FF;
}

/* Page Hero Banner */
.sh-page-hero {
  padding: 55px 0 65px;
  background: radial-gradient(circle at 90% 15%, rgba(254, 240, 138, 0.25) 0%, transparent 40%),
              radial-gradient(circle at 10% 85%, rgba(224, 242, 254, 0.4) 0%, transparent 45%),
              linear-gradient(180deg, #FBF8F2 0%, #FAF5EB 100%);
  border-bottom: 1px solid #EADBCE;
  position: relative;
  overflow: hidden;
}

.sh-page-title-main {
  font-size: 38px;
  font-weight: 700;
  color: #1E293B;
  margin: 16px 0 10px 0;
  line-height: 1.25;
}

.sh-page-tagline {
  font-size: 16.5px;
  color: #64748B;
  max-width: 680px;
  line-height: 1.6;
}

/* Instagram Carousel-Style Cards */
.sh-insta-card {
  border-radius: 24px;
  border: 1px solid var(--sh-border-light);
  box-shadow: var(--sh-shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
  background: #FFFFFF;
}

.sh-insta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-shadow-md);
}

.sh-insta-card-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--sh-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sh-insta-card-body {
  padding: 36px 32px;
}

/* Quotes styled like Instagram text slides */
.sh-quote-box {
  background: linear-gradient(135deg, #FEFCE8 0%, #FFFBEB 100%);
  border-left: 5px solid #F59E0B;
  border-radius: 0 18px 18px 0;
  padding: 24px 28px;
  margin: 28px 0;
  position: relative;
}

.sh-quote-box.quote-coral {
  background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%);
  border-left-color: #F43F5E;
}

.sh-quote-box.quote-sky {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  border-left-color: #0284C7;
}

.sh-quote-box p {
  font-size: 17px;
  font-weight: 600;
  color: #1E293B;
  margin: 0;
  line-height: 1.6;
}

/* Feature mini-pill grid */
.sh-insta-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.sh-insta-feature-item {
  padding: 22px 20px;
  border-radius: 18px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  transition: all 0.25s ease;
}

.sh-insta-feature-item:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.sh-insta-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.sh-insta-feature-item h6 {
  font-size: 15px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 6px;
}

.sh-insta-feature-item p {
  font-size: 13px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

/* Instagram Topics Banner */
.sh-ig-strip {
  background: #FFFFFF;
  border: 1px solid var(--sh-border-light);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  box-shadow: var(--sh-shadow-sm);
}

.sh-ig-strip-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sh-ig-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.sh-ig-strip-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sh-topic-chip {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 9999px;
  background: #F1F5F9;
  color: #334155;
  text-decoration: none !important;
  transition: all 0.2s;
}

.sh-topic-chip:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.sh-page-body-content {
  font-size: 15.5px;
  line-height: 1.85;
  color: #334155;
}

.sh-page-body-content p {
  margin-bottom: 20px;
}

.sh-page-body-content strong {
  color: #0F172A;
}

/* ==========================================================================
   COMPANY PROFILE PAGE STYLES
   ========================================================================== */
.sh-cp-hero {
  padding: 60px 0 50px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  border-bottom: 1px solid var(--sh-border-light);
}

.sh-cp-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 9999px;
  background: var(--sh-primary-light);
  color: var(--sh-primary);
  font-size: 13px;
  font-weight: 600;
}

.sh-cp-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--sh-text-main);
}

.sh-cp-lead {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--sh-text-sub);
}

.sh-btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.sh-btn-outline-white:hover {
  background: #ffffff;
  color: var(--sh-primary) !important;
  border-color: #ffffff;
}

.sh-service-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(35, 64, 142, 0.12) !important;
}

.sh-service-num {
  font-size: 12px;
  letter-spacing: 0.8px;
}

.sh-timeline-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.sh-gallery-item:hover img {
  transform: scale(1.05);
}

.font-size-18 { font-size: 18px !important; }
.font-size-24 { font-size: 24px !important; }
.font-size-36 { font-size: 36px !important; }
.text-purple { color: #9333ea !important; }

@media (max-width: 991px) {
  .sh-cp-title {
    font-size: 28px;
  }
  .sh-cp-lead {
    font-size: 15px;
  }
}

/* ==========================================================================
   TUNED VISUALS & ENHANCEMENTS FOR COMPANY PROFILE
   ========================================================================== */

/* Mission Cards */
.sh-mission-card {
  transition: all 0.25s ease;
}

.sh-mission-card:hover {
  background-color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(35, 64, 142, 0.08);
}

.sh-mission-icon-box {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Psychologist Filter Buttons */
.sh-filter-buttons {
  margin-bottom: 24px;
}

.sh-filter-btn {
  background: #ffffff;
  color: var(--sh-text-sub);
  border: 1.5px solid var(--sh-border);
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none !important;
}

.sh-filter-btn:hover {
  border-color: var(--sh-primary);
  color: var(--sh-primary);
  background: var(--sh-primary-light);
}

.sh-filter-btn.active {
  background: var(--sh-primary);
  color: #ffffff;
  border-color: var(--sh-primary);
  box-shadow: 0 4px 12px rgba(35, 64, 142, 0.25);
}

/* Upgraded Psychologist Cards */
.sh-psych-card-modern {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--sh-border-light);
}

.sh-psych-frame {
  background: #eef3fb;
  border: 2px solid rgba(35, 64, 142, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.sh-psych-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}

.sh-psych-card-modern:hover .sh-psych-frame img {
  transform: scale(1.04);
}

.sh-spec-pill {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 500;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 3px 8px;
  border-radius: 6px;
  margin: 2px;
  line-height: 1.35;
}

.sh-btn-consult-sm {
  background: var(--sh-primary-light);
  color: var(--sh-primary) !important;
  font-weight: 600;
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(35, 64, 142, 0.15);
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.sh-btn-consult-sm:hover {
  background: var(--sh-primary);
  color: #ffffff !important;
  border-color: var(--sh-primary);
  box-shadow: 0 4px 12px rgba(35, 64, 142, 0.2);
}

/* Upgraded Gallery Cards with Lightbox */
.sh-gallery-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sh-gallery-badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  z-index: 2;
  letter-spacing: 0.3px;
}

.sh-gallery-zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(35, 64, 142, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.sh-gallery-card:hover .sh-gallery-zoom-overlay {
  opacity: 1;
}

.sh-gallery-card:hover .sh-gallery-img-link img {
  transform: scale(1.06);
}

.rounded-xl {
  border-radius: 16px !important;
}

/* Added utility and feature page styles */
.sh-badge-sub {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sh-primary);
  background: var(--sh-primary-light);
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.sh-btn-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 9999px;
  background: #f59e0b;
  color: #1e293b !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  border: 1px solid #d97706;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
  transition: all 0.25s ease;
}

.sh-btn-amber:hover {
  background: #d97706;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.35);
}

.shadow-2xs {
  box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
}
.shadow-sm {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06) !important;
}
.shadow-md {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.09) !important;
}
.shadow-lg {
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12) !important;
}

.max-w-700 {
  max-width: 700px;
}
.max-w-800 {
  max-width: 800px;
}

/* Feature Page Specific Cards */
.sh-feature-detail-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sh-feature-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(35, 64, 142, 0.12) !important;
  border-color: #cbd5e1;
}

.sh-feature-detail-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.sh-feature-badge-top {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* FAQ Accordion Styling */
.sh-faq-card {
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  margin-bottom: 12px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.sh-faq-card:hover {
  border-color: #cbd5e1 !important;
}

.sh-faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.sh-faq-btn:focus {
  outline: none;
}

.sh-faq-btn .mdi-chevron-down {
  transition: transform 0.3s ease;
}

.sh-faq-btn.collapsed .mdi-chevron-down {
  transform: rotate(-90deg);
}

.sh-faq-body {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
}
