/* =====================================================
   קליניקת ארגמן — style.css
   ===================================================== */

/* --- Custom Properties --- */
:root {
  --color-primary:    #1B3A6B;
  --color-gold:       #C9A84C;
  --color-white:      #FFFFFF;
  --color-bg-light:   #F8F8F8;
  --color-footer:     #0F2347;
  --color-wa:         #25D366;
  --color-text:       #1a1a1a;
  --color-text-muted: #555555;
  --color-border:     #E0E0E0;
  --color-error:      #c0392b;

  --font-family: 'Heebo', sans-serif;
  --fw-regular:  400;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-extrabold:800;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-full:9999px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.16);

  --transition: 0.28s ease;

  --container-max: 1200px;
  --container-pad: 1.25rem;

  --nav-height: 70px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { direction: rtl; scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-family);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-family); border: none; background: none; }
input, textarea, select { font-family: var(--font-family); }

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5 {
  font-weight: var(--fw-bold);
  line-height: 1.25;
  color: var(--color-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-tag {
  display: inline-block;
  background: var(--color-gold);
  color: #1a1a1a;
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 0.5rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
}
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-white); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
  cursor: pointer;
  border: none;
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 3px; }

.btn-primary {
  background: var(--color-gold);
  color: #1a1a1a;
}
.btn-primary:hover { background: #b8933f; }
.btn-primary:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

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

.btn-wa {
  background: var(--color-wa);
  color: var(--color-white);
}
.btn-wa:hover { background: #1da354; }

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  height: var(--nav-height);
  background: var(--color-white);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.1); }
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text {
  font-size: 1.3rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  line-height: 1.1;
}
.nav-logo-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-primary); background: rgba(27,58,107,0.07); }
.nav-wa-btn {
  display: none;
  background: var(--color-wa);
  color: var(--color-white) !important;
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem !important;
}
.nav-wa-btn:hover { background: #1da354 !important; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: none;
  border: none;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--color-bg-light); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--color-white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.drawer-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-light);
  font-size: 1.4rem;
  line-height: 1;
}
.drawer-links { display: flex; flex-direction: column; gap: 0.25rem; }
.drawer-links a {
  padding: 0.85rem 1rem;
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
}
.drawer-links a:hover { background: var(--color-bg-light); color: var(--color-primary); }
.drawer-wa {
  margin-top: auto;
  padding-top: 1.5rem;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.overlay.show { opacity: 1; pointer-events: all; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--color-footer);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo-text {
  font-size: 1.4rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.4rem;
}
.footer h4 {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-gold); }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--color-gold); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--color-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--color-gold); }

/* =====================================================
   WHATSAPP FLOATING BUTTON
   ===================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: var(--color-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  animation: pulse-wa 2s infinite;
  transition: transform var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); animation-play-state: paused; }
.whatsapp-fab svg { width: 32px; height: 32px; }
.whatsapp-fab .fab-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  background: rgba(0,0,0,0.75);
  color: var(--color-white);
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-fab:hover .fab-tooltip,
.whatsapp-fab:focus-within .fab-tooltip { opacity: 1; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 95px;
  left: 24px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--color-gold); }
.back-to-top svg { width: 20px; height: 20px; }

/* =====================================================
   HERO SECTION (shared)
   ===================================================== */
.page-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2a5298 100%); /* REPLACE WITH HERO IMAGE */
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-content { text-align: center; }
.page-hero h1 { color: var(--color-white); margin-bottom: 1rem; }
.page-hero .subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* =====================================================
   CARDS
   ===================================================== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-body { padding: 1.5rem; }
.card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary), #2a5298);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* Blog Card */
.blog-card { display: flex; flex-direction: column; }
.blog-card .card-body { flex: 1; display: flex; flex-direction: column; }
.blog-card .card-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-card .card-excerpt { font-size: 0.92rem; color: var(--color-text-muted); flex: 1; }
.blog-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: color var(--transition);
}
.blog-card .card-link:hover { color: var(--color-gold); }

