/*=================Scss Indexing=============
1.header
2.footer
3.home - slider
4.home - statistic
5.home - testimonials
6.home - blog
7.tentang - awards -
8.tentang - certifications
9.tentang - milestones
10.tentang visi-misi
11.service - show-package
12.service - show-prosedure
13.service - show
14.doctor - show
15.doctor - index
16.article - show-blog
17.article - show
18.article - index
19.gallery - index
20.gallery - fasilitas
*/

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
/* ====== Heading Base ====== */
h2, h3, h4,
.main-title, .subtitle {
  font-family: "Inter", "Poppins", "Helvetica Neue", Arial, sans-serif; /* ganti ke Inter agar lebih modern dan tajam */
  line-height: 1.35; /* sedikit lebih lega biar enak dibaca di mobile */
  color: #1e293b;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em; /* tipografi lebih rapi */
}

/* ====== H2 - Main Section Title ====== */
h2, .main-title {
  font-size: 2.25rem; /* default desktop 36px */
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: "Inter", "Poppins", "Helvetica Neue", Arial, sans-serif;
}

/* ====== H3 - Sub Title ====== */
h3, .subtitle {
  font-size: 1.5rem; /* default desktop 24px */
  color: #334155;
  margin-bottom: 0.75rem;
  font-family: "Inter", "Poppins", "Helvetica Neue", Arial, sans-serif;
}

/* ====== H4 - Smaller Section Title ====== */
h4 {
  font-size: 1.25rem; /* 20px */
  color: #475569;
  font-family: "Inter", "Poppins", "Helvetica Neue", Arial, sans-serif;
}

/* ====== Decorative underline ====== */
.main-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 0.5rem auto 1rem auto;
  border-radius: 2px;
}

/* ====== Responsive Breakpoints ====== */

/* Mobile Kecil (≤480px) */
@media (max-width: 480px) {
  h2, .main-title {
    font-size: 1.5rem; /* 24px */
  }
  h3, .subtitle {
    font-size: 1.125rem; /* 18px */
  }
  h4 {
    font-size: 1rem; /* 16px */
  }
}

/* Mobile Sedang (≤640px) */
@media (max-width: 640px) {
  h2, .main-title {
    font-size: 1.75rem; /* 28px */
  }
  h3, .subtitle {
    font-size: 1.25rem; /* 20px */
  }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  h2, .main-title {
    font-size: 2rem; /* 32px */
  }
  h3, .subtitle {
    font-size: 1.375rem; /* 22px */
  }
}

/* Laptop kecil (≤1024px) */
@media (max-width: 1024px) {
  h2, .main-title {
    font-size: 2.125rem;
  }
  h3, .subtitle {
    font-size: 1.4rem;
  }
}


/* header */
#anywhere-home {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 20, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 9998;
}
#anywhere-home.bgshow {
    opacity: 1;
    visibility: visible;
}

body.drawer-open {
    overflow: hidden;
}

.side-bar {
    position: fixed;
    top: 0;
    right: -420px;
    height: 100dvh;
    width: 92vw;
    max-width: 380px;
    background: #fff;
    z-index: 9999;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.18);
    transition: right 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.side-bar.show {
    right: 0;
}

.side-bar .inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(env(safe-area-inset-top, 0) + 14px);
}
.close-icon-menu {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0) + 10px);
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    background: #f3f5f7;
    border-radius: 10px;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.close-icon-menu i {
    font-size: 18px;
}
.close-icon-menu:focus {
    outline: 2px solid var(--primary-color, #4f46e5);
    outline-offset: 2px;
}

.mobile-menu {
    padding: 16px 18px 22px;
}
#mobile-menu-active {
    margin: 0;
    padding: 0;
}
#mobile-menu-active > li {
    list-style: none;
}
#mobile-menu-active > li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
#mobile-menu-active a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 4px;
    font-size: 16px;
    line-height: 1.3;
    color: #1f1f25;
    text-decoration: none;
}
#mobile-menu-active li.active > a {
    color: var(--primary-color, #0ea5e9);
    font-weight: 600;
}

#mobile-menu-active a:hover {
    opacity: 0.9;
}

#mobile-menu-active a.has-arrow {
    position: relative;
}
#mobile-menu-active a.has-arrow::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    translate: 0 -50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #9aa1a8;
    border-bottom: 2px solid #9aa1a8;
    rotate: -45deg;
    transition: transform 0.2s ease;
}
#mobile-menu-active .mm-active > a.has-arrow::after {
    rotate: 135deg;
}

#mobile-menu-active ul {
    padding-left: 12px;
    margin: 4px 0 10px;
    border-left: 2px solid rgba(0, 0, 0, 0.06);
}
#mobile-menu-active ul li {
    list-style: none;
}
#mobile-menu-active ul a {
    padding: 10px 4px;
    font-size: 15px;
    color: #4b5563;
}

.side-bar .inner {
    overflow-y: auto;
}
.side-bar .inner::-webkit-scrollbar {
    width: 10px;
}
.side-bar .inner::-webkit-scrollbar-thumb {
    background: #e7e9ec;
    border-radius: 8px;
}

#menu-btn {
    cursor: pointer;
}
#menu-btn:focus {
    outline: 2px solid var(--primary-color, #0ea5e9);
    outline-offset: 3px;
}

.side-bar .close-icon-menu:focus-visible {
    outline-color: var(--primary-color, #0ea5e9);
}

/* footer */

#footer .rts-btn.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

#footer .rts-btn.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

#footer .single-wized .body a:hover {
    color: var(--accent-color) !important;
    transition: color 0.3s ease;
}

#footer .single-wized .title {
    color: var(--primary-color);
}

#footer .nav-bottom li {
    margin-bottom: 8px;
}

#footer .nav-bottom li a {
    transition: all 0.3s ease;
}

#footer .nav-bottom li a:hover {
    padding-left: 5px;
}

/* home - slider  */

