/*
Theme Name: Sentir
Theme URI: https://www.fundacionsentir.org
Author: Adise.cl
Author URI: https://www.adise.cl
Description: Tema oficial de la Fundación Sentir — Por una Inclusión Plena y Feliz.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: Proprietary
Text Domain: sentir
Tags: nonprofit, accessibility, wpbakery, one-column, custom-colors, custom-menu, custom-logo, featured-images, full-width-template, theme-options, translation-ready
*/

/* =====================================================================
   SENTIR — DESIGN TOKENS
   ===================================================================== */

:root {
  --color-primary:        #E8583D;
  --color-primary-dark:   #C94428;
  --color-secondary:      #3364A9;
  --color-secondary-dark: #254E88;
  --color-accent:         #EE8B38;
  --color-accent-dark:    #D4771F;
  --color-yellow:         #F5D45E;
  --color-white:          #FFFFFF;
  --color-light:          #F9F6F2;
  --color-dark:           #1E1E1E;
  --color-gray:           #6B6B6B;
  --color-border:         #E4DDD6;

  --font-heading: 'Nunito', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --radius-card:   16px;
  --radius-btn:    50px;
  --radius-small:  8px;

  --shadow-card:   0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-card-hover: 0 8px 36px rgba(0, 0, 0, 0.12);
  --shadow-header: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-header-scrolled: 0 4px 20px rgba(0, 0, 0, 0.12);

  --max-width: 1200px;
  --section-padding: 80px 0;
  --section-padding-sm: 48px 0;

  --transition-base: all 0.3s ease;
}

/* =====================================================================
   RESET & BASE
   ===================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.75;
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-primary);
}

/* =====================================================================
   TIPOGRAFÍA
   ===================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; }
h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; }
h4 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 600; }
h5 { font-size: 18px; font-weight: 600; }
h6 { font-size: 16px; font-weight: 600; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-gray);
}

/* =====================================================================
   LAYOUT HELPERS
   ===================================================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sentir-section {
  padding: var(--section-padding);
}

.sentir-section--sm {
  padding: var(--section-padding-sm);
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-white  { color: #fff !important; }
.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-gray   { color: var(--color-gray) !important; }

.bg-primary   { background-color: var(--color-primary) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.bg-light     { background-color: var(--color-light) !important; }
.bg-yellow    { background-color: var(--color-yellow) !important; }
.bg-dark      { background-color: var(--color-dark) !important; }
.bg-white     { background-color: var(--color-white) !important; }

/* =====================================================================
   BOTONES
   ===================================================================== */

.btn,
.vc_btn3,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

/* Primary */
.btn-primary,
.vc_btn3-color-primary {
  background-color: var(--color-primary);
  color: #fff !important;
  border-color: var(--color-primary);
}
.btn-primary:hover,
.vc_btn3-color-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 88, 61, 0.35);
}

/* Secondary */
.btn-secondary {
  background-color: var(--color-secondary);
  color: #fff !important;
  border-color: var(--color-secondary);
}
.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(51, 100, 169, 0.35);
}

/* Outline Primary */
.btn-outline-primary {
  background-color: transparent;
  color: var(--color-primary) !important;
  border-color: var(--color-primary);
}
.btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: #fff !important;
}

/* Outline White */
.btn-outline-white {
  background-color: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.8);
}
.btn-outline-white:hover {
  background-color: #fff;
  color: var(--color-secondary) !important;
}

/* Accent */
.btn-accent {
  background-color: var(--color-accent);
  color: #fff !important;
  border-color: var(--color-accent);
}
.btn-accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff !important;
}

/* Small button */
.btn-sm { padding: 10px 24px; font-size: 14px; }

/* =====================================================================
   BADGE / ETIQUETA
   ===================================================================== */

.sentir-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-btn);
  line-height: 1.4;
}

.sentir-badge--yellow {
  background-color: var(--color-yellow);
  color: var(--color-dark);
}

.sentir-badge--primary {
  background-color: rgba(232, 88, 61, 0.12);
  color: var(--color-primary);
}

.sentir-badge--secondary {
  background-color: rgba(51, 100, 169, 0.12);
  color: var(--color-secondary);
}

.sentir-badge--white {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* =====================================================================
   SECTION HEADER (eyebrow + título + subtítulo)
   ===================================================================== */

.section-header {
  margin-bottom: 52px;
}

.section-header .eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .lead {
  max-width: 620px;
}

.section-header.text-center .lead {
  margin: 0 auto;
}

/* =====================================================================
   TARJETAS
   ===================================================================== */

.sentir-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 36px 32px;
  transition: var(--transition-base);
  height: 100%;
}

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