/* Category Badge */
.cat-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  background: rgba(27,58,107,0.1);
  color: var(--color-primary);
}
.cat-badge.cat-couple   { background: rgba(201,168,76,0.15); color: #8a6820; }
.cat-badge.cat-sexual   { background: rgba(27,58,107,0.1);  color: var(--color-primary); }
.cat-badge.cat-trauma   { background: rgba(192,57,43,0.1);  color: #922b21; }
.cat-badge.cat-personal { background: rgba(39,174,96,0.1);  color: #1e8449; }

/* =====================================================
   SECTIONS
   ===================================================== */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark {
  background: var(--color-primary);
  color: var(--color-white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--color-white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.75); }
.section-light { background: var(--color-bg-light); }

/* Social proof bar */
.proof-bar {
  background: var(--color-primary);
  padding: 1.5rem 0;
}
.proof-bar-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-stat .stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-gold);
  line-height: 1;
}
.proof-stat .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.2rem;
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }

/* Pain card */
.pain-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-right: 4px solid var(--color-gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pain-card .pain-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.pain-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.pain-card p  { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* Testimonial card */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text { font-size: 0.97rem; line-height: 1.8; margin-bottom: 1.25rem; }
.testimonial-footer { display: flex; align-items: center; justify-content: space-between; }
.testimonial-author strong { display: block; font-weight: var(--fw-bold); font-size: 0.9rem; }
.testimonial-author span  { font-size: 0.8rem; color: var(--color-text-muted); }
.stars { color: var(--color-gold); font-size: 1rem; letter-spacing: 1px; }

/* Service card */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-primary);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p  { color: var(--color-text-muted); font-size: 0.95rem; flex: 1; }
.service-card .btn { margin-top: 1.25rem; align-self: flex-start; }

/* Journey steps */
.journey-steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.journey-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: var(--fw-extrabold);
}
.step-body h3 { margin-bottom: 0.35rem; }
.step-body p  { font-size: 0.95rem; color: var(--color-text-muted); margin: 0; }

/* Trust checklist */
.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
}
.trust-item::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Lead Magnet Box */
.lead-magnet {
  background: linear-gradient(135deg, var(--color-gold), #e8c06a);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--color-white);
}
.lead-magnet h3 { color: var(--color-white); margin-bottom: 0.5rem; font-size: 1.3rem; }
.lead-magnet p  { font-size: 0.95rem; opacity: 0.9; margin-bottom: 1.5rem; }
.lead-form {
  display: flex;
  gap: 0.75rem;
  max-width: 420px;
  margin-inline: auto;
  flex-wrap: wrap;
}
.lead-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  font-size: 1rem;
}
.lead-form input:focus {
  outline: 3px solid #fff;
  outline-offset: 2px;
  border-color: #fff;
}
.lead-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
}
.lead-success.show { display: flex; }

/* =====================================================
   FORMS
   ===================================================== */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: var(--fw-semibold);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--color-white);
  direction: rtl;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}

/* =====================================================
   ACCORDION (FAQ)
   ===================================================== */
.accordion { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion-item { border-bottom: 1px solid var(--color-border); background: var(--color-white); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  font-size: 1.02rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  gap: 1rem;
  transition: background var(--transition);
}
.accordion-btn:hover { background: var(--color-bg-light); }
.accordion-btn[aria-expanded="true"] { color: var(--color-primary); }
.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
  font-size: 1rem;
  color: var(--color-primary);
}
.accordion-btn[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
  background: var(--color-primary);
  color: var(--color-white);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.accordion-body.open { max-height: 600px; }
.accordion-body-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.faq-category {
  font-size: 0.82rem;
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 1.5rem 0.5rem;
  background: var(--color-bg-light);
}

/* =====================================================
   FILTER PILLS
   ===================================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* =====================================================
   SEARCH BOX
   ===================================================== */
.search-box {
  position: relative;
  max-width: 420px;
  margin-bottom: 1.5rem;
}
.search-box input {
  width: 100%;
  padding: 0.85rem 1.1rem 0.85rem 3rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 1rem;
  direction: rtl;
  transition: border-color var(--transition);
}
.search-box input:focus { outline: 3px solid var(--color-primary); outline-offset: 0; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(27,58,107,0.12); }
.search-box .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
}

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--color-white);
}
.page-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.page-btn.active { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }

/* =====================================================
   ADMIN
   ===================================================== */
