/* ===============================
   CSS Variables
   =============================== */
:root {
    --primary-blue: #4DB8E8;
    --dark-blue: #2B3A67;
    --navy: #2B397A;
    --yellow: #F5C518;
    --light-blue: #e8f4fd;
    --pink-card: #ffe8f0;
    --cream-card: #fff8e7;
    --green-card: #e8f8f0;
    --purple-card: #f0e8ff;
    --text-gray: #666;
    --text-dark: #1E293B;
    --text-light: #94A3B8;
    --bg-light: #F8FAFC;
    --sidebar-bg: #1E293B;
    --sidebar-hover: #334155;
    --card-bg: #FFFFFF;
    --border-color: #E2E8F0;
    --success: #4DB8E8;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Override Green Colors from main.css */
    --tp-common-green: #4DB8E8 !important;
    --tp-common-green-2: #4DB8E8 !important;
    --tp-common-green-3: #e8f4fd !important;
    --tp-common-green-4: #4DB8E8 !important;
    --tp-common-green-5: #4DB8E8 !important;
    
    /* Override Black/Text Colors - Fix green-tinted text */
    --tp-common-black-4: #333333 !important;
}

/* ===============================
   Base Styles
   =============================== */
body {
    background-color: #ffffff !important;
    background-image: none !important;
    font-family: 'Open Sans', sans-serif;
}

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

/* ===============================
   Scrollbar Styles
   =============================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* ===============================
   Global Button Styles
   =============================== */
.btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

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

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: #2B3A7A;
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(77,184,232,0.1);
}

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

/* ===============================
   Blog & Service Card Styles
   =============================== */
.tp-blog-md-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tp-blog-ai-thumb img {
    height: 280px;
    object-fit: cover;
}

.tp-blog-md-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tp-blog-md-dates {
    flex-shrink: 0;
}

.tp-blog-md-title {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
}

.tp-blog-ai-item {
    background-color: white !important;
}

.tp-blog-md-item:hover .tp-blog-md-content {
    background-color: var(--primary-blue) !important;
}

.tp-service-md-item:hover {
    background-color: var(--primary-blue) !important;
}

/* ===============================
   Partner Brand Styles
   =============================== */
.partners-section {
    background-color: var(--light-blue);
}

.tp-text-slider-item span {
    color: #333 !important;
}

.tp-text-slider-item .icons {
    color: #333 !important;
}

.tp-brand-area .tp-brand-wrap .swiper .swiper-wrapper .swiper-slide .tp-brand-item {
    padding: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 160px !important;
}

.tp-brand-area .tp-brand-wrap .swiper .swiper-wrapper .swiper-slide .tp-brand-item a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.tp-brand-area .tp-brand-wrap .swiper .swiper-wrapper .swiper-slide .tp-brand-item a img {
    max-height: 140px !important;
    max-width: 220px !important;
    width: auto !important;
    height: auto !important;
    min-height: 80px !important;
    object-fit: contain !important;
    display: block !important;
    filter: none !important;
}

/* ===============================
   Back to Top Button
   =============================== */
.scrollToTop {
    display: none !important;
}

.scrollToTop.active-progress {
    display: block !important;
}

.scrollToTop-4 .water {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

.scrollToTop-4 .water svg use {
    fill: var(--primary-blue) !important;
}

/* ===============================
   Indonesia Sehat Section
   =============================== */
.tp-sehat-thumb {
    margin-left: -80px;
    width: calc(100% + 80px);
}

/* ===============================
   About Page - Hand Image
   =============================== */
.about-hand-col {
    margin-left: -60px;
}

.about-hand-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===============================
   Home Page - About Section
   =============================== */
.about-title {
    color: #1e3a8a !important;
    font-size: 80px !important;
    line-height: 1.1 !important;
    padding-left: 10px;
}

.about-description {
    color: #444444;
    padding-left: 10px;
    margin-top: 30px;
    text-align: left;
}

.about-btn {
    background: #4DB8E8 !important;
    color: white !important;
    padding: 14px 40px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    margin-left: 10px;
    margin-top: 20px;
}

/* ===============================
   Hero & Custom Section Styles
   =============================== */
.hero-custom {
    background: linear-gradient(135deg, #d4e8f7 0%, #e8f4fd 40%, #f0f8ff 100%);
    padding: 80px 60px;
}

.feature-card-custom {
    padding: 30px 25px;
    border-radius: 16px;
    transition: all 0.4s;
}

.feature-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 85px;
    width: 55px;
    height: 55px;
    background: #4DB8E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(77,184,232,0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    color: white;
    font-size: 26px;
}

.py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
}

.mb-16 {
    margin-bottom: 64px;
}

.gap-8 {
    gap: 32px;
}

.gap-4 {
    gap: 16px;
}

/* ===============================
   Service Cards Section
   =============================== */
.srvc-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px 35px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.srvc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.srvc-card-icon {
    font-size: 64px;
    color: #2B397A;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.srvc-card-title {
    color: #2B397A;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.srvc-card-desc {
    color: #444444;
    font-size: 16px;
    line-height: 1.7;
}

.srvc-section-title {
    color: #2B397A;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.srvc-section-subtitle {
    color: #666666;
    font-size: 18px;
    margin-bottom: 60px;
}

.srvc-swiper .swiper-pagination-bullet {
    background-color: rgba(43, 57, 122, 0.3);
    width: 12px;
    height: 12px;
    opacity: 1;
}

.srvc-swiper .swiper-pagination-bullet-active {
  background-color: #2B397A;
}

/* ===============================
   Quote Section Styles
   =============================== */
.tp-blog-it-qoute .tp-text-grey-5 {
  color: #e0e0e0 !important;
}

.tp-blog-it-qoute .tp-blog-it-qoute-icon {
  background-color: rgba(255,255,255,0.2) !important;
}

.tp-blog-it-qoute .dvdr {
  background-color: rgba(255,255,255,0.3) !important;
}

.tp-blog-it-qoute a.hover-text-white:hover {
  color: #4DB8E8 !important;
}

/* ===============================
   Override All Green Colors
   =============================== */
.cursor-bg-green,
.cursor-bg-green-2,
[class*="cursor-green"],
[class*="green-bg"],
[class*="bg-green"],
.tp-bg-common-green,
.tp-bg-common-green-2,
.tp-bg-common-green-3,
.tp-bg-common-green-4,
.tp-bg-common-green-5 {
  background-color: #4DB8E8 !important;
}

.text-green,
[class*="text-green"],
.tp-text-common-green,
.tp-text-common-green-2,
.tp-text-common-green-3,
.tp-text-common-green-4,
.tp-text-common-green-5 {
  color: #4DB8E8 !important;
}

.border-green,
[class*="border-green"],
.tp-border-common-green,
.tp-border-common-green-2,
.tp-border-common-green-3,
.tp-border-common-green-4,
.tp-border-common-green-5 {
  border-color: #4DB8E8 !important;
}

/* Override any green fill in SVGs */
svg [fill*="green"],
svg [fill*="#2ecc71"],
svg [fill*="#27ae60"],
svg [fill*="#1abc9c"],
svg [fill*="#16a085"] {
  fill: #4DB8E8 !important;
}

/* Override any green stroke in SVGs */
svg [stroke*="green"],
svg [stroke*="#2ecc71"],
svg [stroke*="#27ae60"],
svg [stroke*="#1abc9c"],
svg [stroke*="#16a085"] {
  stroke: #4DB8E8 !important;
}

/* Override Blog Meta Tags */
.tp-blog-meta span,
.tp-blog-meta span:first-child {
  color: #4DB8E8 !important;
}

.tp-blog-meta span.borders {
  background-color: #4DB8E8 !important;
}

/* Override all green colors in theme */
[style*="color: #2ecc71"],
[style*="color: #27ae60"],
[style*="color: #1abc9c"],
[style*="color: #16a085"] {
  color: #4DB8E8 !important;
}

[style*="background-color: #2ecc71"],
[style*="background-color: #27ae60"],
[style*="background-color: #1abc9c"],
[style*="background-color: #16a085"] {
  background-color: #4DB8E8 !important;
}