.sentir-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.sentir-card__icon--secondary { color: var(--color-secondary); }
.sentir-card__icon--accent    { color: var(--color-accent); }

.sentir-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.sentir-card__text {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.7;
}

/* =====================================================================
   TOPBAR
   ===================================================================== */

#sentir-topbar {
  background-color: var(--color-secondary);
  height: 38px;
  display: flex;
  align-items: center;
  transition: var(--transition-base);
  overflow: hidden;
}

#sentir-topbar.hidden {
  height: 0;
}

.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-contact a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact a:hover {
  color: #fff;
}

.topbar-contact svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-social a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  transition: var(--transition-base);
}

.topbar-social a:hover {
  color: #fff;
}

.topbar-social svg {
  width: 16px;
  height: 16px;
}

/* =====================================================================
   HEADER PRINCIPAL — STICKY
   ===================================================================== */

#sentir-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: var(--shadow-header);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

#sentir-header.scrolled {
  box-shadow: var(--shadow-header-scrolled);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
}

.site-logo img {
  height: 52px;
  width: auto;
}

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

.site-logo__text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.5px;
  line-height: 1;
}

.site-logo__tagline {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-gray);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Nav principal */
#sentir-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

#sentir-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

#sentir-nav ul li a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-dark);
  padding: 8px 14px;
  border-radius: 8px;
  display: block;
  white-space: nowrap;
  transition: var(--transition-base);
  position: relative;
}

#sentir-nav ul li a:hover,
#sentir-nav ul li.current-menu-item > a {
  color: var(--color-primary);
  background-color: rgba(232, 88, 61, 0.06);
}

#sentir-nav ul li.current-menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

/* Submenu */
#sentir-nav ul li {
  position: relative;
}

#sentir-nav ul li ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--color-primary);
  min-width: 220px;
  flex-direction: column;
  gap: 0;
  padding: 8px;
  display: none;
  z-index: 100;
}

#sentir-nav ul li:hover ul {
  display: flex;
}

#sentir-nav ul li ul li a {
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 8px;
  white-space: nowrap;
}

/* CTA en header */
.header-cta {
  flex-shrink: 0;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* =====================================================================
   MENÚ HAMBURGUESA (MOBILE)
   ===================================================================== */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
#sentir-nav-mobile {
  display: none;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 16px 0;
}

#sentir-nav-mobile.is-open {
  display: block;
}

#sentir-nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#sentir-nav-mobile ul li a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-dark);
  padding: 14px 24px;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-base);
}

#sentir-nav-mobile ul li a:hover {
  color: var(--color-primary);
  background: rgba(232, 88, 61, 0.04);
  padding-left: 32px;
}

#sentir-nav-mobile .mobile-cta {
  padding: 16px 24px;
}

#sentir-nav-mobile .mobile-cta .btn {
  width: 100%;
  justify-content: center;
}

/* =====================================================================
   HERO SECTION
   ===================================================================== */

.sentir-hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.sentir-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sentir-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(51, 100, 169, 0.82) 0%,
    rgba(232, 88, 61, 0.6) 100%
  );
}

.sentir-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.sentir-hero__content--half {
  max-width: 600px;
}

.sentir-hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

.sentir-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  margin-bottom: 36px;
}

.sentir-hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =====================================================================
   STATISTICS BAR
   ===================================================================== */

.sentir-stats {
  background-color: var(--color-secondary);
  padding: 48px 0;
}

.sentir-stats__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.sentir-stat {
  text-align: center;
  color: #fff;
}

.sentir-stat__number {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.sentir-stat__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* =====================================================================
   PROGRAM CARDS GRID
   ===================================================================== */

.sentir-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition-base);
}

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

.program-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.program-card__body {
  padding: 28px;
}

.program-card__icon-wrap {
  width: 56px;
  height: 56px;
  background-color: rgba(232, 88, 61, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.program-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.program-card__text {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* =====================================================================
   TESTIMONIOS
   ===================================================================== */

.sentir-testimonial {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 36px 32px;
  position: relative;
}

.sentir-testimonial::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 28px;
  opacity: 0.6;
}

.sentir-testimonial__text {
  font-size: 16px;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.75;
  margin-bottom: 20px;
  padding-top: 32px;
}

.sentir-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sentir-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--color-light);
}

.sentir-testimonial__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-dark);
}

.sentir-testimonial__role {
  font-size: 13px;
  color: var(--color-gray);
}