.admin-auth-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}
.admin-auth-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.admin-auth-box h2 { margin-bottom: 0.5rem; }
.admin-auth-box p  { color: var(--color-text-muted); margin-bottom: 2rem; font-size: 0.95rem; }
.admin-auth-box .form-group { text-align: right; }
.admin-error {
  color: var(--color-error);
  font-size: 0.88rem;
  margin-top: 0.5rem;
  animation: shake 0.4s;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-8px); }
  75%       { transform: translateX(8px); }
}
.admin-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.admin-header h1 { font-size: 1.5rem; margin: 0; flex: 1; }
.admin-badge {
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: var(--fw-bold);
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.admin-table th {
  background: var(--color-bg-light);
  padding: 0.85rem 1rem;
  text-align: right;
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.admin-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--color-border); }
.admin-table tr:hover td { background: var(--color-bg-light); }
.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}
.btn-danger { background: var(--color-error); color: var(--color-white); }
.btn-danger:hover { background: #a93226; }

/* Image preview */
.img-preview {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: none;
}

/* =====================================================
   TIMELINE (about page)
   ===================================================== */
.timeline { position: relative; padding-right: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gold);
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  right: -2.55rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-gold);
}
.timeline-year {
  font-size: 0.8rem;
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.timeline-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.timeline-item p  { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* =====================================================
   PRICING
   ===================================================== */
.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
  border-color: var(--color-gold);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-5px); }
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.pricing-price sub { font-size: 1rem; font-weight: var(--fw-regular); }
.pricing-desc { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  padding: 0.45rem 0;
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-bg-light);
}
.pricing-features li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

/* =====================================================
   WORKSHOP CARD
   ===================================================== */
.workshop-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
  transition: transform var(--transition);
}
.workshop-card:hover { transform: translateY(-4px); }
.workshop-img {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary), #2a5298);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  /* REPLACE WITH REAL IMAGE */
}
.workshop-img h3 { color: var(--color-white); font-size: 1.3rem; }
.workshop-body { padding: 1.75rem; }
.workshop-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.workshop-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* =====================================================
   VIDEO CARD
   ===================================================== */
.video-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.video-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: var(--color-primary);
}
.video-iframe-wrap iframe,
.video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  gap: 0.5rem;
}
.video-card .card-body { padding: 1.25rem; }
.video-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.video-card .video-meta {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  display: flex;
  gap: 0.75rem;
}

/* =====================================================
   CONTACT INFO BOX
   ===================================================== */
.contact-info-box {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-body strong { display: block; font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 0.2rem; }
.contact-item-body a, .contact-item-body span { font-size: 1.05rem; font-weight: var(--fw-semibold); }
.contact-item-body a { color: var(--color-primary); }
.contact-item-body a:hover { color: var(--color-gold); }

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  border: 2px dashed var(--color-border);
}