/* ===============================
   Pillar Cards Section
   =============================== */
.pillar-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 50px 40px;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    text-align: left;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.pillar-icon {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pillar-title {
    color: #2B397A;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pillar-desc {
    color: #333;
    font-size: 17px;
    line-height: 1.7;
}

.komitmen-kami-btn {
    background: transparent;
    color: #4DB8E8;
    border: 2px solid #4DB8E8;
    border-radius: 50px;
    padding: 10px 45px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.komitmen-kami-btn:hover {
    background: #4DB8E8;
    color: white;
}

.tp-bg-biru-custom {
    background: #2B397A !important;
    border-radius: 16px;
}

.custom-video-btn {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: #4DB8E8 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
}

.custom-video-btn i {
    color: white !important;
    font-size: 20px !important;
}

.video-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.video-text-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

.video-text-title {
    color: white !important;
    font-size: 18px !important;
    margin: 0 !important;
    font-weight: 700 !important;
}

.divider {
    border-radius: 4px;
}

.pillars-slider {
    padding-bottom: 40px;
}

.pillars-slider .swiper-pagination-bullet {
    background-color: rgba(43, 57, 122, 0.3);
    width: 12px;
    height: 12px;
    opacity: 1;
}

.pillars-slider .swiper-pagination-bullet-active {
    background-color: #2B397A;
}

/* ===============================
   Region List Section
   =============================== */
.region-list {
    width: 100%;
}

.region-item {
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom: 2px solid #e0e0e0;
    gap: 40px;
}

.region-item:first-child {
    padding-top: 0;
}

.region-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.region-item-number {
    font-size: 48px;
    font-weight: 800;
    color: #2B397A;
    min-width: 80px;
}

.region-item-content {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.region-item-title {
    font-size: 28px;
    font-weight: 700;
    color: #2B397A;
    margin-bottom: 10px;
    text-align: left;
}

.region-item-desc {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.region-item-badge {
    padding: 10px 40px;
    border: 2px solid #4DB8E8;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #4DB8E8;
    white-space: nowrap;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-item-badge:hover {
    background: #4DB8E8;
    color: white;
}

/* ===============================
   Komunitas Cards Section
   =============================== */
.komunitas-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.komunitas-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.komunitas-card img {
    width: 100%;
    height: auto;
}

.komunitas-card .card-body {
    padding: 30px 25px;
}

/* ===============================
   Stats / Counter Section
   =============================== */
.tp-counter-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tp-counter-wrap-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
}

.tp-counter-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.tp-counter-item i {
    margin-top: 10px;
    width: 120px !important;
    height: 120px !important;
    line-height: 120px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    background-color: rgba(30, 58, 138, 0.1);
    color: #1e3a8a !important;
    font-size: 50px !important;
    box-sizing: border-box;
    padding: 0;
    margin: 10px 0 0 0;
}

/* ===============================
   About Page Hero
   =============================== */
.about-hero-section {
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

/* ===============================
   About Page Feature Section
   =============================== */
.tp-about-feature-info {
    background-color: var(--navy) !important;
}

.tp-about-feature-info h2,
.tp-about-feature-info p {
    color: #ffffff !important;
}

/* ===============================
   About Page Styles
   =============================== */
.about-hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
    min-height: 875px;
    padding-top: 80px;
    display: flex;
    align-items: flex-start;
    transform: rotate(0deg);
    opacity: 1;
}

.about-hero-section .container {
    padding-left: 0;
    margin-left: 0;
}

.hero-content-wrapper {
    text-align: left;
    padding-left: 120px;
    padding-top: 40px;
}

.hero-title {
    color: white;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-item {
    color: white;
    font-size: 16px;
    font-weight: 400;
}

.breadcrumb-separator {
    color: white;
    font-size: 16px;
}

.about-section {
    padding: 80px 0;
}

.pilar-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pilar-card {
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    height: 100%;
    background: #ffffff;
}

.pilar-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.map-container {
    background: white;
    border-radius: 24px;
    padding: 40px;
}

.map-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    filter: invert(16%) sepia(96%) saturate(1650%) hue-rotate(210deg) brightness(90%) contrast(95%);
}

.map-marker {
    position: absolute;
    transform: translate(-50%, 0);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.map-marker:hover {
    transform: translate(-50%, 0) scale(1.2);
}

.marker-label {
    display: block;
    margin-top: 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e3a8a;
    white-space: nowrap;
    background: white;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-marker::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 50%;
    width: 2px;
    height: 30px;
    background: #2B397A;
    transform: translateX(-50%);
}

.komunitas-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: white;
    transition: all 0.3s ease;
}

.komunitas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.komunitas-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    margin: 20px;
    width: calc(100% - 40px);
}

.komunitas-card .card-body {
    padding: 0 30px 30px 30px;
}

/* ===============================
   About Page - Tentang Section
   =============================== */
.tentang-section {
    padding: 192px 0;
}

.tentang-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.tentang-title {
    font-size: 32px;
    color: #1e3a8a;
}

.tentang-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.tentang-left-img {
    width: 292px;
    height: 251px;
    border-radius: 24px;
    object-fit: cover;
    flex-shrink: 0;
}

.tentang-text {
    flex: 1;
}

.tentang-subtitle {
    font-size: 24px;
    color: #1e3a8a;
}

.tentang-right-img {
    width: 426px;
    height: 430px;
    border-radius: 24px;
    object-fit: cover;
    flex-shrink: 0;
}

/* ===============================
   Admin Dashboard Styles
   =============================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: var(--sidebar-bg);
    color: white;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-logo svg {
    width: 30px;
    height: 30px;
}

.sidebar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.sidebar-brand span {
    display: block;
    font-size: 11px;
    color: var(--primary-blue);
    font-weight: 500;
}

.sidebar-menu {
    padding: 20px 15px;
}

.menu-section {
    margin-bottom: 25px;
}

.menu-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding: 0 10px;
}

.menu-list {
    list-style: none;
}

.menu-item {
    margin-bottom: 4px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.menu-link:hover {
    background: var(--sidebar-hover);
    color: white;
}

.menu-link.active {
    background: var(--primary-blue);
    color: white;
}

.menu-link i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.menu-badge {
    margin-left: auto;
    background: var(--danger);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 30px;
}

.topbar {
    background: var(--card-bg);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.topbar-left h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.topbar-left p {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 4px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 10px 16px 10px 40px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    width: 280px;
    outline: none;
    transition: all 0.3s;
}

.search-box input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(77,184,232,0.1);
}

.search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.icon-btn:hover {
    background: var(--border-color);
}

.icon-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.user-profile:hover {
    background: var(--bg-light);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.user-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.user-info p {
    font-size: 12px;
    color: var(--text-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
}

.stat-card:nth-child(2)::before {
    background: var(--success);
}

.stat-card:nth-child(3)::before {
    background: var(--warning);
}

.stat-card:nth-child(4)::before {
    background: var(--info);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.stat-icon.blue {
    background: var(--primary-blue);
}

.stat-icon.green {
    background: var(--success);
}

.stat-icon.orange {
    background: var(--warning);
}

.stat-icon.info {
    background: var(--info);
}

.stat-change {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.stat-change.up {
    background: rgba(16,185,129,0.1);
    color: var(--success);
}

.stat-change.down {
    background: rgba(239,68,68,0.1);
    color: var(--danger);
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
}

.charts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.card-body {
    padding: 25px;
}

.chart-container {
    height: 280px;
    position: relative;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    padding: 20px 0;
    gap: 15px;
}

.chart-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.chart-bar {
    width: 100%;
    max-width: 60px;
    background: linear-gradient(180deg, var(--primary-blue), var(--dark-blue));
    border-radius: 8px 8px 0 0;
    transition: height 1s ease;
    position: relative;
}

.chart-bar:hover {
    opacity: 0.8;
}

.chart-bar::after {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.chart-label {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.donut-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.donut-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary-blue) 0% 35%,
        var(--success) 35% 60%,
        var(--warning) 60% 80%,
        var(--info) 80% 100%
    );
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-chart::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
}

.donut-center {
    position: relative;
    z-index: 1;
    text-align: center;
}

.donut-center h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.donut-center p {
    font-size: 12px;
    color: var(--text-gray);
}

.legend-list {
    width: 100%;
}

.legend-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.legend-item:last-child {
    border-bottom: none;
}

.legend-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
}

.legend-label {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

.legend-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--bg-light);
}

th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
    background: var(--bg-light);
}

.user-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-cell-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.user-cell-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.user-cell-info p {
    font-size: 12px;
    color: var(--text-gray);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-badge.success {
    background: rgba(16,185,129,0.1);
    color: var(--success);
}

.status-badge.warning {
    background: rgba(245,158,11,0.1);
    color: var(--warning);
}

.status-badge.danger {
    background: rgba(239,68,68,0.1);
    color: var(--danger);
}

.status-badge.info {
    background: rgba(59,130,246,0.1);
    color: var(--info);
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.action-btn.view {
    background: rgba(59,130,246,0.1);
    color: var(--info);
}

.action-btn.edit {
    background: rgba(245,158,11,0.1);
    color: var(--warning);
}

.action-btn.delete {
    background: rgba(239,68,68,0.1);
    color: var(--danger);
}

.action-btn:hover {
    transform: scale(1.1);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.activity-item:hover {
    background: var(--border-color);
}

.activity-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.activity-content {
    flex: 1;
}

.activity-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.activity-content p {
    font-size: 12px;
    color: var(--text-gray);
}

.activity-time {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.admin-page {
    display: none;
}

.admin-page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* ===============================
   Error 404 Page Styles
   =============================== */
.error-404-area {
    padding: 150px 0;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f9ff 100%);
}

.error-404-content {
    text-align: center;
}

.error-404-number {
    font-size: 180px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-blue), var(--navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

/* ===============================
   Responsive Styles
   =============================== */
/* Large Screens (1920px+) */
@media (min-width: 1920px) {
    .about-hand-col {
        margin-left: -100px !important;
    }
    .about-hand-img img {
        max-width: 100% !important;
    }
    .about-title {
        font-size: 96px !important;
    }
}

/* Desktop (1400px) */
@media (max-width: 1399px) {
    .tentang-left-img {
        width: 240px;
        height: auto;
    }
    .tentang-right-img {
        width: 340px;
        height: auto;
    }
}

/* Laptop (1280px) */
@media (max-width: 1280px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Laptops (1200px) */
@media (max-width: 1199px) {
    .tp-counter-item h3 {
        font-size: 50px !important;
    }
    .tp-counter-item i {
        font-size: 45px !important;
        width: 100px !important;
        height: 100px !important;
        line-height: 100px !important;
    }
    
    .tentang-section {
        padding: 120px 0;
    }
    .tentang-content {
        flex-wrap: wrap;
        gap: 30px;
    }
    .tentang-left-img,
    .tentang-right-img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    .pillar-card {
        padding: 30px 20px;
    }
    .pillar-icon svg {
        width: 70px;
        height: 70px;
    }
    .pillar-title {
        font-size: 22px;
    }
    .pillar-desc {
        font-size: 14px;
    }
}

/* Tablets (992px) */
@media (max-width: 991px) {
    .about-hand-col {
        display: none;
    }
    
    .tp-counter-wrap-box {
        flex-direction: column;
        gap: 40px;
    }
    .tp-counter-item h3 {
        font-size: 45px !important;
    }
    .tp-counter-item span.fw-500 {
        font-size: 16px !important;
    }
    .tp-counter-item i {
        font-size: 40px !important;
        width: 90px !important;
        height: 90px !important;
        line-height: 90px !important;
    }
    
    .about-hero-section {
        min-height: 400px;
    }
    
    .tentang-section {
        padding: 80px 0;
    }
    .tentang-title {
        font-size: 28px;
    }
    .tentang-subtitle {
        font-size: 22px;
    }
    .tentang-content {
        flex-direction: column;
        align-items: center;
    }
    .tentang-left-img,
    .tentang-right-img {
        max-width: 350px;
    }
    
    .region-item {
        flex-wrap: wrap;
        gap: 20px;
    }
    .region-item-number {
        font-size: 36px;
        min-width: 60px;
    }
    .region-item-title {
        font-size: 22px;
    }
    .region-item-desc {
        font-size: 16px;
    }
    .region-item-badge {
        padding: 8px 30px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    .komunitas-card .card-body {
        padding: 25px 20px;
    }
    .komunitas-card h4 {
        font-size: 22px !important;
    }
    
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.active {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .topbar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .topbar-right {
        width: 100%;
        justify-content: space-between;
    }
    .search-box input {
        width: 100%;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .error-404-number {
        font-size: 100px;
    }
    
    .tp-counter-item h3 {
        font-size: 40px !important;
    }
    .tp-counter-item span.fw-500 {
        font-size: 14px !important;
    }
    .tp-counter-item i {
        font-size: 35px !important;
        width: 80px !important;
        height: 80px !important;
        line-height: 80px !important;
    }
    
    .about-hero-section {
        min-height: 300px;
    }
    
    .tentang-section {
        padding: 60px 0;
    }
    .tentang-title {
        font-size: 24px;
    }
    .tentang-subtitle {
        font-size: 20px;
    }
    .tentang-left-img,
    .tentang-right-img {
        max-width: 100%;
    }
    
    .pillar-card {
        padding: 25px 15px;
    }
    .pillar-icon svg {
        width: 60px;
        height: 60px;
    }
    .pillar-title {
        font-size: 20px;
    }
    .pillar-desc {
        font-size: 13px;
    }
    
    .komunitas-card .card-body {
        padding: 20px 15px;
    }
    .komunitas-card h4 {
        font-size: 20px !important;
    }
    .komunitas-card p {
        font-size: 14px !important;
    }
    
    .tp-brand-item {
        height: 120px !important;
    }
    .tp-brand-item img {
        max-height: 100px !important;
        max-width: 160px !important;
    }
    .map-marker {
        transform: scale(0.8);
    }
}

/* Small Mobile (576px) */
@media (max-width: 575px) {
    .about-hero-section {
        min-height: 250px;
    }
    
    .tp-counter-item h3 {
        font-size: 35px !important;
    }
    .tp-counter-item span.fw-500 {
        font-size: 13px !important;
    }
    .tp-counter-item i {
        font-size: 30px !important;
        width: 70px !important;
        height: 70px !important;
        line-height: 70px !important;
    }
    
    .region-item-number {
        font-size: 28px;
        min-width: 50px;
    }
    .region-item-title {
        font-size: 20px;
    }
    .region-item-desc {
        font-size: 15px;
    }
    
    .tp-brand-item {
        height: 100px !important;
    }
    .tp-brand-item img {
        max-height: 80px !important;
        max-width: 130px !important;
    }
    .map-marker {
        transform: scale(0.6);
    }
}

/* ===============================
   Program Detail Page Styles
   =============================== */
/* .program-detail-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 875px;
    padding-top: 80px;
    display: flex;
    align-items: flex-start;
}

.program-detail-hero .hero-content-wrapper {
    padding-top: 0;
} */

/* Navbar putih untuk halaman program detail */
.program-detail-page .tp-header-area {
    background: white !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}

.program-detail-page .tp-header-md-main {
    padding: 15px 0 !important;
}

.program-detail-page .tp-main-menu ul li a {
    color: #2B397A !important;
    font-weight: 500 !important;
}

.program-detail-page .tp-header-logo img {
    filter: none !important;
}

.program-detail-page .tp-menu-bar span {
    background: #2B397A !important;
}

.program-intro-section {
    background: #ffffff;
    padding: 0;
}

@media (max-width: 1920px) {
    .program-intro-section {
        width: 100% !important;
    }
}

@media (max-width: 991px) {
    .program-intro-section {
        height: auto !important;
        min-height: 600px;
        padding: 60px 0;
    }
}

.program-intro-content {
    padding: 40px 0;
}

.program-logo-center {
    flex-shrink: 0;
}

.program-logo-center img {
    max-width: 150px;
    height: auto;
}

.program-intro-logo {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.program-intro-logo img {
    margin-top: 8px;
}

.program-intro-text {
    max-width: 700px;
}

.program-intro-text p {
    font-weight: 400;
    word-wrap: break-word;
}

.program-focus-section {
    padding: 100px 0;
}

.program-focus-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.program-focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.program-focus-icon {
    width: 80px;
    height: 80px;
    background: rgba(77, 184, 232, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.program-focus-icon i {
    font-size: 40px;
    color: #4DB8E8;
}

.stories-section {
    background: #ffffff;
}

.story-image img {
    transition: transform 0.4s ease;
}

.story-image:hover img {
    transform: scale(1.02);
}

.story-label-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-label-card-alt {
    background: #4DB8E8;
}

.story-label-card-alt h5 {
    color: white !important;
}

.cta-program-section {
    position: relative;
    overflow: hidden;
}

.cta-program-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(77, 184, 232, 0.1);
    border-radius: 50%;
}

.cta-program-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(43, 57, 122, 0.05);
    border-radius: 50%;
}

@media (max-width: 991px) {
    .program-intro-content {
        flex-direction: column;
        text-align: center;
    }
    
    .program-logo-center {
        margin-bottom: 30px;
        margin-right: 0 !important;
    }
    
    .program-focus-card {
        padding: 40px 30px;
    }
}

/* ===============================
   Fokus Program Section Styles
   =============================== */
.fokus-program-area {
    background: #ffffff;
}

.fokus-program-label {
    margin-bottom: 15px;
}

.fokus-program-label span {
    display: inline-block;
    padding: 10px 40px;
    border: 2px solid #4DB8E8;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #4DB8E8;
}

.fokus-program-title {
    margin-bottom: 60px;
}

.fokus-program-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 593px;
    width: 100%;
    max-width: 484px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transform: rotate(0deg);
    opacity: 1;
}

.fokus-program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.fokus-program-card-1 {
    background: #f0f9ff;
}

.fokus-program-card-2 {
    background: #fff8e7;
}

.fokus-program-card-3 {
    background: #f0fdf4;
}

.fokus-program-card-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.fokus-program-card-icon i {
    font-size: 44px;
    color: #2B397A;
}

/* ===============================
   Ajakan Bergabung Section Styles
   =============================== */
.ajakan-bergabung-section {
    background: #ffffff;
    width: 1920px;
    max-width: 100%;
    height: 920px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
    opacity: 1;
    margin: 0 auto;
    position: relative;
    top: 0;
}

.ajakan-bergabung-title {
    color: #2B397A;
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
}

.ajakan-bergabung-desc {
    font-size: 18px;
    color: #333333;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ajakan-bergabung-btn {
    display: inline-block;
    background: #4DB8E8;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ajakan-bergabung-btn:hover {
    background: #2B397A;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .ajakan-bergabung-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .ajakan-bergabung-title {
        font-size: 36px;
    }
    .ajakan-bergabung-section {
        padding: 60px 0;
    }
}

.fokus-program-card-content {
    margin-bottom: 30px;
}

.fokus-program-card-title {
    font-family: 'Familjen Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.fokus-program-card-desc {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.fokus-program-card-image {
    border-radius: 24px;
    overflow: hidden;
}

.fokus-program-card-image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    height: 300px;
    transition: transform 0.4s ease;
}

.fokus-program-card:hover .fokus-program-card-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .program-detail-hero {
        min-height: 400px;
    }
    
    .hero-content-wrapper {
        padding-left: 40px !important;
    }
    
    .hero-title {
        font-size: 42px !important;
    }
    
    .stories-grid .row.g-4 {
        flex-direction: column;
    }
    
    .fokus-program-card {
        padding: 30px;
    }
    
    .fokus-program-card-icon {
        width: 80px;
        height: 80px;
    }
    
    .fokus-program-card-icon i {
        font-size: 36px;
    }
    
    .fokus-program-card-title {
        font-size: 26px;
    }
    
    .fokus-program-card-desc {
        font-size: 16px;
    }
    
    .fokus-program-card-image img {
        height: 220px;
    }
}

/* ===============================
   Enhanced Mobile Menu Responsiveness
   =============================== */

/* Offcanvas Menu Improvements */
.tp-offcanvas {
    width: 100% !important;
    max-width: 400px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 480px) {
    .tp-offcanvas {
        max-width: 90%;
    }
}

/* Mobile Menu Navigation */
.tp-offcanvas-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-offcanvas-menu nav ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.tp-offcanvas-menu nav ul li:last-child {
    border-bottom: none;
}

.tp-offcanvas-menu nav ul li a {
    display: block;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark, #1E293B);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.tp-offcanvas-menu nav ul li a:hover,
.tp-offcanvas-menu nav ul li a:active,
.tp-offcanvas-menu nav ul li a:focus {
    color: var(--primary-blue, #4DB8E8);
    background-color: rgba(77, 184, 232, 0.05);
    padding-left: 35px;
}

.tp-offcanvas-menu nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 100%;
    background: var(--primary-blue, #4DB8E8);
    transition: width 0.3s ease;
}

.tp-offcanvas-menu nav ul li a:hover::before {
    width: 5px;
}

/* Mobile Menu Button (Burger) */
.tp-menu-bar {
    cursor: pointer;
    padding: 10px;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.tp-menu-bar span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark-blue, #2B3A67);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.tp-menu-bar:hover span {
    background: var(--primary-blue, #4DB8E8);
}

/* Offcanvas Contact Info */
.tp-offcanvas-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-offcanvas-contact ul li a {
    font-size: 16px;
    transition: all 0.3s ease;
}

.tp-offcanvas-contact ul li a:hover {
    color: var(--primary-blue, #4DB8E8) !important;
}

/* Offcanvas Social Links */
.tp-offcanvas-social ul {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tp-offcanvas-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(77, 184, 232, 0.1);
    transition: all 0.3s ease;
}

.tp-offcanvas-social ul li a:hover {
    background: var(--primary-blue, #4DB8E8);
    color: white !important;
    transform: translateY(-3px);
}

.tp-offcanvas-social ul li a i {
    font-size: 18px;
}

/* Responsive Adjustments for Different Screen Sizes */

/* Extra Small Phones (< 375px) */
@media (max-width: 374px) {
    .tp-offcanvas-menu nav ul li a {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .tp-offcanvas-title {
        font-size: 22px;
    }
    
    .tp-offcanvas-contact ul li a {
        font-size: 14px;
    }
    
    .tp-menu-bar span {
        width: 24px;
    }
}

/* Small Phones (375px - 575px) */
@media (min-width: 375px) and (max-width: 575px) {
    .tp-offcanvas-menu nav ul li a {
        font-size: 17px;
        padding: 16px 22px;
    }
    
    .tp-menu-bar span {
        width: 26px;
    }
}

/* Large Phones / Small Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .tp-offcanvas {
        max-width: 420px;
    }
}

/* ===============================
   Kolaborasi Page Styles
   =============================== */
/* Kolaborasi Slider Image Styling */
.tp-pd-2-slider-thumb {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tp-pd-2-slider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===============================
   Berita Page Styles
   =============================== */
/* Blog Card Image Styling */
.tp-blog-item .tp-blog-thumb {
    overflow: hidden;
    border-radius: 20px;
    display: block;
    height: 300px;
}

.tp-blog-item .tp-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.tp-blog-item .tp-blog-thumb:hover img {
    transform: scale(1.05);
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .tp-offcanvas {
        max-width: 450px;
    }
    
    .tp-offcanvas-menu nav ul li a {
        font-size: 18px;
        padding: 18px 25px;
    }
    
    .tp-offcanvas-menu nav ul li a {
        font-size: 19px;
        padding: 20px 30px;
    }
}

/* ===============================
   Coordinate Chart Styles
   =============================== */
.coordinate-chart {
    position: relative;
    height: 440px;
    width: 100%;
}

/* Garis vertikal di tengah */
.coord-v-line {
    position: absolute;
    left: 50%;
    top: 0px;
    bottom: 40px;
    width: 2px;
    background: #444;
    transform: translateX(-1px);
}

/* Setiap item (dot + text) */
.coord-item {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Titik/dot di garis */
.coord-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #111;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Posisi vertikal tiap level (disesuaikan dengan gambar) */
.coord-top    { top: 0px; }
.coord-left-1 { top: 150px; }
.coord-left-2 { top: 250px; }
.coord-right-1{ top: 250px; }
.coord-bottom { top: 400px; }

/* Teks di tengah (atas & bawah) */
.coord-text.coord-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    text-align: center;
    white-space: nowrap;
}
.coord-top .coord-text.coord-center    { top: -65px; }
.coord-bottom .coord-text.coord-center { top: 20px; }

/* Teks di kiri garis */
.coord-text.coord-left {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    text-align: right;
    white-space: nowrap;
}

/* Teks di kanan garis */
.coord-text.coord-right {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    text-align: left;
    white-space: nowrap;
}

.coord-role {
    font-size: 16px;
    color: #222;
    margin-bottom: 4px;
}
.coord-name {
    font-size: 16px;
    font-weight: 700;
    color: #14226b;
}

/* Responsive adjustments for coordinate chart */
@media (max-width: 991px) {
    .coordinate-chart {
        height: 400px;
    }
    
    .coord-top    { top: 0px; }
    .coord-left-1 { top: 140px; }
    .coord-left-2 { top: 230px; }
    .coord-right-1{ top: 230px; }
    .coord-bottom { top: 360px; }
    
    .coord-text.coord-center { width: 280px; }
    .coord-text.coord-left, .coord-text.coord-right { width: 220px; }
    
    .coord-role { font-size: 15px; }
    .coord-name { font-size: 15px; }
}

@media (max-width: 768px) {
    .coordinate-chart {
        height: 420px;
    }
    
    .coord-top    { top: 0px; }
    .coord-left-1 { top: 130px; }
    .coord-left-2 { top: 220px; }
    .coord-right-1{ top: 220px; }
    .coord-bottom { top: 380px; }
    
    .coord-text.coord-center { width: 240px; }
    .coord-text.coord-left, .coord-text.coord-right { width: 180px; }
    
    .coord-text.coord-left { right: 15px; }
    .coord-text.coord-right { left: 15px; }
}

/* Custom Team Card Styling */
.tp-team-it-item {
    width: 369px !important;
    height: 534px !important;
    border-radius: 24px !important;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tp-team-it-item .tp-team-it-thumb img {
    width: 100% !important;
    height: 350px !important;
    object-fit: cover;
}

.tp-team-it-item .tp-team-it-content {
    padding: 24px;
}

.tp-team-it-socials {
    display: none;
}


/* Ensure proper touch targets for mobile */
@media (max-width: 991px) {
    .tp-offcanvas-menu nav ul li a,
    .tp-offcanvas-contact ul li a,
    .tp-offcanvas-social ul li a,
    .tp-menu-bar {
        min-height: 44px; /* iOS recommended touch target */
        min-width: 44px;
    }
}

/* Body Overlay Enhancement */
.body-overlay {
    transition: all 0.3s ease;
}

.body-overlay.opened {
    backdrop-filter: blur(4px);
}

/* Smooth Scrolling for Offcanvas */
.tp-offcanvas {
    scroll-behavior: smooth;
}

/* Logo in Offcanvas */
.tp-offcanvas-logo a img {
    max-height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.tp-offcanvas-logo a:hover img {
    transform: scale(1.05);
}

/* Close Button Enhancement */
.tp-offcanvas-close-btn button {
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    padding: 10px;
}

.tp-offcanvas-close-btn button:hover {
    transform: rotate(90deg);
}

.tp-offcanvas-close-btn button svg {
    transition: all 0.3s ease;
}

/* Accessibility Improvements */
.tp-offcanvas-menu nav ul li a:focus,
.tp-menu-bar:focus,
.tp-offcanvas-close-btn button:focus {
    outline: 2px solid var(--primary-blue, #4DB8E8);
    outline-offset: 2px;
}

/* Active Page Indicator in Mobile Menu */
.tp-offcanvas-menu nav ul li.active a,
.tp-offcanvas-menu nav ul li a[aria-current="page"] {
    color: var(--primary-blue, #4DB8E8);
    background-color: rgba(77, 184, 232, 0.08);
    font-weight: 700;
}

/* Content Padding in Offcanvas */
.tp-offcanvas-content {
    padding: 25px 25px 30px;
}

.tp-offcanvas-menu {
    padding: 15px 0;
}

.tp-offcanvas-contact {
    padding: 25px 25px;
}

.tp-offcanvas-social {
    padding: 20px 25px 30px;
}

@media (max-width: 480px) {
    .tp-offcanvas-content,
    .tp-offcanvas-contact,
    .tp-offcanvas-social {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===============================
   Kolaborasi Page Styles
   =============================== */

/* Hero Section */
.kolaborasi-hero-section {
    position: relative;
}

.kolaborasi-hero-image img:hover {
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

/* Collaboration Cards */
.collaboration-slider {
    overflow: visible;
    padding: 20px 0 60px;
}

.collab-card {
    height: 100%;
}

.collab-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

.collab-card-image {
    position: relative;
    overflow: hidden;
}

.collab-card-image img {
    transition: transform 0.5s ease;
}

.collab-card:hover .collab-card-image img {
    transform: scale(1.1);
}

/* Partner Logos */
.partner-logo-item img:hover {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: scale(1.1);
}

/* Form Styles */
.collab-form input:focus,
.collab-form select:focus,
.collab-form textarea:focus {
    outline: none;
    border-color: #4DB8E8;
    box-shadow: 0 0 0 4px rgba(77, 184, 232, 0.1);
}

.collab-form input:hover,
.collab-form select:hover,
.collab-form textarea:hover {
    border-color: #4DB8E8;
}

/* Swiper Pagination */
.collaboration-slider .swiper-pagination {
    position: relative;
    bottom: 0;
}

.collaboration-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #E8F4FD;
    opacity: 1;
    transition: all 0.3s ease;
}

.collaboration-slider .swiper-pagination-bullet-active {
    background: #4DB8E8;
    width: 30px;
    border-radius: 6px;
}

/* Scroll to section smooth */
.scroll-to-section {
    cursor: pointer;
}

/* Responsive Styles for Kolaborasi Page */
@media (max-width: 991px) {
    .kolaborasi-hero-section {
        padding: 80px 0 60px !important;
    }
    
    .kolaborasi-hero-content h1 {
        font-size: 42px !important;
    }
    
    .partner-collab-section h2 {
        font-size: 36px !important;
    }
    
    .collab-form-wrapper {
        padding: 40px 30px !important;
    }
    
    .collab-contact-section h2 {
        font-size: 32px !important;
    }
    
    .collab-cta-section {
        padding: 80px 0 !important;
    }
    
    .collab-cta-section h2 {
        font-size: 36px !important;
    }
}

@media (max-width: 768px) {
    .kolaborasi-hero-content h1 {
        font-size: 36px !important;
    }
    
    .partner-logos-wrapper {
        gap: 40px !important;
    }
    
    .partner-logo-item img {
        height: 45px !important;
    }
    
    .collab-card-image {
        height: 250px !important;
    }
    
    .collab-card-body {
        padding: 25px !important;
    }
    
    .collab-card-body h4 {
        font-size: 20px !important;
    }
    
    .collab-form-wrapper {
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }
    
    .collab-contact-section h2 {
        font-size: 28px !important;
    }
    
    .collab-cta-section h2 {
        font-size: 28px !important;
    }
}

/* ===============================
   Struktur Organisasi Page Styles
   =============================== */
.struktur-diagram {
    padding: 40px 0;
}
.diagram-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f4fd 100%);
    border: 2px solid rgba(77,184,232,0.2);
    border-radius: 20px;
    padding: 30px 40px;
    margin-bottom: 25px;
    text-align: center;
    transition: all 0.4s ease;
}
.diagram-box:hover {
    box-shadow: 0 10px 40px rgba(43,57,122,0.1);
    transform: translateY(-3px);
}
.diagram-line {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, #4DB8E8 0%, #2B397A 100%);
    margin: 0 auto;
}
.tp-team-card {
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}
.tp-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.tp-team-card .team-img {
    padding: 20px;
}
.tp-team-card .team-img img {
    border-radius: 16px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.tp-team-card h4 {
    color: #2B397A;
    font-family: 'Familjen Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}
.tp-team-card p {
    color: #4DB8E8;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

/* Responsive for Struktur Organisasi Page */
@media (max-width: 991px) {
    .diagram-box {
        padding: 20px 25px;
    }
    .tp-team-card .team-img img {
        height: 250px;
    }
}
@media (max-width: 768px) {
    .diagram-box {
        padding: 15px 20px;
    }
    .tp-team-card .team-img img {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .kolaborasi-hero-content h1 {
        font-size: 32px !important;
    }
    
    .partner-logos-wrapper {
        gap: 30px !important;
    }
    
    .partner-logo-item img {
        height: 40px !important;
    }
    
    .collab-card-image {
        height: 200px !important;
    }
    
    .collab-card-body {
        padding: 20px !important;
    }
    
    .collab-card-body h4 {
        font-size: 18px !important;
    }
    
    .collab-form-wrapper {
        padding: 25px 15px !important;
    }
    
    .collab-contact-section {
        padding: 60px 0 !important;
    }
    
    .collab-contact-section h2 {
        font-size: 24px !important;
    }
    
    .collab-cta-section {
        padding: 60px 0 !important;
    }
    
    .collab-cta-section h2 {
        font-size: 24px !important;
    }
}

/* ===============================
   Team/Berita Section Override
   =============================== */
/* Override hijau ke biru di Team Area */
.tp-team-area {
    background: #ffffff !important;
}

.tp-team-it-item:hover {
    transform: translateY(-10px);
}

/* Override Green Gradient Hover Effect - Change to Blue */
.tp-team-it-thumb::before {
    background: linear-gradient(180deg, rgba(77, 184, 232, 0) 55.57%, #4DB8E8 100%) !important;
}

.tp-team-it-item:hover .tp-team-it-thumb::before {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Team Socials Button - Override Green to Blue */
.tp-team-it-socials-trigger .tp-team-it-socials-share {
    background: #4DB8E8 !important;
    border-color: #4DB8E8 !important;
}

.tp-team-it-socials-trigger:hover .tp-team-it-socials-share {
    background: #2B397A !important;
    border-color: #2B397A !important;
}

/* Team Social Icons */
.tp-team-it-socials-icon li a {
    background: rgba(77, 184, 232, 0.1) !important;
    color: #4DB8E8 !important;
    transition: all 0.3s ease;
}

.tp-team-it-socials-icon li a:hover {
    background: #4DB8E8 !important;
    color: white !important;
    transform: translateY(-3px);
}

/* ===============================
   Struktur Organisasi Page Styles
   =============================== */
.struktur-diagram {
    padding: 40px 0;
}
.diagram-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f4fd 100%);
    border: 2px solid rgba(77,184,232,0.2);
    border-radius: 20px;
    padding: 30px 40px;
    margin-bottom: 25px;
    text-align: center;
    transition: all 0.4s ease;
}
.diagram-box:hover {
    box-shadow: 0 10px 40px rgba(43,57,122,0.1);
    transform: translateY(-3px);
}
.diagram-line {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, #4DB8E8 0%, #2B397A 100%);
    margin: 0 auto;
}
.tp-team-card {
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}
.tp-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.tp-team-card .team-img {
    padding: 20px;
}
.tp-team-card .team-img img {
    border-radius: 16px;
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.tp-team-card h4 {
    color: #2B397A;
    font-family: 'Familjen Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}
.tp-team-card p {
    color: #4DB8E8;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

/* Responsive for Struktur Organisasi Page */
@media (max-width: 991px) {
    .diagram-box {
        padding: 20px 25px;
    }
    .tp-team-card .team-img img {
        height: 250px;
    }
}
@media (max-width: 768px) {
    .diagram-box {
        padding: 15px 20px;
    }
    .tp-team-card .team-img img {
        height: 220px;
    }
}

/* Override any green backgrounds in team section */
.tp-team-area [style*="background: #00dd80"],
.tp-team-area [style*="background-color: #00dd80"],
.tp-team-area [style*="background: #b4e717"],
.tp-team-area [style*="background-color: #b4e717"],
.tp-team-area .tp-bg-common-green,
.tp-team-area .tp-bg-common-green-2,
.tp-team-area .tp-bg-common-green-3 {
    background: #4DB8E8 !important;
    background-color: #4DB8E8 !important;
}

/* Override any green text colors in team section */
.tp-team-area [style*="color: #00dd80"],
.tp-team-area [style*="color: #b4e717"],
.tp-team-area .tp-text-common-green,
.tp-team-area .tp-text-common-green-2 {
    color: #4DB8E8 !important;
}

/* Section subtitle color override */
.tp-section-it-subtitle {
    color: #2B397A !important;
}

/* ===============================
   Responsive Fixes for All Devices
   =============================== */

/* 4K and Large Screens (2560px+) */
@media (min-width: 2560px) {
    .container-fluid {
        max-width: 2400px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 100px !important;
    }
}

/* Komunitas Page - Responsive Images */
.tp-portfolio-details-2-thumb {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
}

@media (max-width: 1399px) {
    .tp-portfolio-details-2-thumb[style*="width: 484px"] {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 484 / 459;
    }
    
    .tp-portfolio-details-2-thumb[style*="width: 923px"] {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 923 / 725;
    }
    
    .ml-70 {
        margin-left: 0 !important;
    }
}

/* Program Page - Responsive Section */
.program-intro-section {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 500px !important;
    height: auto !important;
    padding: 80px 0 !important;
}

@media (max-width: 991px) {
    .program-intro-section {
        min-height: 400px !important;
        padding: 60px 0 !important;
    }
    
    .program-intro-section .container {
        max-width: 100% !important;
        padding: 0 15px !important;
    }
}

@media (max-width: 768px) {
    .program-intro-section {
        min-height: 300px !important;
        padding: 40px 0 !important;
    }
    
    /* Fix for large font sizes on mobile */
    .fs-72 {
        font-size: 36px !important;
    }
    
    .fs-xl-60 {
        font-size: 32px !important;
    }
    
    .fs-60 {
        font-size: 32px !important;
    }
    
    .fs-50 {
        font-size: 28px !important;
    }
}

@media (max-width: 575px) {
    .program-intro-section {
        padding: 30px 0 !important;
    }
    
    .fs-48 {
        font-size: 28px !important;
    }
    
    .fs-42 {
        font-size: 26px !important;
    }
    
    .fs-35 {
        font-size: 24px !important;
    }
    
    .fs-32 {
        font-size: 22px !important;
    }
    
    .fs-28 {
        font-size: 20px !important;
    }
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Fix overflow on mobile */
@media (max-width: 767px) {
    body {
        overflow-x: hidden !important;
    }
    
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .row {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
}

/* Tablet specific fixes */
@media (min-width: 768px) and (max-width: 1199px) {
    .tp-portfolio-details-2-thumb[style*="width"] {
        width: 100% !important;
        height: auto !important;
    }
    
    .hero-title {
        font-size: 48px !important;
    }
    
    .fs-72 {
        font-size: 48px !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    a, button, .tp-menu-bar {
        min-height: 44px;
        min-width: 44px;
        padding: 12px;
    }
    
    /* Remove hover effects on touch devices */
    .tp-blog-item .tp-blog-thumb:hover img {
        transform: none;
    }
}

/* Print styles */
@media print {
    .tp-header-area,
    .tp-footer-area,
    .whatsapp-float,
    .scrollToTop {
        display: none !important;
    }
}

/* ===============================
   Homepage (Index.html) Responsive Fixes
   =============================== */

/* Hero Section Mobile Fixes */
.tp-hero-md-title {
    line-height: 1.1 !important;
}

@media (max-width: 991px) {
    /* Hero Section */
    .tp-hero-area.tp-hero-md-spacing {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }
    
    .tp-hero-md-content {
        text-align: center;
    }
    
    .tp-hero-md-title {
        font-size: 40px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    .tp-hero-md-para {
        font-size: 18px !important;
        margin-bottom: 30px !important;
    }
    
    .tp-hero-md-btn {
        justify-content: center !important;
    }
    
    /* Hero Panel Image */
    .tp-hero-md-col-custom {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .tp-hero-md-panel-thumb img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .tp-hero-md-panel-content {
        padding: 20px !important;
    }
    
    .tp-hero-md-panel-title {
        font-size: 24px !important;
    }
    
    /* Logo Partners */
    .tp-brand-item {
        height: 120px !important;
        padding: 10px !important;
    }
    
    .tp-brand-item img {
        max-height: 80px !important;
        max-width: 150px !important;
    }
}

@media (max-width: 767px) {
    /* Hero Section Mobile */
    .tp-hero-area.tp-hero-md-spacing {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }
    
    .tp-hero-md-content span:first-child {
        font-size: 14px !important;
    }
    
    .tp-hero-md-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }
    
    .tp-hero-md-para {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
    }
    
    .tp-btn-md {
        padding: 15px 25px !important;
        font-size: 14px !important;
    }
    
    /* Hero Panel */
    .tp-hero-md-panel-title {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }
    
    .tp-hero-md-panel-meta .count {
        font-size: 24px !important;
    }
    
    .tp-hero-md-panel-meta .doctor {
        font-size: 14px !important;
    }
    
    /* Logo Partners Mobile */
    .tp-brand-item {
        height: 100px !important;
        padding: 10px !important;
    }
    
    .tp-brand-item img {
        max-height: 60px !important;
        max-width: 120px !important;
    }
    
    .tp-brand-area {
        padding: 30px 0 !important;
    }
    
    /* Container Padding Mobile */
    .container-1824,
    .container-1524 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 575px) {
    /* Extra Small Mobile */
    .tp-hero-md-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    .tp-hero-md-para {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    
    .tp-hero-md-content span:first-child {
        font-size: 12px !important;
        margin-bottom: 15px !important;
    }
    
    .tp-btn-md {
        padding: 12px 20px !important;
        font-size: 13px !important;
    }
    
    .tp-hero-md-panel-title {
        font-size: 18px !important;
    }
    
    /* Logo Partners Extra Small */
    .tp-brand-item {
        height: 80px !important;
    }
    
    .tp-brand-item img {
        max-height: 50px !important;
        max-width: 100px !important;
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 767px) {
    body {
        overflow-x: hidden !important;
    }
    
    .tp-hero-area {
        overflow: hidden !important;
    }
    
    .container-fluid {
        overflow: hidden !important;
    }
    
    /* Fix any elements that might cause horizontal scroll */
    .row {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
    
    .col-xl-6,
    .col-lg-6,
    .col-md-6 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 767px) and (orientation: landscape) {
    .tp-hero-md-title {
        font-size: 24px !important;
    }
    
    .tp-hero-md-para {
        font-size: 13px !important;
    }
    
    .tp-hero-area.tp-hero-md-spacing {
        padding-top: 60px !important;
        padding-bottom: 30px !important;
    }
}

/* ===============================
   Homepage Additional Sections Responsive
   =============================== */

/* About Section */
@media (max-width: 991px) {
    .tp-about-area {
        padding-bottom: 80px !important;
    }
    
    .about-title {
        font-size: 36px !important;
        margin-bottom: 25px !important;
    }
    
    .about-description {
        font-size: 16px !important;
    }
    
    .about-btn {
        font-size: 14px !important;
        padding: 15px 30px !important;
    }
}

@media (max-width: 767px) {
    .tp-about-area {
        padding-bottom: 60px !important;
    }
    
    .about-title {
        font-size: 28px !important;
        margin-bottom: 20px !important;
        text-align: center;
    }
    
    .about-description {
        font-size: 15px !important;
        line-height: 1.6 !important;
        text-align: center;
    }
    
    .about-btn {
        display: block !important;
        text-align: center;
        margin: 0 auto;
    }
    
    .tp-about-img img {
        border-radius: 16px !important;
    }
}

/* Counter/Stats Section */
@media (max-width: 991px) {
    .tp-counter-area {
        padding-bottom: 80px !important;
    }
    
    .tp-counter-wrap-box {
        flex-wrap: wrap !important;
        gap: 20px !important;
    }
    
    .tp-counter-item {
        flex: 0 0 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }
    
    .tp-counter-item h3 {
        font-size: 50px !important;
    }
    
    .tp-counter-item span {
        font-size: 16px !important;
    }
    
    .tp-counter-item i {
        font-size: 32px !important;
    }
}

@media (max-width: 575px) {
    .tp-counter-area {
        padding-bottom: 60px !important;
    }
    
    .tp-counter-item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }
    
    .tp-counter-item h3 {
        font-size: 40px !important;
    }
    
    .tp-counter-item span {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
    
    .tp-counter-item i {
        font-size: 28px !important;
    }
}

/* Indonesia Sehat Section (Accordion) */
@media (max-width: 991px) {
    .tp-indonesia-sehat-area {
        padding-top: 80px !important;
        padding-bottom: 60px !important;
    }
    
    .accordion-button {
        font-size: 20px !important;
        padding: 20px 0 !important;
    }
    
    .accordion-button i {
        font-size: 22px !important;
        margin-right: 15px !important;
    }
    
    .accordion-body p {
        font-size: 16px !important;
    }
}

@media (max-width: 767px) {
    .tp-indonesia-sehat-area {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }
    
    .tp-sehat-thumb img {
        border-radius: 16px !important;
    }
    
    .accordion-button {
        font-size: 18px !important;
        padding: 18px 0 !important;
    }
    
    .accordion-button i {
        font-size: 20px !important;
        margin-right: 10px !important;
    }
    
    .accordion-body {
        padding: 15px 0 20px 0 !important;
    }
    
    .accordion-body p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 575px) {
    .accordion-button {
        font-size: 16px !important;
        padding: 15px 0 !important;
    }
    
    .accordion-button i {
        font-size: 18px !important;
    }
    
    .accordion-body p {
        font-size: 14px !important;
    }
}

/* Video Area */
@media (max-width: 991px) {
    .tp-video-area {
        min-height: 400px !important;
    }
    
    .tp-video-md-btn {
        width: 80px !important;
        height: 80px !important;
    }
    
    .tp-video-md-btn svg {
        width: 28px !important;
        height: 32px !important;
    }
}

@media (max-width: 767px) {
    .tp-video-area {
        min-height: 300px !important;
    }
    
    .tp-video-md-btn {
        width: 60px !important;
        height: 60px !important;
    }
    
    .tp-video-md-btn svg {
        width: 22px !important;
        height: 26px !important;
    }
}

/* Reports Section */
@media (max-width: 991px) {
    .tp-reports-area {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    
    .tp-blog-md-item {
        padding: 30px !important;
    }
    
    .tp-reports-text-wrap h2 {
        font-size: 36px !important;
        margin-bottom: 20px !important;
    }
    
    .tp-reports-text-wrap p {
        font-size: 18px !important;
        margin-bottom: 30px !important;
    }
    
    .tp-reports-text-wrap span {
        font-size: 16px !important;
    }
}

@media (max-width: 767px) {
    .tp-reports-area {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .tp-blog-md-item {
        padding: 20px !important;
    }
    
    .tp-reports-text-wrap {
        text-align: center;
    }
    
    .tp-reports-text-wrap span {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
    
    .tp-reports-text-wrap h2 {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }
    
    .tp-reports-text-wrap p {
        font-size: 16px !important;
        margin-bottom: 25px !important;
    }
    
    .tp-reports-img-wrap img {
        border-radius: 16px !important;
    }
    
    .tp-reports-text-wrap .tp-btn-md {
        display: block !important;
        text-align: center;
        margin: 0 auto;
        max-width: 200px;
    }
}

@media (max-width: 575px) {
    .tp-reports-text-wrap h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    .tp-reports-text-wrap p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    .tp-reports-text-wrap .tp-btn-md {
        font-size: 14px !important;
        padding: 15px 35px !important;
    }
}

/* Blog Section */
@media (max-width: 991px) {
    .tp-blog-area {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    
    .tp-section-md-title {
        font-size: 42px !important;
    }
    
    .tp-section-md-subtitle {
        font-size: 14px !important;
    }
    
    .tp-blog-md-btn {
        text-align: center !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 767px) {
    .tp-blog-area {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .tp-section-md-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
        text-align: center;
    }
    
    .tp-section-md-subtitle {
        font-size: 13px !important;
        text-align: center;
    }
    
    .tp-blog-md-btn {
        text-align: center !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 575px) {
    .tp-section-md-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }
}

/* General Mobile Typography Fixes */
@media (max-width: 767px) {
    .fs-92 { font-size: 32px !important; }
    .fs-82 { font-size: 30px !important; }
    .fs-72 { font-size: 28px !important; }
    .fs-62 { font-size: 26px !important; }
    .fs-52 { font-size: 24px !important; }
    .fs-42 { font-size: 22px !important; }
    .fs-32 { font-size: 20px !important; }
    .fs-26 { font-size: 18px !important; }
    .fs-24 { font-size: 16px !important; }
    .fs-22 { font-size: 15px !important; }
    
    /* Spacing Adjustments */
    .mb-40 { margin-bottom: 25px !important; }
    .mb-45 { margin-bottom: 30px !important; }
    .mb-50 { margin-bottom: 30px !important; }
    .mb-60 { margin-bottom: 35px !important; }
    
    .pb-130 { padding-bottom: 60px !important; }
    .pb-140 { padding-bottom: 60px !important; }
    .pb-150 { padding-bottom: 60px !important; }
    .pb-160 { padding-bottom: 60px !important; }
    
    .pt-130 { padding-top: 60px !important; }
    .pt-140 { padding-top: 60px !important; }
    .pt-150 { padding-top: 60px !important; }
    .pt-155 { padding-top: 60px !important; }
}

@media (max-width: 575px) {
    .fs-92 { font-size: 28px !important; }
    .fs-82 { font-size: 26px !important; }
    .fs-72 { font-size: 24px !important; }
    .fs-62 { font-size: 22px !important; }
    .fs-52 { font-size: 20px !important; }
}

/* ===============================
   Program Page Responsive Fixes
   =============================== */

/* Program Intro Section */
.program-intro-section {
    width: 100% !important;
    max-width: 100% !important;
    padding: 80px 0 !important;
    min-height: 500px !important;
    height: auto !important;
}

.program-intro-logo img {
    max-width: 100% !important;
    height: auto !important;
}

/* Fokus Program Cards */
.fokus-program-area {
    padding: 80px 0 !important;
}

.fokus-program-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.fokus-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.fokus-program-card-icon {
    font-size: 40px;
    color: #2B397A;
    margin-bottom: 20px;
}

.fokus-program-card-content {
    padding: 30px;
}

.fokus-program-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #2B397A;
    margin-bottom: 15px;
}

.fokus-program-card-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.fokus-program-card-image {
    margin-top: 20px;
}

.fokus-program-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Ajakan Bergabung Section */
.ajakan-bergabung-section {
    background: #ffffff !important;
    padding: 80px 0 !important;
}

.ajakan-bergabung-title {
    font-size: 42px;
    color: #2B397A;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ajakan-bergabung-desc {
    font-size: 18px;
    color: #333333;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ajakan-bergabung-btn {
    display: inline-block;
    background: #4DB8E8;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ajakan-bergabung-btn:hover {
    background: #2B397A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .program-intro-section {
        padding: 60px 0 !important;
        min-height: 400px !important;
    }
    
    .program-intro-section h2 {
        font-size: 40px !important;
        text-align: center;
    }
    
    .program-intro-logo {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .program-intro-logo img {
        max-width: 250px !important;
    }
    
    .program-intro-text {
        text-align: center;
    }
    
    .program-intro-text p {
        font-size: 16px !important;
    }
    
    /* Fokus Program */
    .fokus-program-area {
        padding: 60px 0 !important;
    }
    
    .fokus-program-title {
        font-size: 36px !important;
    }
    
    .fokus-program-card-title {
        font-size: 22px !important;
    }
    
    .fokus-program-card-desc {
        font-size: 15px !important;
    }
    
    /* Ajakan Bergabung */
    .ajakan-bergabung-section {
        padding: 60px 0 !important;
    }
    
    .ajakan-bergabung-title {
        font-size: 32px !important;
    }
    
    .ajakan-bergabung-desc {
        font-size: 16px !important;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .program-intro-section {
        padding: 40px 0 !important;
        min-height: 300px !important;
    }
    
    .program-intro-section h2 {
        font-size: 32px !important;
        text-align: center;
        margin-bottom: 25px !important;
    }
    
    .program-intro-logo {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .program-intro-logo img {
        max-width: 200px !important;
    }
    
    .program-intro-text {
        text-align: center;
    }
    
    .program-intro-text p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }
    
    /* Fokus Program Mobile */
    .fokus-program-area {
        padding: 50px 0 !important;
    }
    
    .fokus-program-label span {
        font-size: 14px !important;
    }
    
    .fokus-program-title {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }
    
    .fokus-program-card {
        margin-bottom: 20px;
    }
    
    .fokus-program-card-icon {
        font-size: 32px !important;
    }
    
    .fokus-program-card-content {
        padding: 25px !important;
    }
    
    .fokus-program-card-title {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }
    
    .fokus-program-card-desc {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    .fokus-program-card-image img {
        height: 200px !important;
    }
    
    /* Berita Section Mobile */
    .tp-team-area {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .tp-team-it-title-wrap h2 {
        font-size: 28px !important;
        text-align: center;
    }
    
    .tp-team-it-title-wrap p {
        font-size: 15px !important;
        text-align: center;
    }
    
    .tp-team-it-title-wrap .tp-btn-cst {
        display: block;
        text-align: center;
        margin: 0 auto 30px;
        max-width: 200px;
    }
    
    .ml-65 {
        margin-left: 0 !important;
    }
    
    .tp-team-it-item {
        margin-bottom: 30px !important;
    }
    
    .tp-team-it-item.mt-60 {
        margin-top: 0 !important;
    }
    
    /* Ajakan Bergabung Mobile */
    .ajakan-bergabung-section {
        padding: 50px 15px !important;
    }
    
    .ajakan-bergabung-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .ajakan-bergabung-desc {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
        padding: 0 15px;
    }
    
    .ajakan-bergabung-btn {
        font-size: 14px !important;
        padding: 15px 35px !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 575px) {
    .program-intro-section h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    .program-intro-logo img {
        max-width: 180px !important;
    }
    
    .program-intro-text p {
        font-size: 14px !important;
    }
    
    .fokus-program-title {
        font-size: 24px !important;
    }
    
    .fokus-program-card-title {
        font-size: 18px !important;
    }
    
    .fokus-program-card-desc {
        font-size: 13px !important;
    }
    
    .ajakan-bergabung-title {
        font-size: 22px !important;
    }
    
    .ajakan-bergabung-desc {
        font-size: 14px !important;
    }
    
    .ajakan-bergabung-btn {
        font-size: 13px !important;
        padding: 12px 30px !important;
    }
}

/* Container Fixes for Program Page */
@media (max-width: 767px) {
    .program-intro-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .fokus-program-area .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Prevent Horizontal Scroll */
@media (max-width: 767px) {
    .program-intro-section {
        overflow: hidden !important;
    }
}