/* =====================================================================
   BLOG CARDS
   ===================================================================== */

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-card__date {
  font-size: 13px;
  color: var(--color-gray);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card__title a {
  color: inherit;
}

.blog-card__title a:hover {
  color: var(--color-primary);
}

.blog-card__excerpt {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.65;
  flex: 1;
}

.blog-card__footer {
  padding: 0 24px 24px;
}

/* =====================================================================
   CONTACT / ADMISSION FORM
   ===================================================================== */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-dark);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 18px;
  transition: border-color 0.2s ease;
  outline: none;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: var(--color-primary);
}

.wpcf7 textarea {
  resize: vertical;
  min-height: 140px;
}

.wpcf7 label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-dark);
  display: block;
  margin-bottom: 6px;
}

.wpcf7 .wpcf7-submit {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 36px;
  cursor: pointer;
  transition: var(--transition-base);
  width: 100%;
}

.wpcf7 .wpcf7-submit:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 88, 61, 0.35);
}

/* =====================================================================
   FOOTER
   ===================================================================== */

#sentir-footer {
  background-color: #1E1E1E;
}

.footer-main {
  padding: 64px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
}

.footer-col__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.footer-logo-wrap {
  margin-bottom: 16px;
}

.footer-logo-wrap img {
  height: 44px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-white);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  color: #AAAAAA;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: #fff;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

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

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

.footer-links a {
  font-size: 14px;
  color: #CCCCCC;
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 14px;
  color: #CCCCCC;
  line-height: 1.5;
}

.footer-contact-item a {
  color: #CCCCCC;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-badge-ong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  margin-top: 24px;
}

/* Footer bar */
.footer-bar {
  background: #111111;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: #888888;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: #888888;
  transition: var(--transition-base);
}

.footer-legal a:hover {
  color: #fff;
}

/* =====================================================================
   PAGE BANNER (interior pages)
   ===================================================================== */

.page-banner {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1d4278 100%);
  padding: 64px 0;
  text-align: center;
}

.page-banner h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-banner .breadcrumb {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.page-banner .breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}

.page-banner .breadcrumb a:hover {
  color: #fff;
}

/* =====================================================================
   WPBAKERY OVERRIDES
   ===================================================================== */

.vc_row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.wpb_wrapper {
  font-family: var(--font-body);
}

.vc_column_container > .vc_column-inner {
  padding: 0;
}

/* WPBakery button global override */
.vc_btn3 {
  border-radius: var(--radius-btn) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  transition: var(--transition-base) !important;
}

.vc_btn3-color-juicy-pink,
.vc_btn3-color-juicy-pink.vc_btn3-style-flat {
  background-color: var(--color-primary) !important;
  color: #fff !important;
}

.vc_btn3-color-juicy-pink:hover {
  background-color: var(--color-primary-dark) !important;
}

/* WPBakery separator */
.vc_separator .vc_sep_holder .vc_sep_line {
  border-color: var(--color-border) !important;
}

/* =====================================================================
   MAIN CONTENT AREA
   ===================================================================== */

.site-content {
  min-height: 60vh;
}

.entry-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px;
}

.entry-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 1.4em;
}

.entry-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.entry-content h3 {
  margin-top: 36px;
  margin-bottom: 12px;
}

.entry-content ul,
.entry-content ol {
  padding-left: 24px;
  margin-bottom: 1.4em;
}

.entry-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* =====================================================================
   SINGLE POST
   ===================================================================== */

.single-post-header {
  background: var(--color-light);
  padding: 60px 0;
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.post-category {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
}

.post-date {
  font-size: 14px;
  color: var(--color-gray);
}

.single-post-title {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 800px;
}

.featured-image-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin: 40px auto;
  max-width: 860px;
}

/* =====================================================================
   PAGINATION
   ===================================================================== */

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-base);
}

.pagination a {
  background: var(--color-light);
  color: var(--color-dark);
  border: 2px solid var(--color-border);
}

.pagination a:hover,
.pagination .current {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* =====================================================================
   UTILITY: DECORATIVE SHAPES
   ===================================================================== */

.sentir-dot-pattern {
  background-image: radial-gradient(var(--color-border) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.sentir-section-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-yellow));
  border: none;
  margin: 0;
}

/* =====================================================================
   ACCESSIBILITY
   ===================================================================== */

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 9999;
}

.skip-link:focus {
  left: 24px;
  top: 24px;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
}

*:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  #sentir-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 48px 0;
  }

  .sentir-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sentir-programs-grid {
    grid-template-columns: 1fr;
  }

  .sentir-hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .sentir-hero__buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  #sentir-topbar {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bar-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sentir-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .header-inner {
    padding: 0 16px;
  }
}