/* =====================================================
   ARTICLE PAGE
   ===================================================== */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.95;
}
.article-body h2, .article-body h3 { margin: 2rem 0 1rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol {
  padding-right: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-body li { margin-bottom: 0.5rem; }
.article-meta-bar {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.article-cta-box {
  background: linear-gradient(135deg, var(--color-gold), #e8c06a);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
  color: var(--color-white);
}
.article-cta-box h3 { color: var(--color-white); margin-bottom: 0.75rem; }
.author-box {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 3rem 0;
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #2a5298);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  /* REPLACE WITH REAL IMAGE: gal.jpg */
}
.author-box-body strong { display: block; font-weight: var(--fw-bold); margin-bottom: 0.25rem; }
.author-box-body p { margin: 0; font-size: 0.9rem; color: var(--color-text-muted); }

/* =====================================================
   THANK YOU & 404
   ===================================================== */
.centered-page {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: scale-in 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}
@keyframes scale-in { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-icon svg { width: 40px; height: 40px; stroke: white; }

.error-404 {
  font-size: clamp(5rem, 20vw, 10rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* =====================================================
   CREDENTIALS / BADGES
   ===================================================== */
.cred-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cred-badge {
  background: var(--color-bg-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* About approach pillars */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.approach-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.approach-icon { font-size: 3rem; margin-bottom: 1rem; }
.approach-card h3 { margin-bottom: 0.5rem; }
.approach-card p  { font-size: 0.95rem; color: var(--color-text-muted); margin: 0; }

/* =====================================================
   HERO (index.html specific)
   ===================================================== */
.home-hero {
  min-height: 100dvh;
  background: linear-gradient(135deg, rgba(11,25,60,0.92) 0%, rgba(27,58,107,0.85) 100%),
              linear-gradient(135deg, #1B3A6B, #0b1940); /* REPLACE WITH HERO IMAGE */
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.home-hero .container { position: relative; z-index: 1; }
.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text { color: var(--color-white); }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: var(--fw-semibold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-text h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: var(--fw-extrabold);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-text .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 520px;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.hero-image-wrap {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.6s 0.15s ease both;
}
.hero-gal-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 4px solid var(--color-gold);
  background: linear-gradient(135deg, #2a5298, #1B3A6B);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  /* REPLACE WITH REAL IMAGE: gal.jpg */
}
.hero-gal-circle span { color: rgba(255,255,255,0.3); font-size: 0.82rem; text-align: center; padding: 1rem; }

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

/* =====================================================
   RESPONSIVE — Tablet (768px+)
   ===================================================== */
@media (min-width: 768px) {
  :root { --container-pad: 2rem; }

  .nav-links    { display: flex; }
  .nav-wa-btn   { display: inline-flex; }
  .hamburger    { display: none; }

  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse > *:first-child { order: 2; }
  .split.reverse > *:last-child  { order: 1; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }

  .journey-steps { grid-template-columns: repeat(3, 1fr); }
  .trust-list    { grid-template-columns: 1fr 1fr; }
  .approach-grid { grid-template-columns: repeat(3, 1fr); }

  .home-hero-inner { grid-template-columns: 55% 45%; }
  .home-hero-inner > *:first-child { order: 2; }
  .home-hero-inner > *:last-child  { order: 1; }
  .hero-gal-circle { width: 320px; height: 320px; }

  .workshop-card { grid-template-columns: 280px 1fr; }
  .workshop-img  { height: auto; min-height: 200px; }
}

/* =====================================================
   RESPONSIVE — Desktop (1024px+)
   ===================================================== */
@media (min-width: 1024px) {
  :root { --container-pad: 2.5rem; }

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

/* =====================================================
   UTILITIES
   ===================================================== */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.divider {
  height: 1px;
  background: var(--color-border);
  margin: 2rem 0;
}

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Skip nav */
.skip-link {
  position: absolute;
  top: -100px;
  right: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  z-index: 99999;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: var(--fw-bold);
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Print */
@media print {
  .navbar, .footer, .whatsapp-fab, .back-to-top, .mobile-drawer, .overlay { display: none !important; }
  body { padding-top: 0; }
}

/* =====================================================
   SERVICES STICKY SUBNAV
   ===================================================== */
.services-subnav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  z-index: 900;
  transition: box-shadow var(--transition);
}
.services-subnav.is-sticky {
  position: sticky;
  top: var(--nav-height);
  box-shadow: 0 4px 20px rgba(27,58,107,0.08);
}
.services-subnav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
}
.services-subnav-inner::-webkit-scrollbar { display: none; }
.subnav-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
  flex-shrink: 0;
}
.subnav-link:hover {
  color: var(--color-primary);
  background: rgba(27,58,107,0.04);
}
.subnav-link.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-gold);
  font-weight: 700;
}

/* Service page full layout */
.service-page-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.service-content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}

/* Service detail sections */
.service-block {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}
.service-block:last-of-type { border-bottom: none; }

/* Feature list (enhanced) */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--color-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Who-for tags */
.who-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.who-tag {
  background: rgba(27,58,107,0.08);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.who-tag:hover { background: var(--color-primary); color: white; }

/* Pain box */
.pain-box {
  background: linear-gradient(135deg, rgba(27,58,107,0.04), rgba(27,58,107,0.08));
  border-right: 4px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}
.pain-box p { margin: 0; font-size: 1.05rem; line-height: 1.8; }

/* Process steps (service page) */
.process-steps { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover { transform: translateX(-4px); box-shadow: var(--shadow-md); }
.process-step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), #e8c06a);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}
.process-step-body h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.process-step-body p { font-size: 0.92rem; color: var(--color-text-muted); margin: 0; }

/* CTA box inside service page */
.service-cta-box {
  background: linear-gradient(135deg, var(--color-primary), #2a5298);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  color: white;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}
.service-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='25'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.service-cta-box > * { position: relative; z-index: 1; }
.service-cta-box h3 { color: white; font-size: clamp(1.3rem,3vw,1.8rem); margin-bottom: 0.75rem; }
.service-cta-box p { color: rgba(255,255,255,0.82); margin-bottom: 1.75rem; font-size: 1.05rem; }

/* Service teaser card */
.service-teaser {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.service-teaser:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(27,58,107,0.16); }
.service-teaser-header {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary), #2a5298);
  color: white;
  text-align: center;
}
.service-teaser-icon { font-size: 3rem; margin-bottom: 0.75rem; display: block; }
.service-teaser-header h3 { color: white; margin: 0; font-size: 1.3rem; }
.service-teaser-body { padding: 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-teaser-body p { color: var(--color-text-muted); font-size: 0.95rem; flex: 1; }
.service-teaser-body .btn { margin-top: 1.25rem; align-self: stretch; justify-content: center; }

/* Process page tabs */
.process-tab-wrap { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.process-tab {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  background: white;
  color: var(--color-text-muted);
}
.process-tab.active, .process-tab:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* FAQ mini (in service pages) */
.faq-mini { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.faq-mini-item {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.faq-mini-item h4 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--color-primary); }
.faq-mini-item p { font-size: 0.93rem; color: var(--color-text-muted); margin: 0; }

/* =====================================================
   LOGO IMAGE IN NAV
   ===================================================== */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* =====================================================
   ✨ ENHANCED ANIMATIONS
   ===================================================== */

/* --- Keyframes --- */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(1deg); }
  66%       { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.3), 0 4px 16px rgba(0,0,0,0.2); }
  50%       { box-shadow: 0 0 40px rgba(201,168,76,0.6), 0 8px 32px rgba(0,0,0,0.3); }
}

@keyframes ripple {
  0%   { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes borderGlow {
  0%, 100% { border-color: var(--color-gold); box-shadow: 0 0 12px rgba(201,168,76,0.3); }
  50%       { border-color: #e8c06a; box-shadow: 0 0 28px rgba(201,168,76,0.6); }
}

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

@keyframes orbit {
  0%   { transform: rotate(0deg) translateX(18px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(18px) rotate(-360deg); }
}

@keyframes waveY {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(1.08); }
}

/* --- Animated Hero Background --- */
.home-hero {
  background: linear-gradient(
    135deg,
    #0b1940 0%,
    #1B3A6B 35%,
    #0f2a5c 65%,
    #0b1940 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}

/* Floating hero image */
.hero-gal-circle {
  animation: float 6s ease-in-out infinite, borderGlow 4s ease-in-out infinite;
}
.hero-gal-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Hero decorative rings */
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap::before,
.hero-image-wrap::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-image-wrap::before {
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  animation: borderGlow 3s ease-in-out infinite;
  opacity: 0.5;
}
.hero-image-wrap::after {
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  border-color: rgba(201,168,76,0.1);
  animation: borderGlow 3s ease-in-out infinite 1.5s;
  opacity: 0.3;
}

/* --- Shimmer on section tags --- */
.section-tag {
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    #e8c06a 40%,
    var(--color-gold) 60%,
    #b8933f 100%
  );
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

/* --- Gold stat numbers --- */
.proof-stat .stat-num {
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--color-gold), #f0d070, var(--color-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* --- Enhanced CTA buttons --- */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-gold), #e8c06a);
  animation: glowPulse 3s ease-in-out infinite;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #b8933f, var(--color-gold));
  animation: none;
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  transform: translateY(-3px) scale(1.02);
}

/* WhatsApp button enhanced */
.btn-wa {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #25D366, #20BA5C);
}
.btn-wa:hover {
  background: linear-gradient(135deg, #20BA5C, #1da354);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  transform: translateY(-3px) scale(1.02);
}
.btn-wa::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s, opacity 0.6s;
  opacity: 0;
}
.btn-wa:active::before { width: 300px; height: 300px; opacity: 0; transition: 0s; }

/* --- 3D Card hovers --- */
.service-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px) rotateX(3deg);
  box-shadow: 0 20px 50px rgba(27,58,107,0.18);
}
.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
  display: inline-block;
  transition: transform 0.3s ease;
}
.service-icon { transition: transform 0.3s ease; display: inline-block; }

.pain-card {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, border-color 0.35s;
}
.pain-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 16px 40px rgba(201,168,76,0.2);
  border-right-color: var(--color-primary);
}

.testimonial-card {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 44px rgba(27,58,107,0.14);
}

/* --- Lead magnet enhanced --- */
.lead-magnet {
  background: linear-gradient(135deg, #C9A84C 0%, #e8c06a 40%, #C9A84C 70%, #b8933f 100%);
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.12) 0%, transparent 60%);
  animation: orbit 12s linear infinite;
  pointer-events: none;
}

/* --- Journey steps enhanced --- */
.step-num {
  position: relative;
  background: linear-gradient(135deg, var(--color-gold), #e8c06a);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: countUp 0.6s ease both;
}
.journey-step:hover .step-num {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
}

/* --- Trust checkmarks enhanced --- */
.trust-item {
  transition: transform 0.25s ease;
  padding: 0.3rem 0;
}
.trust-item:hover {
  transform: translateX(-6px);
  color: var(--color-primary);
}

/* --- Footer logo shimmer --- */
.footer-logo-text {
  background: linear-gradient(90deg, #fff 0%, var(--color-gold) 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* --- WhatsApp FAB enhanced --- */
.whatsapp-fab {
  background: linear-gradient(135deg, #25D366, #20BA5C);
}
@keyframes pulse-wa {
  0%   { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50%  { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 14px rgba(37,211,102,0.0); }
  100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.0); }
}

/* --- Navbar scroll shadow --- */
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(27,58,107,0.12);
  backdrop-filter: blur(8px);
}

/* --- Hero pill enhanced --- */
.hero-pill {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.5);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}
.hero-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 2s linear infinite;
}

/* --- Section divider wave --- */
.section-wave {
  position: relative;
  overflow: hidden;
}
.section-wave::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 60px;
  background: var(--color-bg-light);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* --- Proof bar sparkle --- */
.proof-bar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1940, var(--color-primary), #0f2a5c);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
}

/* --- Page hero enhanced --- */
.page-hero {
  background: linear-gradient(
    135deg,
    #0b1940 0%,
    var(--color-primary) 50%,
    #0f2a5c 100%
  );
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
}

/* --- Gal photo in about section --- */
.gal-about-img {
  width: 100%;
  max-width: 380px;
  height: 460px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 20px 60px rgba(27,58,107,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin: 0 auto;
  display: block;
}
.gal-about-img:hover {
  transform: scale(1.02);
  box-shadow: 0 28px 80px rgba(27,58,107,0.32);
}

/* Author avatar with real photo */
.author-avatar {
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* --- Scroll-triggered entrance helpers --- */
[data-aos="fade-up"]    { transition-timing-function: cubic-bezier(0.25,0.46,0.45,0.94) !important; }
[data-aos="fade-left"]  { transition-timing-function: cubic-bezier(0.25,0.46,0.45,0.94) !important; }
[data-aos="fade-right"] { transition-timing-function: cubic-bezier(0.25,0.46,0.45,0.94) !important; }

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
#argaman-cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0 1rem 1rem;
}
#argaman-cookie-banner.cookie-visible {
  transform: translateY(0);
}
.cookie-inner {
  background: #0F2347;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 16px 16px 0 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.35);
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong {
  display: block;
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.cookie-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}
.cookie-text a {
  color: var(--color-gold);
  text-decoration: none;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-ess {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: var(--font-family);
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-ess:hover { border-color: white; color: white; }
.cookie-btn-all {
  background: var(--color-gold);
  border: none;
  color: #0F2347;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-family);
  transition: opacity 0.2s;
}
.cookie-btn-all:hover { opacity: 0.88; }
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; gap: 1rem; border-radius: 16px; margin: 0 0.5rem; }
  .cookie-actions { width: 100%; }
  .cookie-btn-ess, .cookie-btn-all { flex: 1; text-align: center; }
}

/* =====================================================
   HERO-SUB & HERO-ACTIONS (page heroes)
   ===================================================== */
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin: 1rem auto 1.75rem;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* =====================================================
   MOBILE OPTIMIZATIONS (max 767px)
   ===================================================== */
@media (max-width: 767px) {

  /* --- Nav --- */
  .nav-logo-text small { display: none; }
  .navbar { height: 60px; }
  :root { --nav-height: 60px; }

  /* --- Home Hero --- */
  .home-hero {
    min-height: 100svh;
    padding-top: calc(var(--nav-height) + 1rem);
    padding-bottom: 2rem;
    align-items: flex-start;
  }
  .home-hero-inner { gap: 1.5rem; }
  .hero-text h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero-text .hero-subtitle { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero-buttons { flex-direction: column; gap: 0.65rem; }
  .hero-buttons .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-gal-circle { width: 180px; height: 180px; }
  .hero-pill { font-size: 0.78rem; padding: 0.35rem 0.85rem; }

  /* --- Page Heroes (כל הדפים פנימיים) --- */
  .page-hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 1.5rem) 0 2.5rem;
  }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2rem); line-height: 1.3; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 1.25rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.6rem; }
  .hero-actions .btn { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
  .page-hero-content { text-align: center; }

  /* --- Sections --- */
  .section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 1.5rem; }
  .section-header h2 { font-size: 1.45rem; }

  /* --- Grid --- */
  .grid-4 { grid-template-columns: 1fr !important; }
  .split { grid-template-columns: 1fr !important; }
  .split > * { order: unset !important; }

  /* --- WhatsApp FAB --- */
  .whatsapp-fab {
    width: 52px;
    height: 52px;
    bottom: 16px;
    left: 16px;
  }
  .whatsapp-fab svg { width: 26px; height: 26px; }
  .whatsapp-fab .fab-tooltip { display: none; }
  .back-to-top { bottom: 78px; left: 16px; width: 40px; height: 40px; font-size: 1rem; }

  /* --- Cards --- */
  .service-card { padding: 1.5rem; }
  .pain-box { padding: 1.25rem; }

  /* --- Footer --- */
  .footer-inner { gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-bottom div { display: flex; gap: 1rem; justify-content: center; }

  /* --- Workshop cards --- */
  .workshop-card { grid-template-columns: 1fr !important; }
  .workshop-img { height: 180px; }

  /* --- Approach grid --- */
  .approach-grid { grid-template-columns: 1fr !important; }

  /* --- Testimonials --- */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* --- Buttons in heroes --- */
  .btn-lg { padding: 0.85rem 1.6rem; font-size: 0.95rem; }
}

/* =====================================================
   TABLET TWEAKS (768px – 1023px)
   ===================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-links a { font-size: 0.78rem; padding: 0.3rem 0.4rem; }
  .nav-wa-btn { font-size: 0.78rem; padding: 0.35rem 0.75rem !important; }
  .home-hero-inner { gap: 2rem; }
}

/* --- Credential full list (about.html) --- */
.cred-full-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}
.cred-full-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border-right: 4px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
}
.cred-full-item .cred-year {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
  min-width: 2.6rem;
  padding-top: 0.2rem;
}
.cred-full-item strong {
  display: block;
  color: var(--color-primary);
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
  line-height: 1.4;
}
.cred-full-item small {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}
.cred-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 1.5rem 0 0.75rem;
  text-align: center;
  opacity: 0.65;
}

/* --- Credential timeline (about.html) --- */
.cred-timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cred-timeline::before {
  content: '';
  position: absolute;
  right: 52px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gold), var(--color-primary));
  opacity: 0.25;
}
.cred-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0.9rem 0;
  position: relative;
}
.cred-timeline-item::after {
  content: '';
  position: absolute;
  right: 46px;
  top: 1.2rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.cred-timeline-item--new::after {
  background: var(--color-gold);
}
.cred-timeline-year {
  flex-shrink: 0;
  width: 106px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  padding-top: 0.15rem;
  opacity: 0.75;
}
.cred-timeline-body {
  flex: 1;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-sm);
  border-right: 3px solid var(--color-gold);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cred-timeline-item--new .cred-timeline-body {
  border-right-color: var(--color-primary);
  background: linear-gradient(135deg, #fff, #f5f8ff);
}
.cred-timeline-body strong {
  font-size: 0.92rem;
  color: var(--color-primary);
  line-height: 1.4;
}
.cred-timeline-body span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
@media (max-width: 600px) {
  .cred-timeline::before { right: 40px; }
  .cred-timeline-item::after { right: 34px; }
  .cred-timeline-year { width: 80px; font-size: 0.75rem; }
}