.rts-banner-area-two .banner-wrapper-bg {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
  }

  .banner-content-area {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
    padding-left:10rem;
    max-width: 700px;
  }

  .banner-title {
    margin: 0 0 .25rem 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .banner-desc {
    margin: 0;
    line-height: 1.6;
    white-space: normal;
    overflow-wrap: break-word;
  }

  /* Warna dinamis */
  .text-dark .banner-title,
  .text-dark .banner-desc {
    color: #000 !important;
  }

  .text-white .banner-title,
  .text-white .banner-desc {
    color: #fff !important;
    text-shadow: 0 2px 6px rgba(0,0,0,.3);
  }

  /* Responsif */
  @media (max-width: 992px) {
    .rts-banner-area-two .banner-wrapper-bg { min-height: 360px; }
    .banner-content-area { padding-left: 2rem; }
  }

  @media (max-width: 768px) {
    .rts-banner-area-two .banner-wrapper-bg { min-height: 300px; }
    .banner-title { font-size: 1.5rem; }
    .banner-desc { font-size: 1rem; }
  }

  @media (max-width: 576px) {
    .rts-banner-area-two .banner-wrapper-bg { min-height: 260px; }
    .banner-content-area { padding-left: 1.5rem; }
  }

  .ptb--80 { padding-top: 80px; padding-bottom: 80px; }
  .ptb_sm--60 { padding-top: 60px; padding-bottom: 60px; }

  @media (max-width: 768px) {
    .ptb_sm--60 { padding-top: 60px; padding-bottom: 60px; }
  }

/* home - statistic */
  :root {
    --bg-1: #eaf6ff;   /* very light blue */
    --bg-2: #b7d7ff;   /* light blue */
    --ink: #123a5a;    /* primary text (navy) */
    --ink-soft: #3e5a78; /* secondary text */
    --accent: #2d6cdf; /* accent for icons/hover */
    --card: rgba(255, 255, 255, 0.18);
    --card-hover: rgba(255, 255, 255, 0.28);
    --white-veil: rgba(255, 255, 255, 0.2);
  }

  .rts-statistics-area {
    background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
    position: relative;
    overflow: hidden;
  }

  .rts-statistics-area::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.18"/></svg>');
    opacity: 0.35;
  }

  .rts-statistics-area .title-wrapper-center * { color: var(--ink); }
  .rts-statistics-area .sub-title { color: var(--ink-soft); }

  .single-counter-box {
    background: var(--card);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(18, 58, 90, 0.08);
  }

  .single-counter-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.4s ease;
  }

  .single-counter-box:hover::before { opacity: 1; }

  .single-counter-box:hover {
    transform: translateY(-8px);
    background: var(--card-hover);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 44px rgba(18, 58, 90, 0.18);
  }

  .icon-wrapper {
    width: 80px; height: 80px; margin: 0 auto 20px;
    background: var(--white-veil);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.4s ease, background 0.4s ease;
  }

  .single-counter-box:hover .icon-wrapper {
    background: rgba(255,255,255,0.32);
    transform: scale(1.08) rotate(8deg);
  }

  .icon-wrapper i {
    font-size: 40px;
    color: var(--accent);
  }

  .counter-content { position: relative; z-index: 1; }

  .counter-number {
    font-size: 48px; font-weight: 800; line-height: 1;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .counter-label {
    font-size: 16px; font-weight: 500; margin: 0;
    color: var(--ink-soft);
  }

  @media (prefers-reduced-motion: reduce) {
    .single-counter-box,
    .icon-wrapper { transition: none; }
    .single-counter-box:hover { transform: none; }
  }

  @media (max-width: 767px) {
    .counter-number { font-size: 36px; }
    .icon-wrapper { width: 60px; height: 60px; }
    .icon-wrapper i { font-size: 30px; }
    .single-counter-box { padding: 30px 20px; }
  }

/* home - testimonials */

.rts-testimonials-area {
    background: #f8f9fa;
    position: relative;
}

.title-area-center .pre {
    color: #007bff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.title-area-center .title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.title-area-center .disc {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.single-testimonials-style {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.single-testimonials-style:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,123,255,0.15);
}

.quots {
    font-size: 60px;
    color: #007bff;
    opacity: 0.1;
    line-height: 1;
    margin-bottom: 20px;
}

.quots i {
    display: block;
}

.stars-area {
    display: flex;
    gap: 5px;
    font-size: 16px;
}

.stars-area i {
    color: #ffc107;
}

.single-testimonials-style .disc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    flex-grow: 1;
    font-style: italic;
}

.author-area {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.author-area .img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #007bff;
}

.author-area .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-area .info {
    flex-grow: 1;
}

.author-area .name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.author-area .designation,
.author-area .service-name {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 3px;
}

.author-area .service-name {
    color: #007bff;
    font-weight: 500;
}

.shape {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 80px;
    color: #007bff;
    opacity: 0.05;
    pointer-events: none;
}

.swiper-testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.swiper-testimonials .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
}

.swiper-testimonials .swiper-pagination-bullet-active {
    background: #007bff;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .title-area-center .title {
        font-size: 32px;
    }

    .single-testimonials-style {
        padding: 30px 25px;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .title-area-center .title {
        font-size: 28px;
    }

    .single-testimonials-style {
        padding: 25px 20px;
    }

    .author-area .img {
        width: 50px;
        height: 50px;
    }

    .quots {
        font-size: 40px;
    }
}

/* home - blog */


.blog-thumbnail-fixed {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 66.67%;
    overflow: hidden;
    border-radius: 10px;
}

.blog-thumbnail-fixed img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.rts-single-blog:hover .blog-thumbnail-fixed img {
    transform: scale(1.1);
}

.rts-single-blog .thumbnail.blog-thumbnail-fixed {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
}

@media (max-width: 991px) {
    .blog-thumbnail-fixed {
        padding-bottom: 65%;
    }
}

@media (max-width: 767px) {
    .blog-thumbnail-fixed {
        padding-bottom: 60%;
    }
}

/* tentang - awards */

.single-award-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.single-award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.award-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.award-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.award-meta {
    color: #666;
    font-size: 14px;
}

.award-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* tentang - certifications */

.single-cert-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.single-cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cert-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.cert-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.info-item i {
    color: var(--color-primary);
}

.cert-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.cert-status.active {
    background: #d4edda;
    color: #155724;
}

.cert-status.warning {
    background: #fff3cd;
    color: #856404;
}

.cert-status.expired {
    background: #f8d7da;
    color: #721c24;
}

/* tentang - milestones */

.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px;
    margin-bottom: 50px;
}

.timeline-item.left {
    padding-right: 40px;
    padding-left: 0;
    text-align: right;
}

.timeline-item.right {
    margin-left: 50%;
    padding-left: 40px;
    padding-right: 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px var(--color-primary);
}

.timeline-item.left::before {
    right: -10px;
}

