/* ============================================
   RESILIENCE HUB HEALTH - SHARED STYLES
   ============================================ */

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

:root {
  --blue: #0066CC;
  --blue-dark: #004A99;
  --blue-light: #E8F2FF;
  --green: #00A651;
  --green-dark: #008A44;
  --green-light: #E6F7ED;
  --gradient: linear-gradient(135deg, #0066CC 0%, #00A651 100%);
  --gradient-soft: linear-gradient(135deg, #E8F2FF 0%, #E6F7ED 100%);
  --text-primary: #1A1A2E;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --bg-white: #FFFFFF;
  --bg-off: #F8FAFB;
  --bg-warm: #FAFDF8;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-glow: 0 4px 30px rgba(0,102,204,0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', sans-serif;
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

.en { font-family: 'Plus Jakarta Sans', sans-serif; direction: ltr; }

img { max-width: 100%; display: block; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  background: var(--gradient-soft);
  color: var(--blue);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Tajawal', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(0,102,204,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,102,204,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: white;
}

.btn-white {
  background: white;
  color: var(--blue);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm { padding: 10px 22px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 18px 40px; font-size: 18px; }
.btn-block { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.5);
  transition: all 0.3s;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo svg { width: 42px; height: 42px; }

.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--blue); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: 0.3s;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  padding: 90px 30px 30px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-nav .btn { margin-top: 16px; text-align: center; justify-content: center; }

/* ===== PAGE HEADER (sub pages) ===== */
.page-header {
  padding: 140px 0 60px;
  background: var(--gradient-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(0,166,81,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  font-size: 15px;
  font-family: 'Tajawal', sans-serif;
  background: var(--bg-off);
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ===== CHATBOT WIDGET ===== */
.chatbot-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1500;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--gradient);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(0,102,204,0.35);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  animation: fabPulse 3s ease-in-out infinite;
}

.chatbot-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 40px rgba(0,102,204,0.45);
}

.chatbot-fab svg { transition: all 0.3s; }
.chatbot-fab.active svg { transform: rotate(90deg); }
.chatbot-fab .fab-close { display: none; }
.chatbot-fab.active .fab-open { display: none; }
.chatbot-fab.active .fab-close { display: block; }

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(0,102,204,0.35); }
  50% { box-shadow: 0 6px 30px rgba(0,102,204,0.55), 0 0 0 12px rgba(0,102,204,0.08); }
}

.chatbot-fab.active { animation: none; }

.chatbot-panel {
  position: fixed;
  bottom: 104px;
  left: 28px;
  width: 400px;
  height: 580px;
  max-height: calc(100vh - 140px);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 60px rgba(0,0,0,0.18);
  z-index: 1500;
  overflow: hidden;
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  transform-origin: bottom left;
  display: flex;
  flex-direction: column;
}

.chatbot-panel.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chatbot-panel-header {
  background: var(--gradient);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  flex-shrink: 0;
}

.chatbot-panel-header .bot-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.chatbot-panel-header h4 { font-size: 16px; font-weight: 700; }
.chatbot-panel-header p { font-size: 12px; opacity: 0.85; }

.status-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  display: inline-block;
  margin-left: 6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.chatbot-iframe {
  flex: 1;
  border: none;
  width: 100%;
  height: 100%;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.55);
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-primary);
  color: white;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s;
}

.whatsapp-fab:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 25px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ===== STICKY MOBILE BOOK BAR ===== */
.sticky-book-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1400;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-book-bar.visible {
  transform: translateY(0);
}

.sticky-book-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 32px; /* room for close button */
  position: relative;
}

.sticky-book-bar-close {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--bg-off);
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: 'Tajawal', sans-serif;
}

.sticky-book-bar-close:hover {
  background: var(--border);
  color: var(--text-primary);
}

.sticky-book-bar-text {
  flex: 1;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.3;
}

.sticky-book-bar-text strong {
  color: var(--text-primary);
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}

.sticky-book-bar-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.sticky-book-bar .btn {
  padding: 10px 16px;
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .sticky-book-bar { padding: 10px 12px; }
  .sticky-book-bar-text { font-size: 12px; }
  .sticky-book-bar-text strong { font-size: 13px; }
  .sticky-book-bar-text span { display: none; } /* hide subtitle on small screens */
  .sticky-book-bar-actions .btn-outline { display: none; } /* keep only the primary CTA */
  .sticky-book-bar .btn { padding: 10px 14px; font-size: 12px; }
  /* Push WhatsApp up on mobile when sticky bar is visible */
  .whatsapp-fab { bottom: 80px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }
}

/* ===== FREE CONSULTATION BANNER ===== */
.free-consult-banner {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}

.free-consult-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.05) 30px, rgba(255,255,255,0.05) 60px);
  animation: slide 20s linear infinite;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(60px); }
}

.free-consult-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.free-consult-inner .gift-icon {
  font-size: 28px;
}

.free-consult-inner .text {
  color: #1A1A2E;
  font-weight: 800;
  font-size: 15px;
}

.free-consult-inner .text strong {
  font-size: 17px;
}

.free-consult-inner a {
  background: #1A1A2E;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.free-consult-inner a:hover {
  background: #0066CC;
  color: white;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .free-consult-inner { flex-direction: column; gap: 10px; }
  .free-consult-inner .text { font-size: 13px; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 16px; max-width: 300px; }

.footer-col h4 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
}

.footer-social a:hover { background: var(--blue); color: white; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-header { padding: 110px 0 50px; }
}

@media (max-width: 480px) {
  .chatbot-panel {
    left: 10px;
    right: 10px;
    bottom: 100px;
    width: auto;
    height: calc(100vh - 130px);
    border-radius: var(--radius-lg);
  }
  .chatbot-fab { bottom: 20px; left: 20px; width: 56px; height: 56px; border-radius: 16px; }
}

/* ===== PATH (Assessment → Recovery) ===== */
.path-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin: 48px 0 40px;
}

.path-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  position: relative;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.path-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.path-num {
  position: absolute;
  top: -16px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 14px rgba(0,102,204,0.3);
}

.path-icon {
  font-size: 40px;
  margin-bottom: 14px;
  margin-top: 8px;
}

.path-step h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.path-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  flex: 1;
}

.path-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.path-link:hover {
  color: var(--blue-dark);
}

.path-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--blue);
  opacity: 0.4;
  font-weight: 800;
}

.path-cta {
  background: linear-gradient(135deg, #F0F7FF 0%, #F0FFF7 100%);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-top: 40px;
  text-align: center;
}

.path-cta p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.8;
}

.path-cta strong { color: var(--text-primary); }

@media (max-width: 900px) {
  .path-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .path-arrow {
    transform: rotate(90deg);
    font-size: 24px;
  }
}

/* ===== WHY RESILIENCE ===== */
.why-section { background: linear-gradient(180deg, var(--bg-off) 0%, white 100%); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
}

.why-card p strong { color: var(--text-primary); }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== WHY RESILIENCE ===== */
.why-section {
  background: linear-gradient(180deg, white 0%, var(--bg-off) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--gradient-soft);
  border-radius: 50%;
  transform: translate(40%, -40%);
  opacity: 0.7;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-icon {
  font-size: 38px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.why-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.why-card p strong { color: var(--text-primary); }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================
   AVAILABILITY BAR (top of page)
   ============================================ */
.availability-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: white;
  padding: 8px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.availability-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.availability-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.availability-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.availability-status.available-now .availability-dot {
  background: #10B981;
  animation: pulse-availability 2s infinite;
}

.availability-status.available-tomorrow .availability-dot {
  background: #F59E0B;
}

@keyframes pulse-availability {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

.availability-text {
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.availability-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.availability-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}

.availability-cta.primary {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1a1a2e;
}

.availability-cta.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,215,0,0.4);
}

.availability-cta.secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}

.availability-cta.secondary:hover {
  background: rgba(255,255,255,0.2);
}

.availability-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  font-family: inherit;
  transition: color 0.2s;
}

.availability-close:hover {
  color: white;
}

body.has-availability-bar {
  padding-top: 44px;
}

body.has-availability-bar .navbar {
  top: 44px;
}

@media (max-width: 700px) {
  .availability-bar-inner {
    padding: 0 12px;
    gap: 10px;
    font-size: 13px;
  }
  .availability-text {
    font-size: 12px;
  }
  .availability-cta {
    padding: 6px 10px;
    font-size: 12px;
  }
  .availability-cta.secondary {
    display: none;
  }
  body.has-availability-bar {
    padding-top: 40px;
  }
  body.has-availability-bar .navbar {
    top: 40px;
  }
}

/* ============================================
   TRUST BADGES (in footer / about page)
   ============================================ */
.trust-badges-section {
  padding: 60px 0;
  background: var(--bg-off);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-badge-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

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

.trust-badge-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.trust-badge-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.trust-badge-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.trust-section-header {
  text-align: center;
  margin-bottom: 36px;
}

.trust-section-header h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  margin-bottom: 10px;
}

.trust-section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   FAQ Page
   ============================================ */
.faq-hero {
  padding: 80px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-off) 0%, white 100%);
}

.faq-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  margin-bottom: 16px;
}

.faq-hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

.faq-section {
  padding: 40px 0 80px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  color: var(--text-primary);
  background: transparent;
  border: none;
  width: 100%;
  text-align: right;
  font-family: 'Tajawal', sans-serif;
  gap: 14px;
}

.faq-question-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-question-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: white;
}

.faq-question-text {
  flex: 1;
  text-align: right;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.faq-category {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin: 30px 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-cta-section {
  margin-top: 50px;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #F0F7FF, #E6F1FF);
  border-radius: var(--radius-xl);
}

.faq-cta-section h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.faq-cta-section p {
  color: var(--text-secondary);
  margin-bottom: 22px;
  line-height: 1.8;
}

.faq-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