.timeline-item.right::before {
    left: -10px;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-year {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.timeline-desc {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.timeline-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .timeline-wrapper::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px !important;
        padding-right: 0 !important;
        text-align: left !important;
        margin-left: 0 !important;
    }

    .timeline-item::before {
        left: 21px !important;
    }
}

/* tentang visi-misi */

.misi-number-badge {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.misi-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.misi-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nilai-box {
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-primary);
}

.nilai-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.filosofi-quote-box {
    border-top: 5px solid var(--color-primary);
}

.empty-state {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 60px 40px;
}

.empty-state .empty-icon {
    animation: float 3s ease-in-out infinite;
}

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

@media (max-width: 767px) {
    .misi-number-badge {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .filosofi-quote-box {
        padding: 30px 20px !important;
    }
}

/* service - index*/

.department-filter-horizontal {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.filter-label {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    font-size: 14px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    font-size: 14px;
}

.filter-btn i {
    font-size: 12px;
}

.filter-btn .count {
    background: #e5e5e5;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
}

.filter-btn:hover {
    border-color: var(--primary-color, #5956E9);
    color: var(--primary-color, #5956E9);
}

.filter-btn.active {
    background: var(--primary-color, #5956E9);
    border-color: var(--primary-color, #5956E9);
    color: white;
}


.filter-btn.active .count {
    background: rgba(255,255,255,0.3);
    color: white;
}

/* Service Card */
.service-card-style-one {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-style-one:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card-style-one .thumbnail {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-card-style-one .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-style-one:hover .thumbnail img {
    transform: scale(1.1);
}

.popular-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

.service-card-style-one .body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.department-badge {
    display: inline-block;
    padding: 5px 15px;
    background:#4682B4;
    color: white;
    border-radius: 20px;
    font-size: 11px;
    margin-bottom: 10px;
    font-weight: 500;
}

.type-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    margin-bottom: 10px;
    margin-left: 5px;
    font-weight: 500;
}

.package-badge {
    background: #E3F2FD;
    color: #1976D2;
}

.procedure-badge {
    background: #F3E5F5;
    color: #7B1FA2;
}

.service-card-style-one .title {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: #333;
    line-height: 1.4;
}

.service-card-style-one .disc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.service-meta {
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
}

.service-meta .duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
}

.price-wrapper {
    margin-top: 10px;
}

.price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color, #5956E9);
}

.price-normal {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.price-promo {
    font-size: 18px;
    font-weight: 700;
    color: #FF4444;
}

.service-card-style-one .rts-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Sidebar Category List */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-item:hover {
    background: white;
    border-color: var(--primary-color, #5956E9);
    transform: translateX(5px);
}

.category-item.active {
    background: var(--primary-color, #5956E9);
    border-color: var(--primary-color, #5956E9);
}

.category-item .icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color, #5956E9);
    flex-shrink: 0;
}

.category-item.active .icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.category-item .content {
    flex: 1;
}

.category-item h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.category-item.active h5 {
    color: white;
}

.category-item .count {
    font-size: 12px;
    color: #666;
}

.category-item.active .count {
    color: rgba(255,255,255,0.8);
}

.category-item .arrow {
    font-size: 16px;
    color: #999;
    transition: transform 0.3s ease;
}

.category-item:hover .arrow {
    transform: translateX(5px);
}

.category-item.active .arrow {
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .service-card-style-one .thumbnail {
        height: 200px;
    }

    .filter-buttons {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .department-filter-horizontal {
        padding: 15px;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
    }

    .category-item {
        padding: 15px;
    }

    .category-item .icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* service - show-package*/

.discount-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255,68,68,0.3);
}


.price-box {
    text-align: right;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    min-width: 200px;
}

.price-normal-large {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-promo-large {
    font-size: 28px;
    font-weight: 700;
    color: #FF4444;
}

.price-final-large {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color, #5956E9);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefit-item i {
    color: #28a745;
    font-size: 20px;
}

.benefit-item span {
    font-size: 14px;
    color: #333;
}

.package-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
}

.info-card i {
    font-size: 32px;
    color: var(--primary-color, #5956E9);
}

.info-card strong {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.info-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.quick-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    font-weight: 500;
    color: #666;
}

.info-row .value {
    font-weight: 600;
    color: #333;
    text-align: right;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

@media (max-width: 991px) {
    .price-box {
        margin-top: 20px;
        min-width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .package-info-grid {
        grid-template-columns: 1fr;
    }
}

/* service - show-procedure */


.procedure-steps {
    margin-top: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color, #5956E9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

/* service - show */

.doctor-schedule-wrapper {
    max-height: 500px;
    overflow-y: auto;
}

.schedule-day {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
}

.schedule-day:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 600;
    color: var(--primary-color, #5956E9);
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.schedule-item {
    background-color: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.doctor-info strong {
    font-size: 14px;
    color: #333;
}

.doctor-info small {
    font-size: 12px;
    margin-top: 2px;
}

.schedule-time,
.schedule-room {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.schedule-time i,
.schedule-room i {
    margin-right: 5px;
    color: var(--primary-color, #5956E9);
}

.no-schedule {
    padding: 30px 15px;
}


/* doctor - index */
.department-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.pill-item {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.pill-item:hover {
    border-color: var(--primary-color, #5956E9);
    color: var(--primary-color, #5956E9);
    transform: translateY(-2px);
}

.pill-item.active {
    background: var(--primary-color, #5956E9);
    border-color: var(--primary-color, #5956E9);
    color: white;
}

.pill-item .badge {
    background: #e5e5e5;
    color: #666;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
}

.pill-item.active .badge {
    background: rgba(255,255,255,0.3);
    color: white;
}

.quick-links-doctors {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-link-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--primary-color, #5956E9);
    color: var(--primary-color, #5956E9);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.quick-link-btn:hover {
    background: var(--primary-color, #5956E9);
    color: white;
}

.single-team-area-start {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.single-team-area-start:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.single-team-area-start .thumbnail {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.single-team-area-start .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-team-area-start:hover .thumbnail img {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .single-team-area-start .thumbnail {
        height: 350px; /* Tinggi lebih besar di mobile karena hanya 1 foto */
    }

    /* Sembunyikan arrows di mobile, tampilkan dots saja */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .swiper-pagination {
        position: relative;
        margin-top: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .single-team-area-start .thumbnail {
        height: 280px; /* Tablet: 2 foto */
    }
}

@media (min-width: 992px) {
    .single-team-area-start .thumbnail {
        height: 300px; /* Desktop: 3-4 foto */
    }
}

.specialty {
    color: var(--primary-color, #5956E9);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
}

.sub-specialty {
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
}

.department-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 15px;
    font-size: 11px;
    color: #666;
    margin: 10px 0;
}

.experience {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin: 10px 0;
}

.doctor-actions {
    margin-top: 15px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

@media (max-width: 767px) {
    .department-pills {
        flex-direction: column;
    }

    .pill-item {
        justify-content: center;
    }

    .quick-links-doctors {
        flex-direction: column;
    }

    .quick-link-btn {
        width: 100%;
        justify-content: center;
    }
}

/* doctor - show */
.featured-badge-large {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.large-team-details-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.large-team-details-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.bottom-doctor-details {
    margin-top: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.bottom-doctor-details .inner {
    padding: 25px;
}

.bottom-doctor-details .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid var(--primary-color, #5956E9);
    padding-bottom: 10px;
}

.single-shedule {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.single-shedule:last-child {
    border-bottom: none;
}

.single-shedule p {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.single-shedule span {
    color: var(--primary-color, #5956E9);
    font-size: 14px;
    text-align: right;
}

.single-shedule small {
    font-size: 11px;
    color: #666;
}

.doctor-contact-info {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.doctor-contact-info .inner {
    padding: 25px;
}

.doctor-contact-info .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.contact-item i {
    color: var(--primary-color, #5956E9);
    font-size: 18px;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color, #5956E9);
}

.contact-item span {
    color: #666;
    font-size: 14px;
}

.doctor-all-details-area {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.pre-title {
    color: var(--primary-color, #5956E9);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.name {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 15px;
    color: #333;
}

.department-info,
.specialty-info,
.experience-info {
    color: #666;
    margin: 8px 0;
    font-size: 15px;
}

.experience-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color, #5956E9);
    font-weight: 600;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color, #5956E9);
}

.doctor-bio p {
    color: #666;
    line-height: 1.8;
}

.single-details-content-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.single-details-content-info .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-details-content-info .title i {
    color: var(--primary-color, #5956E9);
}

.single-details-content-info .inner p {
    color: #666;
    margin-bottom: 8px;
    font-size: 14px;
}

.single-details-content-info .inner p:last-child {
    margin-bottom: 0;
}

.service-item-small {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-item-small i {
    color: #28a745;
    font-size: 18px;
}

.service-item-small span {
    color: #333;
    font-size: 14px;
}

@media (max-width: 991px) {
    .pl--40 {
        padding-left: 15px !important;
    }

    .name {
        font-size: 24px;
    }
}

/* article - index */
.search-box-articles {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    width: 100px;;
}

.category-filter-horizontal {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.filter-label {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    font-size: 14px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.filter-btn:hover {
    border-color: var(--primary-color, #5956E9);
    color: var(--primary-color, #5956E9);
}

.filter-btn.active {
    background: var(--primary-color, #5956E9);
    border-color: var(--primary-color, #5956E9);
    color: white;
}

.filter-btn .count {
    background: #e5e5e5;
    color: #666;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
}

.filter-btn.active .count {
    background: rgba(255,255,255,0.3);
    color: white;
}

.single-blog-list-area {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.single-blog-list-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.single-blog-list-area .thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.single-blog-list-area .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-blog-list-area:hover .thumbnail img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.inner-content-area {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tag-author-area {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.tag-author-area .single {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #666;
}

.tag-author-area .single i {
    color: var(--primary-color, #5956E9);
}

.inner-content-area .title {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inner-content-area .title:hover {
    color: var(--primary-color, #5956E9);
}

.excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #999;
}

.meta-item i {
    color: var(--primary-color, #5956E9);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.single-sidebar-wized {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.single-sidebar-wized .title-area {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color, #5956E9);
}

.single-sidebar-wized .title-area .title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

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

.content-type-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.content-type-item:hover {
    background: white;
    border-color: var(--primary-color, #5956E9);
    transform: translateX(5px);
}

.content-type-item.active {
    background: var(--primary-color, #5956E9);
    border-color: var(--primary-color, #5956E9);
}

.content-type-item .icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color, #5956E9);
    flex-shrink: 0;
}

.content-type-item.active .icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.content-type-item .content {
    flex: 1;
}

.content-type-item h6 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.content-type-item.active h6 {
    color: white;
}

.content-type-item .count {
    font-size: 12px;
    color: #666;
}

.content-type-item.active .count {
    color: rgba(255,255,255,0.8);
}

.content-type-item .arrow {
    font-size: 16px;
    color: #999;
}

.content-type-item.active .arrow {
    color: white;
}

.single-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-service:last-child {
    border-bottom: none;
}

.single-service:hover {
    background: #f8f9fa;
    padding-left: 20px;
}

.single-service p {
    margin: 0;
    color: #333;
    font-size: 14px;
}

.single-service.active {
    background: rgba(89, 86, 233, 0.1);
    color: var(--primary-color, #5956E9);
}

.single-service .right-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.count-badge {
    background: #e5e5e5;
    color: #666;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.single-service i {
    color: var(--primary-color, #5956E9);
}

.signle-post-short-area {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.signle-post-short-area:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.signle-post-short-area .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.signle-post-short-area .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signle-post-short-area .infor {
    flex: 1;
}

.signle-post-short-area .time {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.signle-post-short-area .title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

.signle-post-short-area a:hover .title {
    color: var(--primary-color, #5956E9);
}

.tag-wrapper-small {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.single-tag {
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.single-tag:hover {
    background: var(--primary-color, #5956E9);
    color: white;
}

.cta-sidebar-card {
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.cta-sidebar-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.cta-sidebar-card h5 {
    color: white;
    margin-bottom: 10px;
}

.cta-sidebar-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-size: 14px;
}

.cta-sidebar-card .rts-btn {
    background: white;
    color: var(--primary-color, #5956E9);
}

.cta-sidebar-card .rts-btn:hover {
    background: rgba(255,255,255,0.9);
}

@media (max-width: 991px) {
    .pl--40 {
        padding-left: 15px !important;
    }

    .filter-buttons {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .single-blog-list-area .thumbnail {
        height: 200px;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        justify-content: center;
    }
}

/* article - show */
.featured-article-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.thumbnail-main {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.thumbnail-main img {
    width: 100%;
    height: auto;
    display: block;
}

.tag-author-area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.tag-author-area .single {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.tag-author-area .single i {
    color: var(--primary-color, #5956E9);
    font-size: 16px;
}

.tag-author-area .single a {
    color: #666;
    text-decoration: none;
}

.tag-author-area .single a:hover {
    color: var(--primary-color, #5956E9);
}

.inner-content .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
    margin-bottom: 20px;
}

.article-excerpt {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid var(--primary-color, #5956E9);
    margin-bottom: 20px;
    border-radius: 5px;
}

.article-excerpt p {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-style: italic;
}

.article-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.stat-item i {
    color: var(--primary-color, #5956E9);
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.article-content ul,
.article-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.references-section {
    background: #fff8e1;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.references-content {
    font-size: 14px;
    color: #666;
}

.blog-author-area-main {
    display: flex;
    gap: 20px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.blog-author-area-main .thumbnail {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-author-area-main .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author-area-main .information {
    flex: 1;
}

.blog-author-area-main span {
    color: var(--primary-color, #5956E9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-author-area-main .title {
    font-size: 22px;
    margin: 10px 0;
}

.blog-author-area-main .disc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.view-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color, #5956E9);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-profile-btn:hover {
    background: #4745c7;
}

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

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.related-article-card .thumbnail {
    height: 150px;
    overflow: hidden;
}

.related-article-card .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article-card:hover .thumbnail img {
    transform: scale(1.1);
}

.related-article-card .content {
    padding: 20px;
}

.related-article-card .date {
    font-size: 12px;
    color: #999;
}

.related-article-card .title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-top: 8px;
    line-height: 1.4;
}

.related-article-card a:hover .title {
    color: var(--primary-color, #5956E9);
}

.comments-list {
    margin-top: 30px;
}

.single-comment {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.single-comment.reply {
    margin-left: 60px;
    margin-top: 20px;
}

.comment-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color, #5956E9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.comment-content {
    flex: 1;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.comment-date {
    font-size: 12px;
    color: #999;
}

.comment-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.comment-replies {
    margin-top: 20px;
}

.comment-form-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.comment-form-details .title {
    font-size: 24px;
    margin-bottom: 20px;
}

.input-half-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-form-details input,
.comment-form-details textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
}

.comment-form-details input:focus,
.comment-form-details textarea:focus {
    outline: none;
    border-color: var(--primary-color, #5956E9);
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 991px) {
    .inner-content .title {
        font-size: 24px;
    }

    .blog-author-area-main {
        flex-direction: column;
        text-align: center;
    }

    .blog-author-area-main .thumbnail {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .input-half-wrapper {
        grid-template-columns: 1fr;
    }

    .single-comment.reply {
        margin-left: 30px;
    }

    .tag-share-wrapper-blog-details {
        flex-direction: column;
        gap: 20px;
    }
}

/* article - show-blog */

.blog-type-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.thumbnail-main {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thumbnail-main img {
    width: 100%;
    height: auto;
    display: block;
}

.tag-author-area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.tag-author-area .single {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.tag-author-area .single i {
    color: var(--primary-color, #5956E9);
    font-size: 16px;
}

.inner-content .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
    margin-bottom: 30px;
}

.blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.blog-content p {
    margin-bottom: 15px;
}

.blog-gallery-section {
    margin-top: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color, #5956E9);
}

.blog-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.blog-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-gallery-item:hover img {
    transform: scale(1.1);
}

.blog-gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-gallery-item:hover .overlay {
    opacity: 1;
}

.blog-gallery-item .overlay i {
    color: white;
    font-size: 32px;
}

.qr-code-section {
    margin-top: 40px;
}

.qr-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 2px dashed var(--primary-color, #5956E9);
}

.qr-info h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.qr-info p {
    color: #666;
    margin: 0;
}

.qr-image img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tag-share-wrapper-blog-details {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.social-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-area span {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.social-area ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-area ul li a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #5956E9);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.social-area ul li a:hover {
    background: var(--primary-color, #5956E9);
    color: white;
    transform: translateY(-3px);
}

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

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.related-article-card .thumbnail {
    height: 150px;
    overflow: hidden;
}

.related-article-card .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article-card:hover .thumbnail img {
    transform: scale(1.1);
}

.related-article-card .content {
    padding: 20px;
}

.related-article-card .date {
    font-size: 12px;
    color: #999;
}

.related-article-card .title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-top: 8px;
    line-height: 1.4;
}

.related-article-card a:hover .title {
    color: var(--primary-color, #5956E9);
}

.blog-navigation {
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--primary-color, #5956E9);
    color: white;
}

.nav-link i {
    font-size: 24px;
    color: var(--primary-color, #5956E9);
    transition: color 0.3s ease;
}

.nav-link:hover i {
    color: white;
}

.nav-link.next {
    justify-content: flex-end;
}

.nav-content span {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.nav-link:hover .nav-content span {
    color: rgba(255,255,255,0.8);
}

.nav-content h6 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.nav-link:hover .nav-content h6 {
    color: white;
}

.single-sidebar-wized {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.single-sidebar-wized .title-area {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color, #5956E9);
}

.single-sidebar-wized .title-area .title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.search {
    position: relative;
}

.search input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
}

.search input:focus {
    outline: none;
    border-color: var(--primary-color, #5956E9);
}

.search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color, #5956E9);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
}

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

.content-type-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.content-type-item:hover {
    background: white;
    border-color: var(--primary-color, #5956E9);
    transform: translateX(5px);
}

.content-type-item.active {
    background: var(--primary-color, #5956E9);
    border-color: var(--primary-color, #5956E9);
}

.content-type-item .icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color, #5956E9);
    flex-shrink: 0;
}

.content-type-item.active .icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.content-type-item h6 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.content-type-item.active h6 {
    color: white;
}

.content-type-item .arrow {
    font-size: 16px;
    color: #999;
    margin-left: auto;
}

.content-type-item.active .arrow {
    color: white;
}

.signle-post-short-area {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.signle-post-short-area:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.signle-post-short-area .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.signle-post-short-area .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signle-post-short-area .infor {
    flex: 1;
}

.signle-post-short-area .time {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.signle-post-short-area .title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

.signle-post-short-area a:hover .title {
    color: var(--primary-color, #5956E9);
}

.tag-wrapper-small {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.single-tag {
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.single-tag:hover {
    background: var(--primary-color, #5956E9);
    color: white;
}

.cta-sidebar-card {
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.cta-sidebar-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.cta-sidebar-card h5 {
    color: white;
    margin-bottom: 10px;
}

.cta-sidebar-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-size: 14px;
}

.cta-sidebar-card .rts-btn {
    background: white;
    color: var(--primary-color, #5956E9);
}

.cta-sidebar-card .rts-btn:hover {
    background: rgba(255,255,255,0.9);
}

@media (max-width: 991px) {
    .inner-content .title {
        font-size: 24px;
    }

    .qr-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .blog-navigation .col-md-6:first-child {
        margin-bottom: 15px;
    }

    .nav-link.next {
        justify-content: flex-start;
    }

    .nav-content.text-end {
        text-align: left !important;
    }
}

/* gallery - fasilitas */


.facility-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    animation: fadeIn 0.3s ease;
}

.facility-lightbox-modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.facility-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: all 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
}

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

.facility-image-wrapper {
position: relative;
height: 250px;
overflow: hidden;
}

.facility-main-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.facility-card:hover .facility-main-image {
transform: scale(1.1);
}

.facility-image-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
display: flex;
align-items: flex-end;
justify-content: center;
padding: 20px;
opacity: 0;
transition: opacity 0.3s ease;
}

.facility-card:hover .facility-image-overlay {
opacity: 1;
}

.view-facility-btn {
background: white;
color: var(--primary-color, #5956E9);
padding: 10px 25px;
border: none;
border-radius: 25px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}

.view-facility-btn:hover {
background: var(--primary-color, #5956E9);
color: white;
transform: scale(1.05);
}

.facility-content {
padding: 25px;
flex: 1;
display: flex;
flex-direction: column;
}

.facility-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary-color, #5956E9), #7b7aed);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.facility-icon i {
font-size: 28px;
color: white;
}

.facility-title {
font-size: 20px;
font-weight: 600;
color: #333;
margin-bottom: 15px;
line-height: 1.3;
}

.facility-description {
color: #666;
font-size: 14px;
line-height: 1.6;
margin-bottom: 20px;
}

.facility-specs {
background: #f8f9fa;
padding: 15px;
border-radius: 10px;
margin-bottom: 20px;
}

.specs-title {
font-size: 14px;
font-weight: 600;
color: #333;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 8px;
}

.specs-title i {
color: var(--primary-color, #5956E9);
}

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

.specs-list li {
font-size: 13px;
color: #666;
padding: 5px 0;
display: flex;
align-items: center;
gap: 8px;
}

.specs-list li i {
color: var(--primary-color, #5956E9);
font-size: 12px;
}

.specs-list li.more-specs {
color: var(--primary-color, #5956E9);
font-weight: 600;
}

.facility-thumbnails {
display: flex;
gap: 8px;
margin-top: auto;
padding-top: 15px;
border-top: 1px solid #f0f0f0;
}

.facility-thumb {
width: 60px;
height: 60px;
border-radius: 8px;
overflow: hidden;
cursor: pointer;
transition: transform 0.3s ease;
}

.facility-thumb:hover {
transform: scale(1.1);
}

.facility-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}

.facility-thumb.more {
background: var(--primary-color, #5956E9);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 600;
font-size: 14px;
}

.no-facilities-wrapper {
text-align: center;
padding: 80px 20px;
}

.no-facilities-wrapper .icon {
font-size: 80px;
color: #ddd;
margin-bottom: 20px;
}

.no-facilities-wrapper h4 {
font-size: 24px;
color: #333;
margin-bottom: 10px;
}

.no-facilities-wrapper p {
color: #666;
font-size: 16px;
}

@media (max-width: 767px) {
.facility-image-wrapper {
    height: 200px;
}

.facility-content {
    padding: 20px;
}

.facility-icon {
    width: 50px;
    height: 50px;
}

.facility-icon i {
    font-size: 24px;
}
}

/* gallery - index */

.gallery-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.category-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 30px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
}

.category-btn:hover {
    border-color: var(--primary-color, #5956E9);
    color: var(--primary-color, #5956E9);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-color, #5956E9);
    border-color: var(--primary-color, #5956E9);
    color: white;
}

.category-btn .count {
    background: #f0f0f0;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.category-btn.active .count {
    background: rgba(255,255,255,0.3);
    color: white;
}

.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.gallery-cover {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-cover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-info {
    display: flex;
    justify-content: flex-end;
}

.image-count {
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-gallery-btn {
    background: white;
    color: var(--primary-color, #5956E9);
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-gallery-btn:hover {
    background: var(--primary-color, #5956E9);
    color: white;
    transform: scale(1.05);
}

/* Gallery Content */
.gallery-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-badge {
    display: inline-block;
    padding: 6px 15px;
    background: #f0f0f0;
    color: #666;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.gallery-title {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
    line-height: 1.4;
}

.gallery-title span {
    color: #333;
    transition: color 0.3s ease;
}

.gallery-title span:hover {
    color: var(--primary-color, #5956E9);
}

.gallery-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.thumbnail-preview {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.thumb-item {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumb-item:hover {
    transform: scale(1.1);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.more {
    background: var(--primary-color, #5956E9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* No Gallery */
.no-gallery-wrapper {
    text-align: center;
    padding: 80px 20px;
}

.no-gallery-wrapper .icon {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-gallery-wrapper h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.no-gallery-wrapper p {
    color: #666;
    font-size: 16px;
}

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}


.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    align-items: center;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 10px 15px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-color, #5956E9);
    border-color: var(--primary-color, #5956E9);
    color: white;
}

.page-item.active .page-link {
    background: var(--primary-color, #5956E9);
    border-color: var(--primary-color, #5956E9);
    color: white;
    cursor: default;
}

.page-item.disabled .page-link {
    background: #f8f9fa;
    border-color: #e5e5e5;
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
}

.page-link i {
    font-size: 14px;
}

@media (max-width: 767px) {
    .pagination {
        gap: 5px;
    }

    .page-link {
        min-width: 40px;
        height: 40px;
        padding: 8px 12px;
        font-size: 14px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightboxImage {
    max-width: 100%;
    max-height: calc(90vh - 100px);
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-caption {
    background: rgba(0,0,0,0.7);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.lightbox-caption h5 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.lightbox-caption p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 14px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}



/* Responsive */
@media (max-width: 991px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .lightbox-nav.prev {
        left: 15px;
    }

    .lightbox-nav.next {
        right: 15px;
    }
}

@media (max-width: 767px) {
    .gallery-cover {
        height: 250px;
    }

    .category-btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-category-filter {
        flex-direction: column;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* kontak */

.social-icon-wrapper {
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}
.social-icon-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* promo - index */


/* Featured Promo Slider */
.featured-promo-slider {
    padding: 20px 0;
}

.featured-promo-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.promo-banner {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.promo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255,71,87,0.4);
}

.discount-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.discount-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

.urgent-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    color: #FF4757;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-content {
    padding: 40px;
}

.promo-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.promo-description {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.promo-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.promo-code, .promo-validity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.promo-code i {
    color: var(--primary-color, #5956E9);
}

/* Promo Card */
.promo-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.promo-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.promo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.promo-badge-container {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.discount-badge-small {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255,71,87,0.3);
}

.time-badge {
    background: rgba(255,255,255,0.95);
    color: #FF4757;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.promo-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-category {
    display: inline-block;
    padding: 6px 15px;
    background: #f0f0f0;
    color: #666;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.promo-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.promo-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.promo-card-title a:hover {
    color: var(--primary-color, #5956E9);
}

.promo-card-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.promo-code-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 2px dashed var(--primary-color, #5956E9);
    border-radius: 10px;
    margin-bottom: 20px;
}

.code-label {
    font-size: 12px;
    color: #000;
    font-weight: 500;
}

.code-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color, #5956E9);
    letter-spacing: 1px;
}

.copy-code-btn {
    margin-left: auto;
    background: var(--primary-color, #5956E9);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-code-btn:hover {
    background: #4745c7;
    transform: scale(1.1);
}

.copy-code-btn.copied {
    background: #10B981;
}

.promo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.promo-validity-info small {
    color: #666;
    font-size: 12px;
}

.detail-link {
    color: var(--primary-color, #5956E9);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.detail-link:hover {
    gap: 8px;
}

.detail-link i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.detail-link:hover i {
    margin-left: 10px;
}

/* No Promo */
.no-promo-wrapper {
    text-align: center;
    padding: 80px 20px;
}

.no-promo-wrapper .icon {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-promo-wrapper h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.no-promo-wrapper p {
    color: #666;
    font-size: 16px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color, #5956E9);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
}

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

.page-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 10px 15px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-color, #5956E9);
    border-color: var(--primary-color, #5956E9);
    color: white;
}

.page-item.active .page-link {
    background: var(--primary-color, #5956E9);
    border-color: var(--primary-color, #5956E9);
    color: white;
}

.page-item.disabled .page-link {
    background: #f8f9fa;
    border-color: #e5e5e5;
    color: #999;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 767px) {
    .promo-banner {
        height: 250px;
    }

    .promo-content {
        padding: 25px;
    }

    .promo-title {
        font-size: 22px;
    }

    .promo-meta {
        flex-direction: column;
        gap: 10px;
    }

    .discount-badge {
        padding: 15px;
    }

    .discount-value {
        font-size: 24px;
    }
}

/* promo - show */


/* Promo Detail Banner */
.promo-detail-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.promo-detail-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-status-badges {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.discount-badge-large {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255,71,87,0.4);
}

.discount-badge-large .discount-value {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.discount-badge-large .discount-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}

.urgency-badge {
    background: rgba(255,255,255,0.95);
    color: #FF4757;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

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

/* Promo Detail Content */
.promo-detail-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.promo-header {
    margin-bottom: 30px;
}

.promo-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.promo-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #f0f0f0;
    color: #666;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

/* Promo Code Highlight */
.promo-code-highlight {
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.code-container {
    text-align: center;
}

.code-label {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.code-text {
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    background: white;
    color: #00BFFF;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.copy-btn.copied {
    background: #10B981;
    color: white;
}

/* Promo Section */
.promo-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.promo-section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary-color, #5956E9);
}

.section-content {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.terms-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color, #5956E9);
}

/* Discount Details Grid */
.discount-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.detail-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color, #5956E9), #7b7aed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 20px;
    color: white;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 13px;
    color: #666;
}

.detail-value {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

/* Promo CTA */
.promo-cta {
    text-align: center;
    padding-top: 30px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Sidebar */
.promo-summary-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.summary-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-icon {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-icon i {
    font-size: 18px;
    color: var(--primary-color, #5956E9);
}

.summary-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-label {
    font-size: 13px;
    color: #666;
}

.summary-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Share Promo */
.share-promo {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.link {
    background: #666;
}

/* Help Card */
.help-card {
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: white;
}

.help-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.help-icon i {
    font-size: 28px;
}

.help-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.help-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.help-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #00BFFF;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Related Promotions - Reuse styles from index */
.promo-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.promo-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.promo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.promo-badge-container {
    position: absolute;
    top: 15px;
    right: 15px;
}

.discount-badge-small {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.promo-card-content {
    padding: 25px;
}

.promo-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.promo-card-title a {
    color: #333;
    text-decoration: none;
}

.promo-card-title a:hover {
    color: var(--primary-color, #5956E9);
}

.promo-card-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-code-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 2px dashed var(--primary-color, #5956E9);
    border-radius: 10px;
    margin-bottom: 15px;
}

.code-label {
    font-size: 12px;
    color: #666;
}

.code-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color, #5956E9);
}

.detail-link {
    color: var(--primary-color, #5956E9);
    font-weight: 600;
    text-decoration: none;
}

.detail-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .promo-detail-content {
        padding: 30px 20px;
    }

    .promo-detail-title {
        font-size: 26px;
    }

    .code-text {
        font-size: 24px;
    }

    .discount-badge-large {
        padding: 20px;
    }

    .discount-badge-large .discount-value {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .promo-status-badges {
        top: 15px;
        right: 15px;
    }

    .discount-details-grid {
        grid-template-columns: 1fr;
    }

    .code-display {
        flex-direction: column;
    }

    .share-buttons {
        justify-content: center;
    }
}


/* testimonial form */
.share-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
  }

  .share-buttons .share-btn{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:8px !important;

    width:auto !important;
    height:auto !important;
    line-height:1.2 !important;
    overflow:visible !important;

    padding:10px 16px !important;
    border-radius:12px !important;

    color:#fff !important;
    text-decoration:none !important;
    font-weight:600;
    white-space:nowrap;
    box-sizing:border-box;
    transition:transform .15s ease, opacity .15s ease;
  }

  .share-buttons .share-btn i{ font-size:18px !important; }

  .share-buttons .whatsapp{ background:#25d366 !important; }
  .share-buttons .facebook{ background:#1877f2 !important; }
  .share-buttons .twitter{  background:#1da1f2 !important; }

  .share-buttons .share-btn:hover{ transform:translateY(-2px); opacity:.92; }

  @media (max-width:420px){
    .share-buttons .share-btn span{ display:none; }
    .share-buttons .share-btn{ padding:12px !important; border-radius:14px !important; }
  }

  /* testimonial- create */


/* Star Rating Styles */
.star-rating-wrapper {
    margin-top: 10px;
}

.star-rating {
    display: flex;
    gap: 8px;
    font-size: 32px;
    cursor: pointer;
}

.star-rating i {
    color: #ddd;
    transition: all 0.2s ease;
}

.star-rating i:hover,
.star-rating i.hover {
    color: #ffc107;
    transform: scale(1.1);
}

.star-rating i.active {
    color: #ffc107;
}

.rating-text {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    min-height: 20px;
}

.rating-text.has-rating {
    color: #ffc107;
}


/* karier - index */
.career-hero{
    background: radial-gradient(1200px 300px at 30% -10%, rgba(37,99,235,.25), transparent),
                linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    padding: 56px 0 48px;
    position: relative;
  }
  .career-hero::after{
    content:""; position:absolute; inset:0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0v40M0 20h40' stroke='%23e5e7eb' stroke-width='0.5'/%3E%3C/svg%3E");
    opacity:.35; pointer-events:none; mask-image: linear-gradient(#000,transparent);
  }
  .hero-inner{ text-align:center }
  .hero-title{ font-size:36px; font-weight:800; letter-spacing:.2px; margin:0; }
  .hero-sub{ color:var(--muted); margin-top:8px }

  .career-filters{ position: sticky; top:0; z-index: 10; padding: 16px 0; backdrop-filter: saturate(140%) blur(6px); }
  .filter-card{
    background: rgba(255,255,255,.9);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 18px 8px;
    box-shadow: var(--shadow);
  }
  .form-label{ font-weight:700; font-size:.85rem; color:#111827; display:block; margin-bottom:6px }
  .form-label i{ color:var(--primary); margin-right:6px }
  .input-icon{ position:relative }
  .input-icon input{ padding-left:38px }
  .input-icon i{ position:absolute; left:12px; top:50%; transform:translateY(-50%); color:var(--muted); pointer-events:none; }

  /* chips */
  .active-chips{ display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin:14px 2px 6px }
  .active-chips > span{ color:var(--muted); font-size:.9rem }
  .chip{
    display:inline-flex; align-items:center; gap:6px;
    border:1px solid var(--border); padding:6px 10px; border-radius:999px;
    background:#fff; font-size:.85rem; text-decoration:none; color:#111827;
  }
  .chip.clear{ background: #eff6ff; border-color:#dbeafe; color:#1e3a8a }
  .chip i{ color:var(--primary) }

  .job-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f8fafc;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .job-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
    border-radius: 10px;
  }

  .job-card:hover .job-thumb img {
    transform: scale(1.04);
    opacity: 0.95;
  }

  .job-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
  }

  .job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(37, 99, 235, 0.3);
  }

  @media (max-width: 991px) {
    .job-thumb {
      aspect-ratio: 4 / 3;
    }
  }

  @media (max-width: 576px) {
    .job-thumb {
      aspect-ratio: 1 / 1;
    }
  }

  .job-head{ display:flex; justify-content:space-between; gap:16px; }
  .job-title{ font-size:20px; font-weight:800; margin:10px 0 6px }
  .job-title a{ color:#0f172a; text-decoration:none }
  .job-title a:hover{ color:var(--primary) }
  .job-meta{ list-style:none; padding:0; margin:0; display:flex; gap:14px; color:var(--muted); font-size:.9rem }
  .job-meta i{ color:var(--primary); margin-right:6px }

  .badge-soft{
    display:inline-flex; align-items:center; gap:6px;
    background:#f3f4f6; color:#374151; padding:6px 12px; border-radius:999px; font-size:.8rem; font-weight:600
  }
  .badge-soft i{ color:var(--primary) }
  .badge-urgent{
    background: linear-gradient(135deg, #f43f5e, #ef4444);
    color:#fff; padding:6px 12px; border-radius:999px; font-weight:800; font-size:.75rem;
    display:inline-flex; align-items:center; gap:6px; animation:pulse 2s infinite;
  }
  @keyframes pulse{ 0%,100%{ transform:scale(1)} 50%{ transform:scale(1.06)} }

  .job-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:12px;
    padding:14px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); margin:12px 0 10px
  }
  .job-grid > div{ display:flex; align-items:center; gap:8px; color:#334155; font-size:.95rem }
  .job-grid i{ color:var(--primary) }

  .job-desc{ color:#475569; line-height:1.6; margin:6px 0 0; flex:1 }

  .job-foot{ display:flex; justify-content:space-between; align-items:center; gap:12px; padding-top:14px; border-top:1px solid var(--border) }
  .job-foot .stats{ display:flex; gap:18px; color:var(--muted); font-size:.9rem }
  .job-foot .stats i{ color:var(--primary); margin-right:6px }

  /* empty */
  .empty{ padding:72px 12px }
  .empty-icon{ width:110px; height:110px; margin:0 auto 18px; border-radius:999px; background:linear-gradient(135deg,#f8fafc,#eef2f7); display:grid; place-items:center }
  .empty-icon i{ font-size:48px; color:#cbd5e1 }
  .empty p{ color:var(--muted); max-width:560px; margin:8px auto 0 }

  @media (max-width:991px){
    .job-grid{ grid-template-columns:1fr; }
    .job-foot{ flex-direction:column; align-items:flex-start }
    .career-filters{ top: -1px }
  }


/* karier - show */

.career-detail-thumb {
    width: 100%;
    max-width: 480px;
    margin: 0 0 24px;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f6fb;
    box-shadow: 0 8px 24px rgba(2,6,23,.06);
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .career-detail-thumb img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    transition: transform .4s ease, opacity .3s ease;
  }

  .career-detail-thumb:hover img {
    transform: scale(1.03);
    opacity: .98;
  }

  @media (max-width: 992px) {
    .career-detail-thumb { max-width: 100%; }
    .career-detail-thumb img { max-height: none; }
  }


  .career-detail-header-card {
      background: #fff;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      border: 1px solid #eee;
  }

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

  .career-detail-title {
      font-size: 32px;
      font-weight: 700;
      color: #1a1a1a;
      margin: 0;
      line-height: 1.2;
      margin-left:50px;
  }

  .urgent-badge-detail {
      background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
      color: #fff;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      animation: pulse 2s infinite;
  }

  .career-quick-info-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }

  .info-box {
      display: flex;
      align-items: flex-start;
      gap: 12px;
  }

  .info-icon {
      width: 45px;
      height: 45px;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .info-icon i {
      font-size: 20px;
      color: #fff;
  }

  .info-content {
      flex: 1;
  }

  .info-label {
      display: block;
      font-size: 13px;
      color: #888;
      margin-bottom: 4px;
  }

  .info-value {
      display: block;
      font-size: 15px;
      font-weight: 600;
      color: #1a1a1a;
  }

  .info-value small {
      font-size: 12px;
      font-weight: 400;
      color: #666;
  }

  .career-content-section {
      background: #fff;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 25px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      border: 1px solid #eee;
  }

  .section-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 2px solid #f5f5f5;
  }

  .section-header i {
      font-size: 22px;
      color: var(--color-primary);
  }

  .section-header h4 {
      font-size: 20px;
      font-weight: 700;
      color: #1a1a1a;
      margin: 0;
  }

  .section-body {
      color: #555;
      line-height: 1.8;
  }

  .career-description-text {
      font-size: 15px;
      color: #555;
      line-height: 1.8;
      margin: 0;
  }

  /* Career List Check */
  .career-list-check {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .career-list-check li {
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      font-size: 15px;
      color: #555;
      line-height: 1.6;
  }

  .career-list-check li i {
      position: absolute;
      left: 0;
      top: 2px;
      width: 22px;
      height: 22px;
      background: #E8F5E9;
      color: #4CAF50;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
  }

  /* Career List Benefit */
  .career-list-benefit {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .career-list-benefit li {
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      font-size: 15px;
      color: #555;
      line-height: 1.6;
  }

  .career-list-benefit li i {
      position: absolute;
      left: 0;
      top: 2px;
      color: #FFC107;
      font-size: 18px;
  }

  /* Skills Tag Wrapper */
  .skills-tag-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
  }

  .skill-tag {
      background: #F5F5F5;
      color: #333;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 500;
      display: inline-block;
      border: 1px solid #e0e0e0;
      transition: all 0.3s ease;
  }

  .skill-tag:hover {
      background: var(--color-primary);
      color: #fff;
      border-color: var(--color-primary);
      transform: translateY(-2px);
  }

  /* ===== SIDEBAR CARDS ===== */
  .career-sidebar-card {
      background: #fff;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 25px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      border: 1px solid #eee;
      position: sticky;
      top: 100px;
  }

  .sidebar-card-title {
      font-size: 18px;
      font-weight: 700;
      color: #1a1a1a;
      margin: 0 0 20px 0;
      padding-bottom: 15px;
      border-bottom: 2px solid #f5f5f5;
  }

  /* Position Info Card */
  .position-info-list {
      margin-bottom: 20px;
  }

  .info-item-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #f5f5f5;
  }

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

  .info-label {
      font-size: 14px;
      color: #666;
      font-weight: 500;
  }

  .info-value {
      font-size: 14px;
      color: #1a1a1a;
      font-weight: 600;
  }

  .btn-apply-now {
      width: 100%;
      padding: 14px 20px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
  }

  /* Contact Card */
  .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  .contact-item-box {
      display: flex;
      align-items: flex-start;
      gap: 12px;
  }

  .contact-icon {
      width: 40px;
      height: 40px;
      background: #F5F5F5;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .contact-icon i {
      font-size: 18px;
      color: var(--color-primary);
  }

  .contact-content {
      flex: 1;
  }

  .contact-label {
      display: block;
      font-size: 12px;
      color: #888;
      margin-bottom: 4px;
  }

  .contact-value {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #1a1a1a;
      word-break: break-word;
  }

  .contact-value:hover {
      color: var(--color-primary);
  }

  .share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-items: center;
    align-items: center;
  }

  .share-btn-square {
    width: 72px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    padding: 6px; /* menjaga ikon tidak menempel ke tepi */
  }

  .share-btn-square:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }

  /* warna tombol */
  .share-btn-square.whatsapp { background: #25D366; }
  .share-btn-square.facebook { background: #1877F2; }
  .share-btn-square.twitter  { background: #1DA1F2; }
  .share-btn-square.linkedin { background: #0A66C2; }

  @media (max-width: 992px) {
    .share-buttons-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    .share-btn-square { width: 64px; font-size: 18px; padding: 6px; }
  }

  @media (max-width: 767px) {
    .share-buttons-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .share-btn-square { width: 56px; font-size: 17px; padding: 5px; }
  }

  @media (max-width: 480px) {
    .share-buttons-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }
    .share-btn-square { width: 48px; font-size: 16px; padding: 4px; }
  }

  @media (max-width: 360px) {
    .share-buttons-grid { grid-template-columns: 1fr 1fr; }
    .share-btn-square { width: 44px; font-size: 15px; padding: 3px; }
  }

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

  .related-career-item {
      display: block;
      padding: 15px;
      background: #F9F9F9;
      border-radius: 8px;
      border: 1px solid #eee;
      transition: all 0.3s ease;
  }

  .related-career-item:hover {
      background: #fff;
      border-color: var(--color-primary);
      transform: translateX(5px);
  }

  .related-title {
      font-size: 15px;
      font-weight: 600;
      color: #1a1a1a;
      margin: 0 0 8px 0;
      line-height: 1.3;
  }

  .related-career-item:hover .related-title {
      color: var(--color-primary);
  }

  .related-meta {
      display: flex;
      flex-direction: column;
      gap: 5px;
  }

  .meta-text {
      font-size: 13px;
      color: #666;
      display: flex;
      align-items: center;
      gap: 6px;
  }

  .meta-text i {
      color: var(--color-primary);
      font-size: 12px;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991px) {
      .career-quick-info-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .career-sidebar-card {
          position: relative;
          top: 0;
      }
  }

  @media (max-width: 767px) {
      .career-quick-info-grid {
          grid-template-columns: 1fr;
      }

      .header-top {
          flex-direction: column;
          gap: 15px;
      }

      .career-detail-title {
          font-size: 24px;
      }

      .career-detail-header-card {
          padding: 20px;
      }

      .career-content-section {
          padding: 20px;
      }

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

  @media (max-width: 575px) {
      .info-box {
          flex-direction: column;
          text-align: center;
      }

      .info-icon {
          margin: 0 auto;
      }
  }

  /* ===== MODAL STYLES ===== */
  .modal-xl {
      max-width: 1000px;
  }

  .modal-header {
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
      color: #fff;
      padding: 20px 25px;
  }

  .modal-header .modal-title {
      font-size: 20px;
      font-weight: 700;
  }

  .modal-header .btn-close {
      filter: brightness(0) invert(1);
  }

  .modal-body {
      padding: 30px;
      max-height: 70vh;
  }

  .modal-footer {
      padding: 20px 25px;
      border-top: 2px solid #f5f5f5;
  }

  /* Form Section Modal */
  .form-section-modal {
      padding: 25px;
      background: #f9f9f9;
      border-radius: 10px;
      margin-bottom: 25px;
      border: 1px solid #eee;
  }

  .form-section-modal:last-child {
      margin-bottom: 0;
  }

  .section-title-modal {
      font-size: 18px;
      font-weight: 700;
      color: #1a1a1a;
      margin: 0 0 20px 0;
      padding-bottom: 12px;
      border-bottom: 2px solid #e0e0e0;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .section-title-modal i {
      color: var(--color-primary);
      font-size: 20px;
  }

  .form-label {
      font-weight: 600;
      font-size: 14px;
      color: #333;
      margin-bottom: 6px;
  }

  .form-control, .form-select {
      border-radius: 6px;
      border: 1px solid #ddd;
      padding: 10px 14px;
      font-size: 14px;
  }

  .form-control:focus, .form-select:focus {
      border-color: var(--color-primary);
      box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb), 0.15);
  }

  .character-counter {
      text-align: right;
      font-size: 12px;
      color: #888;
      margin-top: 5px;
  }

  @media (max-width: 767px) {
      .modal-body {
          padding: 20px;
      }

      .form-section-modal {
          padding: 20px;
      }
  }
