/*
- home-faq
- home-slider
- home-statistic
- home-partner
- tentang-awards
- tentang-milestone
- tentang-visi-misi
- service
- service-index
- doctor-index
- doctor-shcedule
- doctor-show (tida normal)
- promo-index
- promo-show
- gallery-index
- careers-index
- karir-detail

*/

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* home-slider */
.header-carousel {
    position: relative;
    overflow: hidden;
}

.header-carousel-item {
    position: relative;
    height: 450px; /* Dikurangi dari 60vh */
    max-height: 450px; /* Dikurangi dari 600px */
    min-height: 300px;
    overflow: hidden;
}

.header-carousel-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.carousel-caption-content {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.slider-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.2;
    font-weight: 600;
}

.slider-description {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.6;
}

.header-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.header-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    margin: 5px;
    transition: all 0.3s ease;
}

.header-carousel .owl-dot.active span {
    background: white;
    width: 30px;
    border-radius: 6px;
}

@media screen and (max-width: 992px) {
    .header-carousel-item {
        height: 400px; /* Dikurangi */
        max-height: 400px;
        min-height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .header-carousel-item {
        height: 350px; /* Dikurangi */
        max-height: 350px;
        min-height: 280px;
    }

    .carousel-caption-content {
        padding: 1.5rem !important;
    }
}

@media screen and (max-width: 576px) {
    .header-carousel-item {
        height: 300px; /* Dikurangi */
        max-height: 300px;
        min-height: 250px;
    }

    .carousel-caption-content {
        padding: 1rem !important;
    }
}

@media screen and (min-width: 1600px) {
    .header-carousel-item {
        height: 500px; /* Dikurangi */
        max-height: 500px;
    }
}

/* home-statistic */

.counter-area.theme-bg-1{
    background:
      radial-gradient(1200px 600px at 10% -10%, rgba(34,211,238,0.08), transparent 60%),
      radial-gradient(1200px 600px at 90% 110%, rgba(34,211,238,0.06), transparent 60%),
      linear-gradient(180deg, #0f172a 0%, #0b1224 100%);
    color:#e5e7eb;
  }

  .pt-65{padding-top:65px;}
  .pb-65{padding-bottom:65px;}

  .counter-area .counter-item-2::before,
  .counter-area .counter-item-2::after{
    content:none !important;
    display:none !important;
  }

  .counter-area .row.gy-5{row-gap:clamp(16px,3vw,28px);}

  .counter-area .counter-item-2{
    text-align:center;
  }

  .counter-area .counter-item-2 .counter-content-2{
    position:relative;
    display:block;
    padding:clamp(18px,3vw,28px);
    border-radius:20px;
    border:1px solid rgba(148,163,184,0.15);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    box-shadow:0 6px 24px rgba(0,0,0,0.15);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    isolation:isolate;
  }

  .counter-area .counter-item-2 .counter-content-2::after{
    content:"";
    position:absolute; inset:0;
    border-radius:inherit;
    pointer-events:none;
    background:linear-gradient(180deg, rgba(34,211,238,0.15), transparent 40%) border-box;
    mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite:exclude; -webkit-mask-composite:xor;
    opacity:.55;
  }

  .counter-area .counter-item-2 .counter-content-2:hover{
    transform:translateY(-4px);
    border-color:rgba(34,211,238,0.35);
    box-shadow:0 10px 28px rgba(34,211,238,0.15), 0 8px 24px rgba(0,0,0,0.2);
  }

  .counter-area .counter-content-2 .counter{
    margin:0 0 10px;
    font-weight:800;
    letter-spacing:-.02em;
    line-height:1;
    font-size:clamp(28px,6vw,48px);
    color:#e5e7eb;
    text-shadow:0 1px 0 rgba(255,255,255,0.05);
  }

  .counter-area .counter-content-2 > span{
    display:block;
    width:56px; height:3px;
    margin:0 auto 10px;
    border-radius:999px;
    background:linear-gradient(90deg, transparent, #22d3ee, transparent);
    box-shadow:0 0 0 6px rgba(34,211,238,0.25);
  }

  .counter-area .counter-content-2 p{
    margin:0;
    font-size:clamp(13px,2.1vw,15px);
    color:#a1a1aa;
  }

  /* Utility */
  .counter-area .text-center{text-align:center;}

  @media (prefers-reduced-motion: reduce){
    .counter-area .counter-item-2 .counter-content-2,
    .counter-area .counter-item-2 .counter-content-2:hover{
      transition:none; transform:none;
    }
  }

  @media (prefers-color-scheme: light){
    .counter-area.theme-bg-1{
      background:
        radial-gradient(1200px 600px at 10% -10%, rgba(34,211,238,0.12), transparent 60%),
        radial-gradient(1200px 600px at 90% 110%, rgba(34,211,238,0.10), transparent 60%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
      color:#0f172a;
    }
    .counter-area .counter-content-2 .counter{color:#0f172a;}
    .counter-area .counter-content-2 p{color:#475569;}
  }


/* home-faq */
.faq__area {
    position: relative;
    background-color: #f8f9fb;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .faq__content {
    position: sticky;
    top: 100px;
  }

  .section-subtitle-2 {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #0d6efd;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #0a0a0a;
  }

  .faq__content p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .fill-btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    text-decoration: none;
  }

  .fill-btn-inner {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }

  .fill-btn-inner .fill-btn-hover {
    position: absolute;
    inset: 0;
    background-color: #094fbf;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    border-radius: 50px;
    transition: transform 0.3s ease;
  }

  .fill-btn:hover .fill-btn-hover {
    transform: translateY(0);
  }

  .fill-btn:hover .fill-btn-normal {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }

  .fill-btn i {
    margin-left: 8px;
  }


  .bd__faq .accordion {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .accordion-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    background-color: #fff;
  }

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

  .accordion-button {
    background-color: #fff;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 17px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: none;
  }

  .accordion-button:not(.collapsed) {
    background-color: #e9f2ff;
    color: #0d6efd;
    box-shadow: inset 0 -1px 0 rgba(13, 110, 253, 0.2);
  }

  .accordion-button::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background: none;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
  }

  .accordion-body {
    background-color: #fff;
    color: #555;
    padding: 20px 25px;
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid #e9ecef;
  }


  @media (max-width: 991px) {
    .faq__content {
      margin-bottom: 50px;
      position: relative;
      top: 0;
    }
    .section-title {
      font-size: 28px;
    }
    .accordion-button {
      font-size: 16px;
      padding: 16px;
    }
  }

  @media (max-width: 576px) {
    .faq__area {
      padding-top: 70px;
      padding-bottom: 70px;
    }
    .fill-btn-inner {
      padding: 10px 24px;
      font-size: 15px;
    }
  }

  /* home-partner */
  .brand-area {
    background-color: #f8f9fb;
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
  }

  .brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px 60px;
    align-items: center;
    justify-items: center;
  }

  .brand-item {
    text-align: center;
    transition: all 0.3s ease;
  }

  .brand-thumb {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 180px;
    padding: 20px 10px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .brand-thumb img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.4s ease;
  }

  .brand-thumb a {
    display: block;
  }

  .brand-thumb:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.1);
  }

  .brand-thumb:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
  }

  @keyframes brandFade {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .brand-item {
    animation: brandFade 0.6s ease both;
  }

  @media (max-width: 992px) {
    .brand-grid {
      gap: 30px 40px;
    }
    .brand-thumb {
      max-width: 150px;
      padding: 15px;
    }
  }

  @media (max-width: 576px) {
    .brand-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px 20px;
    }
    .brand-thumb {
      max-width: 130px;
      padding: 12px;
    }
  }
/* ===== AWARDS SECTION ===== */
.bd-product__area {
    --aw-bg: #f9fafb;
    --aw-surface: #ffffff;
    --aw-text: #0f172a;
    --aw-muted: #475569;
    --aw-border: #e5e7eb;
    --aw-line: #eef2f7;
    --aw-accent: #22c55e;
    --aw-accent2: #60a5fa;
    --aw-radius: 16px;
    --aw-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    background: var(--aw-bg);
    color: var(--aw-text);
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .bd-product__area .container {
    max-width: 1100px;
  }

  .bd-product__area .title-area-center .title {
    color: var(--aw-text);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
  }

  .bd-product__area .product-item {
    background: var(--aw-surface);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius);
    box-shadow: var(--aw-shadow);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    position: relative;
  }

  .bd-product__area .product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
  }

  /* ==== PRODUCT BADGE ==== */
  .bd-product__area .product-badge {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    max-width: 90%;
  }

  .bd-product__area .product-badge span {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    color: #06202a;
    box-shadow: 0 3px 8px rgba(96, 165, 250, 0.25);
    white-space: nowrap;
  }

  .bd-product__area .product-badge .product-trending {
    background: linear-gradient(135deg, var(--aw-accent), var(--aw-accent2));
  }

  .bd-product__area .product-badge .product-hot {
    background: linear-gradient(135deg, #fde047, #fca5a5);
  }

  /* ==== PRODUCT THUMB ==== */
  .bd-product__area .product-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 4/2.8;
    overflow: hidden;
    background: #f1f5f9;
  }

  .bd-product__area .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
  }

  .bd-product__area .product-item:hover .product-thumb img {
    transform: scale(1.05);
  }

  /* ==== PRODUCT CONTENT ==== */
  .bd-product__area .product-content {
    padding: 18px 18px 22px;
    position: relative;
  }

  .bd-product__area .product-tag span {
    display: inline-block;
    font-size: 0.8rem;
    color: #2563eb;
    background: #e0f2fe;
    border-radius: 999px;
    padding: 2px 8px;
    font-weight: 500;
  }

  .bd-product__area .product-title {
    margin: 0.65rem 0 0.4rem;
  }

  .bd-product__area .product-title a {
    color: var(--aw-text);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.35;
  }

  .bd-product__area .product-title a:hover {
    color: #2563eb;
  }

  .bd-product__area .product-price {
    border-top: 1px solid var(--aw-line);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }

  .bd-product__area .product-price span {
    color: var(--aw-muted);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .bd-product__area .product-price img {
    max-height: 20px;
    margin-left: 0.5rem;
    vertical-align: middle;
  }

  /* ==== TABLET RESPONSIVE ==== */
  @media (max-width: 992px) {
    .bd-product__area .container {
      max-width: 90%;
    }
    .bd-product__area .product-item {
      border-radius: 12px;
    }
  }

  /* ==== MOBILE RESPONSIVE ==== */
  @media (max-width: 576px) {
    .bd-product__area {
      padding-top: 50px;
      padding-bottom: 50px;
    }

    .bd-product__area .title-area-center .title {
      font-size: 1.4rem;
    }

    .bd-product__area .product-thumb {
      aspect-ratio: 4/3;
    }

    .bd-product__area .product-badge {
      top: 8px;
      left: 8px;
      gap: 4px;
      justify-content: flex-start;
      transform: translateY(0);
    }

    .bd-product__area .product-badge span {
      font-size: 0.65rem;
      padding: 0.2rem 0.45rem;
    }
  }


/* milestone */
.rts-milestones-area{
    --bg: #f6f8fb;
    --line: #e6eef5;
    --dot: #2dd4bf;
    --dot2:#60a5fa;
    --card-bg:#ffffff;
    --card-border:#e5e7eb;
    --text:#0f172a;
    --muted:#475569;
    --title:#0b1220;
    --shadow: 0 10px 30px rgba(12, 20, 29, .12);
    --radius: 18px;
    --gutter-x: 28px;
    --space-y: 40px;
    background:
      radial-gradient(800px 260px at 80% -20%, rgba(96,165,250,.12), transparent 60%),
      var(--bg);
    color: var(--text);
    padding-top: clamp(48px, 6vw, 96px);
    padding-bottom: clamp(48px, 6vw, 96px);
  }

  .rts-milestones-area .title-area-center .title{
    color: var(--title);
    font-weight: 800;
    letter-spacing: .2px;
  }

  .rts-milestones-area .timeline-wrapper{
    position: relative;
    margin: 0 auto;
    padding: 8px 0;
  }

  .rts-milestones-area .timeline-wrapper::before{
    content:"";
    position:absolute;
    top:0; bottom:0; left:50%;
    width: 3px;
    border-radius: 3px;
    background:
      linear-gradient(180deg,
        transparent 0%,
        var(--line) 8%,
        var(--line) 92%,
        transparent 100%);
    transform: translateX(-50%);
  }

  .rts-milestones-area .timeline-item{
    position: relative;
    width: 50%;
    padding: 0 var(--gutter-x);
    margin-bottom: var(--space-y);
  }

  .rts-milestones-area .timeline-item.left  { left: 0; }
  .rts-milestones-area .timeline-item.right { left: 50%; }

  .rts-milestones-area .timeline-item::before{
    content:"";
    position:absolute;
    top: 34px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dot), var(--dot2));
    box-shadow: 0 0 0 6px rgba(96,165,250,.18);
    z-index: 2;
  }
  .rts-milestones-area .timeline-item.left::before  { right: -7px; }
  .rts-milestones-area .timeline-item.right::before { left:  -7px; }

  .rts-milestones-area .timeline-content{
    position:relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px 22px 24px;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }

  .rts-milestones-area .timeline-item.left  .timeline-content::before,
  .rts-milestones-area .timeline-item.right .timeline-content::before{
    content:"";
    position:absolute;
    top: 40px;
    width: 26px; height: 2px;
    background: linear-gradient(90deg, var(--dot2), var(--dot));
  }
  .rts-milestones-area .timeline-item.left  .timeline-content::before{ right: -26px; }
  .rts-milestones-area .timeline-item.right .timeline-content::before{ left:  -26px; }

  .rts-milestones-area .timeline-content:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(12, 20, 29, .16);
    border-color:#dbe3ea;
  }

  .rts-milestones-area .timeline-year{
    position:absolute;
    top:4px; left: 18px;
    z-index:3;
  }
  .rts-milestones-area .timeline-year span{
    display:inline-block;
    padding:.35rem .7rem;
    font-weight:800;
    font-size:.78rem;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:#06202a;
    background: linear-gradient(135deg, var(--dot), var(--dot2));
    border-radius:999px;
    box-shadow: 0 6px 16px rgba(96,165,250,.28);
  }

  .rts-milestones-area .timeline-image{
    border-radius: 12px;
    overflow: hidden;
    border:1px solid var(--card-border);
    margin-bottom: .5rem;
  }
  .rts-milestones-area .timeline-image img{
    display:block; width:100%; height:auto;
    transform: translateZ(0);
    transition: transform .28s ease;
  }
  .rts-milestones-area .timeline-content:hover .timeline-image img{
    transform: scale(1.015);
  }

  .rts-milestones-area .timeline-title{
    margin: .25rem 0 .25rem;
    font-weight: 800;
    color: var(--title);
    font-size: clamp(1.05rem, 2.1vw, 1.25rem);
    line-height: 1.25;
    text-decoration: none;
  }
  .rts-milestones-area .timeline-desc{
    color: var(--muted);
    margin: .35rem 0 0;
    line-height: 1.7;
    font-size: .98rem;
  }

  .rts-milestones-area .timeline-item.left  { margin-top: 0; }
  .rts-milestones-area .timeline-item.right { margin-top: 20px; }

  @media (max-width: 991.98px){
    .rts-milestones-area{ --gutter-x: 22px; --space-y: 34px; }
  }

  @media (max-width: 767.98px){
    .rts-milestones-area .timeline-wrapper::before{
      left: 22px; transform: none;
    }
    .rts-milestones-area .timeline-item{
      left: 0 !important;
      width: 100%;
      padding-left: 56px;
      padding-right: 0;
      margin-bottom: 28px;
    }
    .rts-milestones-area .timeline-item::before{
      left: 15px; right: auto;
    }
    .rts-milestones-area .timeline-content::before{
      left: -26px !important;
      right: auto !important;
    }
    .rts-milestones-area .timeline-year{ left: 18px; }
  }

  @media (max-width: 575.98px){
    .rts-milestones-area .timeline-content{ padding: 18px; }
    .rts-milestones-area .timeline-title{ font-size: 1.06rem; }
  }

  @media (prefers-color-scheme: dark){
    .rts-milestones-area{
      --bg:#0f172a;
      --line:#283344;
      --card-bg: rgba(17,24,39,.8);
      --card-border:#263447;
      --text:#e5e7eb;
      --muted:#cbd5e1;
      --title:#f8fafc;
      background:
        radial-gradient(900px 420px at 100% 0%, rgba(96,165,250,.12), transparent 60%),
        #0f172a;
    }
    .rts-milestones-area .timeline-content:hover{
      border-color:#33465f;
    }
  }

  /* visi-misi */
  .rts-visi-misi-area {
    --vm-bg: #0f172a;          /* slate-900 */
    --vm-card: #111827;        /* gray-900 */
    --vm-muted: #94a3b8;       /* slate-400 */
    --vm-text: #e5e7eb;        /* gray-200 */
    --vm-accent: #22c55e;      /* green-500 */
    --vm-accent-2: #60a5fa;    /* blue-400 */
    --vm-border: #1f2937;      /* gray-800 */
    --vm-shadow: 0 10px 30px rgba(0,0,0,.35);
    --vm-radius: 18px;
    --vm-gap: 2rem;
    --vm-gap-sm: 1.25rem;
    --vm-badge-bg: rgba(255,255,255,.06);
    --vm-badge-text: #e5e7eb;
    background: radial-gradient(1200px 600px at 10% -10%, #1f2937 0%, transparent 50%) ,
                radial-gradient(1000px 500px at 110% 10%, #0b1220 0%, transparent 55%),
                var(--vm-bg);
    padding-top: clamp(48px, 6vw, 96px);
    padding-bottom: clamp(48px, 6vw, 96px);
    color: var(--vm-text);
  }

  .rts-visi-misi-area .visi-misi-container {
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    box-shadow: var(--vm-shadow);
    padding: clamp(20px, 3.5vw, 48px);
    position: relative;
    overflow: hidden;
  }

  .rts-visi-misi-area .visi-misi-container::after {
    content: "";
    position: absolute;
    inset: -40% -10% auto auto;
    width: 380px; height: 380px;
    background: radial-gradient(closest-side, rgba(96,165,250,.12), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
  }

  .rts-visi-misi-area .section-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--vm-badge-bg);
    color: var(--vm-badge-text);
    border: 1px solid var(--vm-border);
    padding: .4rem .9rem;
    border-radius: 999px;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
  }

  .rts-visi-misi-area .section-title,
  .rts-visi-misi-area .visi-title {
    margin: .75rem 0 0;
    line-height: 1.2;
    letter-spacing: .2px;
  }

  .rts-visi-misi-area .visi-section {
    margin-bottom: var(--vm-gap);
  }
  .rts-visi-misi-area .visi-title {
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    font-weight: 700;
    color: #f8fafc;
  }

  .rts-visi-misi-area .section-title {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: .25rem;
  }

  .rts-visi-misi-area .misi-section {
    margin-bottom: var(--vm-gap);
  }

  .rts-visi-misi-area .misi-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--vm-gap-sm);
  }

  .rts-visi-misi-area .misi-item {
    background: rgba(255,255,255,.02);
    border: 1px solid var(--vm-border);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
  }

  .rts-visi-misi-area .misi-item:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.03);
    border-color: #263447;
  }

  .rts-visi-misi-area .misi-number-badge {
    --size: 40px;
    min-width: var(--size);
    height: var(--size);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #0b1220;
    background: linear-gradient(135deg, var(--vm-accent), var(--vm-accent-2));
    box-shadow: 0 6px 18px rgba(96,165,250,.28);
  }

  .rts-visi-misi-area .misi-text p {
    margin: 0;
    color: #cbd5e1;
    font-size: clamp(.95rem, 1.5vw, 1.05rem);
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .rts-visi-misi-area .misi-list {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (min-width: 1200px) {
    .rts-visi-misi-area .misi-list {
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem 1.25rem;
    }
  }

  .rts-visi-misi-area .nilai-section {
    margin-bottom: var(--vm-gap);
  }

  .rts-visi-misi-area .nilai-box {
    height: 100%;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--vm-border);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    transition: border-color .25s ease, transform .25s ease;
  }
  .rts-visi-misi-area .nilai-box:hover {
    border-color: #2b3a50;
    transform: translateY(-2px);
  }

  .rts-visi-misi-area .nilai-box h5 {
    font-weight: 700;
    margin: 0 0 .4rem;
    color: #e2e8f0; /* slate-200 */
    font-size: clamp(1rem, 1.8vw, 1.1rem);
  }
  .rts-visi-misi-area .nilai-box p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
    font-size: .98rem;
  }

  .rts-visi-misi-area .filosofi-section {
    margin-top: var(--vm-gap);
  }
  .rts-visi-misi-area .filosofi-quote-box {
    position: relative;
    border: 1px dashed #273244;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    background:
      radial-gradient(400px 120px at 50% 0%, rgba(34,197,94,.08), transparent 70%),
      rgba(255,255,255,.02);
  }
  .rts-visi-misi-area .filosofi-quote-box p {
    font-size: clamp(1rem, 1.9vw, 1.15rem);
    line-height: 1.7;
    color: #dbeafe;
  }

  .rts-visi-misi-area .empty-state {
    padding: 3rem 1rem 2.25rem;
    color: #cbd5e1;
  }
  .rts-visi-misi-area .empty-state h3 {
    color: #e5e7eb;
    font-weight: 700;
  }
  .rts-visi-misi-area .empty-state p {
    color: #a8b2c1;
    line-height: 1.7;
  }

  @media (max-width: 991.98px) {
    .rts-visi-misi-area .visi-misi-container { padding: 28px; }
  }

  @media (max-width: 767.98px) {
    .rts-visi-misi-area .misi-item { padding: .9rem .95rem; }
    .rts-visi-misi-area .misi-number-badge { --size: 36px; border-radius: 10px; }
    .rts-visi-misi-area .section-badge { font-size: .75rem; }
  }

  @media (max-width: 575.98px) {
    .rts-visi-misi-area { --vm-gap: 1.5rem; --vm-gap-sm: 1rem; }
    .rts-visi-misi-area .visi-misi-container { padding: 22px; }
    .rts-visi-misi-area .misi-item { flex-direction: row; }
    .rts-visi-misi-area .nilai-box { padding: 1rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    .rts-visi-misi-area .misi-item,
    .rts-visi-misi-area .nilai-box {
      transition: none;
    }
  }

  /* service */

:root {
    --primary-color: #00b4d8;
    --secondary-color: #0077b6;
    --accent-color: #ff6b6b;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --border-radius: 12px;
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.postbox__area{
    --bg: #f7fafc;
    --surface: #ffffff;
    --muted-surface:#f4f7fb;
    --text:#0f172a;
    --muted:#475569;
    --primary:#14b8a6;   /* teal */
    --primary-2:#60a5fa; /* blue */
    --accent:#f59e0b;    /* orange */
    --success:#22c55e;
    --danger:#ef4444;
    --border:#e5e7eb;
    --line:#eef2f7;
    --radius: 16px;
    --shadow-sm: 0 4px 16px rgba(15,23,42,.08);
    --shadow-md: 0 10px 30px rgba(15,23,42,.12);
}


.breadcrumb__area{
    position: relative;
    overflow: hidden;
    padding-block: clamp(60px, 8vw, 120px);
    color: #fff;
}

.breadcrumb__area .breadcrumb__thumb{
    position:absolute;
    inset:0;
    background: center/cover no-repeat;
    filter: none;
    opacity: 0.15;
    z-index: -1;
}

.breadcrumb__area::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      radial-gradient(800px 400px at 85% -10%, rgba(0,168,204,0.35), transparent 70%),
      linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(0,168,204,0.85) 70%, rgba(0,130,160,1) 100%);
    pointer-events: none;
    filter: brightness(1.05) saturate(1.05);
  }



.breadcrumb__wrapper{
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease;
}

.breadcrumb__title{
    font-weight: 800;
    font-size: clamp(1.6rem, 4.4vw, 2.6rem);
    margin-bottom: 1rem;
    color: #000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb__menu ul{
    display:flex;
    gap:.75rem;
    justify-content:center;
    flex-wrap:wrap;
    margin:0;
    padding:0;
    list-style:none;
}

.breadcrumb__menu a{
    color:#000;
    text-decoration:none;
    transition: var(--transition);
}

.breadcrumb__menu li{ color:#000; }

.breadcrumb__menu li:not(:last-child)::after{
    content:"/";
    margin:0 .5rem;
    opacity:.65;
}

.breadcrumb__menu li span a:hover {
    color: var(--accent-color);
}

.postbox__area{
    background: var(--bg);
    padding-block: clamp(40px, 6vw, 80px);
}

.postbox__area .container{ max-width: 1220px; }

@media (min-width: 992px){
    .sidebar__wrapper{ position: sticky; top: 24px; }
}

.postbox__features {
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.postbox__features-title{
    font-weight:800;
    color:var(--primary-color);
    margin-bottom: .9rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.postbox__features p {
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.postbox__features i.fa-newspaper {
    opacity: 0.3;
}

.tagcloud{
    display:flex;
    flex-wrap:wrap;
    gap: .65rem;
}

.tagcloud a{
    display:inline-flex;
    align-items: center;
    gap: 0.5rem;
    border:1px solid var(--border);
    background:#fff;
    color:var(--text);
    padding:.5rem .9rem;
    border-radius:999px;
    font-size:.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.tagcloud a:hover{
    transform: translateY(-2px);
    border-color:#cfe0f1;
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}

.tagcloud a.active{
    background: linear-gradient(135deg,var(--primary),var(--primary-2));
    color:#04202b;
    border-color:transparent;
}

.tagcloud a i {
    font-size: 0.85rem;
}

.postbox__wrapper{
    background: #ffffff;
    border: 0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.postbox__wrapper:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.postbox__item{
    height:100%;
    background: var(--surface);
    border:1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow:hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease;
}

.postbox__item:hover{
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color:#dbe3ea;
}

.postbox__item:nth-child(1) { animation-delay: 0.1s; }
.postbox__item:nth-child(2) { animation-delay: 0.2s; }
.postbox__item:nth-child(3) { animation-delay: 0.3s; }
.postbox__item:nth-child(4) { animation-delay: 0.4s; }

.postbox__thumb{
    position:relative;
    overflow:hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.postbox__thumb a{ display:block; position:relative; }

.postbox__thumb a::before{
    content:""; display:block; padding-top: 60%;
}

.postbox__thumb img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}

.postbox__item:hover .postbox__thumb img{ transform: scale(1.1); }

.postbox__tag{
    z-index:2;
    color:#06202a;
    font-weight:700;
    font-size:.78rem;
    padding:.28rem .55rem;
    border-radius:999px;
    box-shadow:0 6px 16px rgba(0,0,0,.12);
}

.postbox__tag[style*="#ff6b6b"]{ background: linear-gradient(135deg, #fda4af, #fdba74)!important; }
.postbox__tag[style*="#4ecb71"]{ background: linear-gradient(135deg, #86efac, #60a5fa)!important; }

.post__tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
    animation: pulse 2s infinite;
}

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

.postbox__content{
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.postbox__content.text-center .fa-folder-open{ opacity:.7; }
.postbox__content.text-center p{ color: var(--muted); line-height:1.7; }

.postbox__meta{
    display:flex;
    flex-wrap:wrap;
    gap:.75rem 1.1rem;
    color:#0b2131;
    font-size:.9rem;
    align-items:center;
    margin-bottom: 1rem;
}

.postbox__meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray-color);
    font-size: 0.85rem;
}

.postbox__meta svg, .postbox__meta i{
    margin-right:.5rem;
    color: var(--primary-color);
}

.postbox__meta + .postbox__meta{ margin-top:.25rem; }

.postbox__meta.mb-20{
    border-top:1px dashed var(--line);
    padding-top:.6rem;
    margin-top: 1rem;
}

.postbox__title{
    font-weight:800;
    color:var(--text);
    margin:.6rem 0 .6rem;
    line-height:1.15;
    font-size: 2rem;
}

.postbox__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-title span{
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 800;
    color:var(--text);
    line-height:1.25;
    display:inline-block;
    margin-bottom: .5rem;
}

.postbox__text p{
    color:var(--muted);
    line-height:1.85;
    margin:0 0 .9rem 0;
    font-size: .98rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.postbox__read-more{
    margin-top:.8rem;
}

.postbox__read-more .tp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.postbox__read-more .tp-btn:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

.postbox__read-more .tp-btn span {
    display: flex;
    align-items: center;
}

.tp-btn{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:.55rem .9rem;
    border-radius:10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color:#051a24;
    font-weight:700;
    border:0;
    text-decoration:none;
    box-shadow: 0 8px 18px rgba(96,165,250,.28);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.tp-btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(96,165,250,.32);
}

.tp-btn svg, .button svg {
    width: 18px;
    height: 16px;
    transition: transform 0.3s ease;
}

.tp-btn:hover svg, .button:hover svg {
    transform: translateX(5px);
}

.tp-btn-border {
    background: transparent;
    color: #00a8cc;
    border: 2px solid #00a8cc;
    box-shadow: none;
}

.tp-btn-border:hover {
    background: #00a8cc;
    color: #ffffff;
}

.sidebar__wrapper {
    position: sticky;
    top: 100px;
}

.sidebar__widget{
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow:hidden;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.sidebar__widget + .sidebar__widget{ margin-top: 22px; }

.sidebar__widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sidebar__widget-title{
    font-weight:800;
    color:var(--text);
    margin-bottom: 1rem;
    font-size: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #00a8cc;
    position: relative;
}

.sidebar__widget-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #4ecb71;
    border-radius: 2px;
}

.sidebar__widget-content ul{
    margin:0;
    padding:0;
    list-style:none;
}

.sidebar__widget-content li + li{ margin-top:.6rem; }

.sidebar__widget-content a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:.75rem;
    padding:.8rem 1rem;
    border-radius:10px;
    color:#000;
    text-decoration:none;
    border:1px solid transparent;
    background: var(--light-color);
    font-weight: 500;
    transition: background .2s ease, border-color .2s ease, transform .2s ease, padding-left .2s ease;
}

.sidebar__widget-content a:hover{
    background: var(--muted-surface);
    border-color: var(--border);
    padding-left: 1.5rem;
}

.sidebar__widget-content a.active{
    background: linear-gradient(135deg, #e0f2fe, #dcfce7);
    border-color:#cfe0f1;
    color: #1E90FF;
}

.sidebar__widget-content a span{
    color:#0b2131;
    font-weight:700;
}

.sidebar__widget-content a i {
    margin-right: 0.6rem;
}

.sidebar__author{
    background: linear-gradient(180deg, #f1f5f9, #fff);
    border:1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
}

.sidebar__author-title{
    font-weight:800;
    font-size: 18px;
}

.sidebar__post .rc__post{
    gap:14px;
    padding:12px;
    border-radius:10px;
    transition: background .2s ease;
}

.sidebar__post .rc__post:hover{ background: var(--muted-surface); }

.rc__post {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
}

.rc__post:last-child {
    border-bottom: none;
}

.rc__post-thumb{
    width:70px;
    height:70px;
    flex:0 0 70px;
    border-radius:10px;
    overflow:hidden;
}

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

.rc__post-content {
    flex: 1;
}

.rc__post-title{
    margin:0;
    font-size:.95rem;
    line-height:1.3;
    font-weight: 600;
    color: var(--dark-color);
}

.rc__post-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.rc__meta{
    font-size:.8rem;
    color:var(--muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.sidebar__widget .tagcloud{ gap:.5rem; }

.sidebar__widget .tagcloud a{
    background: #eef6ff;
    border:1px solid #dbeafe;
    color:#0b2131;
    padding:.35rem .7rem;
    border-radius:999px;
    font-size:.88rem;
}

.sidebar__widget .tagcloud a:hover{ background:#e0f2fe; }

.sidebar__banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sidebar__banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

.banner__icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.sidebar__banner h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.sidebar__banner p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.banner__btn .tp-btn {
    background: #fff;
    color: var(--primary-color);
    padding: 0.9rem 1.8rem;
}

.banner__btn .tp-btn:hover {
    background: var(--dark-color);
    color: #fff;
}

.postbox__comment-form {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.postbox__comment-input input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-color);
}

.postbox__comment-input input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.postbox__comment-input input::placeholder {
    color: #adb5bd;
}

.postbox__tag-wrapper {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.basic-pagination {
    margin-top: 2rem;
}

.basic-pagination nav ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.basic-pagination nav ul li {
    margin: 0;
}

.basic-pagination nav ul li a,
.basic-pagination nav ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 0.8rem;
    background: #fff;
    color: var(--gray-color);
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.basic-pagination nav ul li a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.basic-pagination nav ul li.active span {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.basic-pagination nav ul li.disabled span {
    opacity: 0.4;
    cursor: not-allowed;
}

.schedule-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00a8cc 0%, #00CED1 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    border-color: #00a8cc;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.2);
}

.schedule-item:hover::before {
    transform: scaleY(1);
}

.schedule-day {
    font-size: 16px;
    font-weight: 700;
    color: #00a8cc;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-day i {
    font-size: 18px;
}

.schedule-time {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.postbox__quote blockquote {
    margin: 25px 0;
    padding: 0;
    border: 0;
}

.postbox__quote blockquote div {
    background: #fff3cd;
    padding: 24px;
    border-radius: 12px;
    border-left: 6px solid #ffc107;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
    position: relative;
}

.postbox__quote blockquote div::before {
    content: '⚠️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    opacity: 0.3;
}

.postbox__quote blockquote div[style*="background: #d1ecf1"] {
    background: linear-gradient(135deg, #d1ecf1 0%, #e0f2fe 100%) !important;
    border-left: 6px solid #0dcaf0 !important;
    box-shadow: 0 2px 8px rgba(13, 202, 240, 0.1);
}

.postbox__quote blockquote div[style*="background: #d1ecf1"]::before {
    content: 'ℹ️';
}

.postbox__quote ul {
    margin: 0;
    padding-left: 25px;
}

.postbox__quote ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 15px #00BFFF;
    transition: all 0.3s ease;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #00BFFF;
    background: linear-gradient(135deg, #00CED1 0%, #00a8cc 100%);
}

.procedure-steps {
    counter-reset: step-counter;
}

.procedure-step {
    position: relative;
    padding-left: 75px;
    margin-bottom: 30px;
    padding-top: 5px;
}

.procedure-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 4px 15px #00BFFF;
    border: 4px solid #ffffff;
    outline: 2px solid #00a8cc;
}

.procedure-step::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 55px;
    width: 3px;
    height: calc(100% - 35px);
    background: linear-gradient(180deg, #00a8cc 0%, transparent 100%);
}

.procedure-step:last-child::after {
    display: none;
}

.procedure-step h5 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.procedure-step p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

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

.features__list ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.features__list ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4ecb71 0%, #22c55e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.features__list ul li:hover {
    color: #1a1a1a;
    transform: translateX(5px);
}

.postbox__features-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.postbox__features-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.postbox__features-thumb:hover::after {
    opacity: 1;
}

.postbox__features-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.postbox__features-thumb:hover img {
    transform: scale(1.08);
}

.postbox__comment-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.postbox__comment-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #00a8cc;
}

.postbox__comment-rating i {
    color: #ffc107;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.postbox__comment-rating i:hover {
    transform: scale(1.2);
}

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

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

@media (min-width: 1200px){
    .postbox__area .col-lg-6{ width: 50%; }
}

@media (max-width: 1199.98px){
    .postbox__area .container{ max-width: 92%; }
}

@media (max-width: 1199px) {
    .breadcrumb__title {
        font-size: 2rem;
    }

    .postbox__wrapper {
        padding: 2rem;
    }

    .sidebar__wrapper {
        top: 80px;
    }
}

@media (max-width: 991.98px){
    .postbox__item{ border-radius: 14px; }
    .sidebar__wrapper{ position: static; }
    .postbox__content { padding: 18px; }
}

@media (max-width: 991px) {
    .breadcrumb__area {
        padding: 60px 0 !important;
    }

    .breadcrumb__title {
        font-size: 1.75rem;
    }

    .postbox__wrapper {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .postbox__features {
        padding: 1.5rem;
    }

    .postbox__title {
        font-size: 1.5rem;
    }

    .postbox__thumb img {
        height: 200px;
    }

    .section-space {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px){
    .postbox__thumb a::before{ padding-top: 65%; }
    .breadcrumb__title{ font-size: clamp(1.4rem, 6vw, 2rem); }
}

@media (max-width: 767px) {
    .postbox__wrapper {
        padding: 25px 20px;
    }

    .sidebar__widget {
        padding: 20px;
    }

    .procedure-step {
        padding-left: 55px;
    }

    .procedure-step::before {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .procedure-step::after {
        left: 19px;
    }

    .schedule-item {
        padding: 15px;
    }

    .postbox__features .p-3 {
        padding: 18px;
    }

    .postbox__features .p-3 i {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .breadcrumb__title {
        font-size: 1.5rem;
    }

    .postbox__wrapper {
        padding: 1.25rem;
    }

    .postbox__features {
        padding: 1.25rem;
    }

    .postbox__title {
        font-size: 1.3rem;
    }

    .postbox__comment-input input {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .tagcloud {
        gap: 0.5rem;
    }

    .tagcloud a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .postbox__item {
        margin-bottom: 1.5rem;
    }

    .postbox__thumb img {
        height: 180px;
    }

    .postbox__content {
        padding: 1.25rem;
    }

    .postbox__content h3 {
        font-size: 1.1rem;
    }

    .postbox__text p {
        font-size: 0.9rem;
    }

    .sidebar__widget {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .sidebar__widget-title {
        font-size: 1.2rem;
    }

    .rc__post-thumb img {
        width: 70px;
        height: 70px;
    }

    .rc__post-title {
        font-size: 0.9rem;
    }

    .basic-pagination nav ul {
        gap: 0.3rem;
    }

    .basic-pagination nav ul li a,
    .basic-pagination nav ul li span {
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .section-space {
        padding: 50px 0;
    }
}

@media (max-width: 575.98px){
    .sidebar__widget{ padding: 16px; }
    .postbox__content{ padding: 14px; }
    .tp-btn{ width:100%; justify-content:center; }
    .tagcloud a{ padding: .42rem .7rem; font-size:.9rem; }
}

@media (max-width: 575px) {
    .breadcrumb__area {
        padding: 50px 0 !important;
    }

    .breadcrumb__title {
        font-size: 1.3rem;
    }

    .breadcrumb__menu ul {
        font-size: 0.9rem;
    }

    .postbox__wrapper {
        padding: 1rem;
    }

    .postbox__features {
        padding: 1rem;
    }

    .postbox__features-title {
        font-size: 0.85rem;
    }

    .postbox__title {
        font-size: 1.15rem;
    }

    .postbox__features p {
        font-size: 0.9rem;
    }

    .postbox__comment-form {
        padding: 1rem;
    }

    .postbox__tag-wrapper {
        padding: 1rem;
    }

    .tagcloud a {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
    }

    .postbox__thumb img {
        height: 160px;
    }

    .postbox__content {
        padding: 1rem;
    }

    .postbox__meta {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .postbox__content h3 {
        font-size: 1rem;
    }

    .postbox__text p {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }

    .postbox__read-more .tp-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .sidebar__widget {
        padding: 1.25rem;
    }

    .sidebar__widget-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.8rem;
    }

    .sidebar__widget-content ul li a {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }

    .sidebar__widget-content ul li a:hover,
    .sidebar__widget-content ul li a.active {
        padding-left: 1.2rem;
    }

    .rc__post {
        padding: 0.8rem 0;
    }

    .rc__post-thumb img {
        width: 60px;
        height: 60px;
    }

    .rc__post-title {
        font-size: 0.85rem;
    }

    .sidebar__banner {
        padding: 1.5rem;
    }

    .banner__icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .sidebar__banner h4 {
        font-size: 1.25rem;
    }

    .sidebar__banner p {
        font-size: 0.9rem;
    }

    .banner__btn .tp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .basic-pagination nav ul li a,
    .basic-pagination nav ul li span {
        min-width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .section-space {
        padding: 40px 0;
    }
}

@media (prefers-color-scheme: dark){
    .postbox__area{
      --bg:#0f172a; --surface:rgba(17,24,39,.92);
      --muted-surface:#111827; --text:#e5e7eb; --muted:#cbd5e1;
      --border:#233144; --line:#223044;
    }
    .breadcrumb__menu a{ color:#dbeafe; }
    .tagcloud a{ background:#0f1b28; border-color:#1e2a3a; color:#e5e7eb; }
    .tagcloud a.active{ color:#05242c; }
    .sidebar__widget-content a span{ color:#e5e7eb; }
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.transition-3 {
    transition: var(--transition);
}

.postbox__comment-input input:focus-visible,
.tp-btn:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media print {
    .sidebar__wrapper,
    .breadcrumb__area,
    .postbox__read-more,
    .basic-pagination {
        display: none;
    }

    .postbox__wrapper {
        box-shadow: none;
    }
}


/* doctor-index */
.department-filter-pills .filter-pill { display:inline-flex; align-items:center; gap:.5rem; padding:.45rem .75rem; border-radius:999px; background:#fff; border:1px solid #e6eefc; text-decoration:none; color:inherit; }
.department-filter-pills .filter-pill.active { background: linear-gradient(90deg,#0d6efd,#5569ff); color:#fff; }
.pill-badge { background: rgba(13,110,253,0.08); padding: .15rem .4rem; border-radius:8px; font-size:.82rem; margin-left:.5rem; }
.therapist-card { transition: transform .15s ease, opacity .15s ease; }
.therapist-card.hidden { opacity:.12; transform:scale(.98); pointer-events:none; }

.doctor-area form {
background: #ffffff;
padding: 25px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
border: 2px solid #f0f0f0;
transition: all 0.3s ease;
}

.doctor-area form:hover {
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
border-color: #00a8cc;
}

.doctor-area .form-control {
padding: 14px 20px;
border: 2px solid #e5e7eb;
border-radius: 12px;
font-size: 15px;
transition: all 0.3s ease;
background: #f8f9fa;
}

.doctor-area .form-control:focus {
border-color: #00a8cc;
box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.1);
background: #ffffff;
outline: none;
}

.doctor-area .form-control::placeholder {
color: #9ca3af;
}

.doctor-area .form-select {
padding: 14px 20px;
border: 2px solid #e5e7eb;
border-radius: 12px;
font-size: 15px;
transition: all 0.3s ease;
background: #f8f9fa;
cursor: pointer;
}

.doctor-area .form-select:focus {
border-color: #00a8cc;
box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.1);
background: #ffffff;
outline: none;
}

/* Search button */
.doctor-area form .tp-btn {
padding: 14px 28px;
background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
border: none;
border-radius: 12px;
color: #ffffff;
font-weight: 700;
font-size: 15px;
display: inline-flex;
align-items: center;
gap: 10px;
justify-content: center;
transition: all 0.3s ease;
box-shadow: 0 4px 15px #00BFFF;
}

.doctor-area form .tp-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px #00BFFF;
background: linear-gradient(180deg, #66D5E8 40%, #00A8CC 70%);
}

.doctor-area form .tp-btn i {
font-size: 16px;
}


.department-filter-pills {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 30px;
}

.filter-pill {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 20px;
border-radius: 50px;
background: #ffffff;
border: 2px solid #e5e7eb;
text-decoration: none;
color: #555;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter-pill:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
border-color: #00a8cc;
color: #00a8cc;
background: #fff5f0;
}

.filter-pill.active {
background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
color: #ffffff;
border-color: transparent;
box-shadow: 0 4px 15px #00BFFF;
}

.filter-pill i {
font-size: 16px;
}

.pill-badge {
background: rgba(255, 255, 255, 0.25);
padding: 3px 10px;
border-radius: 12px;
font-size: 12px;
font-weight: 700;
margin-left: 6px;
}

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

.doctor-item-2 {
background: #ffffff;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
transition: all 0.4s ease;
border: 2px solid #f0f0f0;
position: relative;
}

.doctor-item-2:hover {
transform: translateY(-10px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
border-color: #00a8cc;
}

/* Featured badge */
.featured-doctor-badge {
position: absolute;
top: 20px;
right: 20px;
background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
color: #ffffff;
padding: 8px 16px;
border-radius: 25px;
font-size: 13px;
font-weight: 700;
z-index: 10;
box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
display: flex;
align-items: center;
gap: 6px;
animation: pulse-badge 2s ease-in-out infinite;
}

.featured-doctor-badge i {
font-size: 14px;
animation: rotate-star 3s linear infinite;
}

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

@keyframes rotate-star {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.doctor-thumb-2 {
position: relative;
overflow: hidden;
height: 350px;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.doctor-thumb-2::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
opacity: 0;
transition: opacity 0.4s ease;
}

.doctor-item-2:hover .doctor-thumb-2::after {
opacity: 1;
}

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

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

.doctor-card {
padding: 25px;
text-align: center;
background: #ffffff;
}

.doctor-card h4.doctor-title {
font-size: 20px;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 8px;
line-height: 1.3;
}

.doctor-card h4.doctor-title span {
color: #1a1a1a;
transition: color 0.3s ease;
}

.doctor-item-2:hover .doctor-card h4.doctor-title span {
color: #00a8cc;
}

.doctor-card > span {
display: block;
color: #666;
font-size: 15px;
font-weight: 500;
margin-bottom: 8px;
}

.doctor-card .sub-specialty {
color: #999;
font-size: 14px;
font-style: italic;
margin-top: 5px;
margin-bottom: 0;
}

.doctor-card-2 {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
backdrop-filter: blur(10px);
padding: 30px;
text-align: center;
transform: translateY(100%);
transition: transform 0.4s ease;
border-top: 3px solid #00a8cc;
}

.doctor-item-2:hover .doctor-card-2 {
transform: translateY(0);
}

.doctor-card-2 h4.doctor-title {
font-size: 20px;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 8px;
}

.doctor-card-2 h4.doctor-title span {
color: #00a8cc;
}

.doctor-card-2 > span {
display: block;
color: #666;
font-size: 15px;
font-weight: 500;
margin-bottom: 12px;
}

.doctor-department {
margin: 12px 0;
}

.dept-tag {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 14px;
background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
color: #1976d2;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
border: 1px solid #90caf9;
}

.doctor-experience {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
color: #7b1fa2;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
border: 1px solid #ce93d8;
}

.doctor-experience i {
font-size: 16px;
}

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

.doctor-actions .tp-btn-sm {
padding: 12px 24px;
background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
border: none;
border-radius: 25px;
color: #ffffff;
font-weight: 700;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 10px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 15px #00BFFF;
}

.doctor-actions .tp-btn-sm:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px #00BFFF;
background: linear-gradient(180deg, #66D5E8 40%, #00A8CC 70%);
}

.doctor-actions .tp-btn-sm svg {
width: 16px;
height: 14px;
transition: transform 0.3s ease;
}

.doctor-actions .tp-btn-sm:hover svg {
transform: translateX(5px);
}

.no-doctors-found {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
padding: 80px 40px;
border-radius: 20px;
border: 2px dashed #d1d5db;
text-align: center;
}

.no-doctors-found i {
font-size: 80px;
color: #d1d5db;
margin-bottom: 25px;
display: block;
}

.no-doctors-found h4 {
font-size: 24px;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 12px;
}

.no-doctors-found p {
color: #666;
font-size: 16px;
margin-bottom: 25px;
}

.no-doctors-found .tp-btn {
padding: 14px 32px;
background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
border: none;
border-radius: 25px;
color: #ffffff;
font-weight: 700;
font-size: 15px;
display: inline-flex;
align-items: center;
gap: 10px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 15px #00BFFF;
}

.no-doctors-found .tp-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px #00BFFF;
}

.pagination__wrapper {
margin-top: 50px;
}

.bd-basic__pagination {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}

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

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

.bd-basic__pagination .page-link {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 45px;
height: 45px;
padding: 10px 16px;
background: #ffffff;
border: 2px solid #e5e7eb;
border-radius: 10px;
color: #555;
font-weight: 600;
font-size: 15px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bd-basic__pagination .page-link:hover {
background: #fff5f0;
border-color: #00a8cc;
color: #00a8cc;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(255, 69, 0, 0.15);
}

.bd-basic__pagination .page-item.active .page-link {
background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
border-color: transparent;
color: #ffffff;
box-shadow: 0 4px 15px #00BFFF;
}

.bd-basic__pagination .page-item.disabled .page-link {
background: #f3f4f6;
border-color: #e5e7eb;
color: #9ca3af;
cursor: not-allowed;
opacity: 0.5;
}


.section-title {
margin-bottom: 50px;
}

.section-title .sub-style {
margin-bottom: 15px;
}

.section-title .sub-title {
display: inline-block;
color: #00a8cc;
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
padding: 8px 20px;
background: rgba(255, 69, 0, 0.1);
border-radius: 25px;
margin-bottom: 0;
}

.section-title h2 {
font-size: clamp(28px, 4vw, 42px);
font-weight: 800;
color: #1a1a1a;
margin-bottom: 15px;
line-height: 1.2;
}

.section-title p {
font-size: 17px;
color: #666;
line-height: 1.6;
max-width: 700px;
margin: 0 auto;
}


@media (max-width: 1199px) {
.doctor-thumb-2 {
    height: 320px;
}
}

@media (max-width: 991px) {
.doctor-thumb-2 {
    height: 300px;
}

.doctor-card, .doctor-card-2 {
    padding: 20px;
}
}

@media (max-width: 767px) {
.doctor-area form {
    padding: 20px;
}

.doctor-area form > div {
    width: 100% !important;
    min-width: 100% !important;
    flex: 1 1 100% !important;
}

.filter-pill {
    flex: 1 1 auto;
    justify-content: center;
}

.doctor-thumb-2 {
    height: 350px;
}

.featured-doctor-badge {
    top: 15px;
    right: 15px;
    font-size: 12px;
    padding: 6px 12px;
}

.section-title h2 {
    font-size: 28px;
}

.section-title p {
    font-size: 15px;
}
}

@media (max-width: 575px) {
.doctor-thumb-2 {
    height: 280px;
}

.doctor-card h4.doctor-title,
.doctor-card-2 h4.doctor-title {
    font-size: 18px;
}

.no-doctors-found {
    padding: 60px 30px;
}

.no-doctors-found i {
    font-size: 60px;
}

.no-doctors-found h4 {
    font-size: 20px;
}
}

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

.doctor-item-2 {
animation: fadeInUp 0.6s ease both;
}

.doctor-item-2:nth-child(1) { animation-delay: 0.1s; }
.doctor-item-2:nth-child(2) { animation-delay: 0.2s; }
.doctor-item-2:nth-child(3) { animation-delay: 0.3s; }
.doctor-item-2:nth-child(4) { animation-delay: 0.4s; }
.doctor-item-2:nth-child(5) { animation-delay: 0.5s; }
.doctor-item-2:nth-child(6) { animation-delay: 0.6s; }



.therapist-card.hidden {
opacity: 0.2;
transform: scale(0.95);
pointer-events: none;
transition: all 0.3s ease;
}


/* doctor-schedule */

.schedule-info-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.schedule-info-box h3 {
    color: #1f2937;
    font-weight: 600;
}

.schedule-info-box p {
    color: #6b7280;
    font-size: 15px;
}

.schedule-legend {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.legend-box {
    width: 30px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.legend-text {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.schedule-table-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
}

.schedule-table thead {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
}

.schedule-table thead th {
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: white;
    border: none;
    position: sticky;
    top: 0;
    z-index: 10;
}

.schedule-table thead th.time-column {
    text-align: left;
    padding-left: 25px;
}

.schedule-table thead th.time-column .th-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule-table thead th.time-column i {
    font-size: 18px;
}

.schedule-table tbody tr {
    transition: background 0.2s ease;
}

.schedule-table tbody tr:hover {
    background: #f9fafb;
}

.schedule-table tbody td {
    padding: 20px 15px;
    vertical-align: top;
    border-bottom: 1px solid #f3f4f6;
    border-right: 1px solid #f3f4f6;
}

.schedule-table tbody td:last-child {
    border-right: none;
}

.time-cell {
    background: #f8f9fa;
    font-weight: 600;
    color: #1f2937;
    border-left: 4px solid #1E90FF;
    text-align: left;
    padding-left: 25px !important;
}

.time-slot-label {
    font-size: 14px;
    white-space: nowrap;
}

.schedule-cell {
    min-width: 180px;
    position: relative;
}

.schedule-cell.has-schedule.schedule-primary {
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
}

.schedule-cell.has-schedule.schedule-alt {
    background: linear-gradient(135deg, #f3e5f5 0%, #fce4ec 100%);
}

.schedule-cell.no-schedule {
    background: #fafafa;
}

.doctor-schedule-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.doctor-item {
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.doctor-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.doctor-link {
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.doctor-name-badge {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.doctor-name-badge i {
    color: #1E90FF;
    font-size: 14px;
}

.doctor-link:hover .doctor-name-badge {
    color: #1E90FF;
}

.doctor-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.doctor-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
}

.doctor-details i {
    font-size: 12px;
    color: #9ca3af;
}

.time-range {
    font-weight: 600 !important;
    color: #374151 !important;
}

.specialty-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
    width: fit-content;
}

.room-tag {
    background: #fef3c7;
    color: #92400e;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
    width: fit-content;
}

.empty-slot {
    text-align: center;
    padding: 20px;
    color: #d1d5db;
}

.empty-slot i {
    font-size: 24px;
}

.schedule-mobile-view {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.schedule-day-pills {
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    gap: 8px;
    margin: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.schedule-day-pills .nav-item {
    flex-shrink: 0;
}

.schedule-day-pills .nav-link {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    background: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.schedule-day-pills .nav-link:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.schedule-day-pills .nav-link.active {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: white;
    border-color: transparent;
}

.schedule-mobile-content {
    padding: 20px;
}

.mobile-schedule-day {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.day-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.mobile-schedule-slot {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
}

.time-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.mobile-doctor-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.mobile-doctor-card:first-of-type {
    margin-top: 0;
}

.doctor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.doctor-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.doctor-name:hover {
    color: #1E90FF;
}

.doctor-specialty {
    font-size: 13px;
    color: #6b7280;
}

.doctor-time,
.doctor-room {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 6px;
}

.doctor-time i,
.doctor-room i {
    color: #1E90FF;
}

.btn-view-profile {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-view-profile:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.no-schedule-day {
    text-align: center;
    padding: 60px 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px dashed #d1d5db;
}

.no-schedule-day i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 15px;
}

.no-schedule-day p {
    color: #6b7280;
    font-size: 15px;
    margin: 0;
}

.schedule-actions {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.schedule-actions .tp-btn {
    padding: 15px 30px;
}

@media (max-width: 1199px) {
    .schedule-table tbody td {
        min-width: 160px;
        font-size: 13px;
    }

    .doctor-name-badge {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 30px;
    }

    .schedule-info-box {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .schedule-stats-wrapper .row {
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

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

    .stat-number {
        font-size: 28px;
    }

    .schedule-info-box {
        padding: 25px 20px;
    }

    .schedule-info-box h3 {
        font-size: 20px;
    }

    .schedule-legend {
        gap: 15px;
    }

    .schedule-actions .tp-btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .schedule-actions .tp-btn.me-3 {
        margin-right: 0 !important;
    }
}

@media (max-width: 575px) {
    .schedule-day-pills {
        padding: 10px;
    }

    .schedule-day-pills .nav-link {
        padding: 8px 16px;
        font-size: 13px;
    }

    .mobile-schedule-content {
        padding: 15px;
    }

    .day-title {
        font-size: 18px;
    }

    .mobile-schedule-slot {
        padding: 12px;
    }

    .mobile-doctor-card {
        padding: 12px;
    }
}

@media print {

    .breadcrumb__area,
    .schedule-stats-area,
    .schedule-info-area,
    .schedule-actions,
    .cta__area {
        display: none;
    }

    .schedule-table {
        font-size: 10px;
    }

    .doctor-item {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doctor-item {
    animation: fadeInUp 0.3s ease;
}

.mobile-doctor-card {
    animation: fadeInUp 0.3s ease;
}

.schedule-table a:focus,
.doctor-name:focus,
.btn-view-profile:focus {
    outline: 3px solid #1E90FF;
    outline-offset: 2px;
}

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

/* doctor-show */

:root {
    --doctor-primary: #0d6efd;
    --doctor-secondary: #1E90FF;
    --doctor-success: #10b981;
    --doctor-warning: #87CEFA;
    --doctor-danger: #ef4444;
    --doctor-text-dark: #1f2937;
    --doctor-text-light: #6b7280;
    --doctor-border: #e5e7eb;
    --doctor-bg-light: #f9fafb;
}

.doctor-details-sidebar {
    position: sticky;
    top: 100px;
}

.doctor-photo-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
}

.featured-doctor-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1f2937;
    padding: 8px 40px;
    transform: rotate(45deg);
    z-index: 10;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-doctor-ribbon i {
    font-size: 14px;
    animation: twinkle 1.5s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.doctor-photo-wrapper {
    position: relative;
    overflow: hidden;
}

.doctor-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.doctor-photo-wrapper:hover .doctor-photo {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.doctor-photo-wrapper:hover .photo-overlay {
    transform: translateY(0);
}

.doctor-quick-info h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.doctor-quick-info p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin: 0;
}

.doctor-quick-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--doctor-primary) 0%, var(--doctor-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 24px;
    color: white;
}

.stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--doctor-text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--doctor-text-light);
    margin-top: 3px;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
}

.widget-header {
    background: linear-gradient(180deg,  #66D5E8 40%, #00A8CC 70%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.widget-header i {
    font-size: 20px;
}

.widget-header h4 {
    margin: 0
    font-size: 16px;
    font-weight: 600;
}

.widget-content {
    padding: 20px;
}

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

.schedule-day-item {
    padding: 15px;
    background: var(--doctor-bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--doctor-primary);
    transition: all 0.3s ease;
}

.schedule-day-item:hover {
    background: #f3f4f6;
    transform: translateX(5px);
}

.day-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--doctor-text-dark);
    margin-bottom: 10px;
}

.schedule-times {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-slot {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--doctor-text-light);
}

.time-slot i {
    color: var(--doctor-primary);
    font-size: 14px;
}

.room-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    margin-left: auto;
}

.no-schedule-info {
    text-align: center;
    padding: 40px 20px;
    color: var(--doctor-text-light);
}

.no-schedule-info i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 15px;
    display: block;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.contact-item:hover {
    background: #f3f4f6;
    transform: translateX(5px);
}

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

.contact-icon i {
    font-size: 18px;
    color: white;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-text .label {
    font-size: 12px;
    color: var(--doctor-text-light);
    font-weight: 500;
}

.contact-text .value {
    font-size: 14px;
    color: var(--doctor-text-dark);
    font-weight: 600;
}


.doctor-details-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.doctor-header-section {
    border-bottom: 2px solid var(--doctor-border);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.pre-title {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
    color: var(--doctor-primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.doctor-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--doctor-text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.doctor-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--doctor-bg-light);
    border-radius: 25px;
    font-size: 14px;
    color: var(--doctor-text-dark);
    font-weight: 500;
}

.meta-item i {
    color: var(--doctor-primary);
    font-size: 16px;
}

.content-section {
    margin-bottom: 40px;
}

.section-title-wrapper i {
    font-size: 24px;
    color: var(--doctor-primary);
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--doctor-text-dark);
    margin: 0;
}

.bio-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--doctor-text-light);
}

.details-grid {
    margin-top: 40px;
}

.detail-card {
    background: white;
    border: 2px solid var(--doctor-border);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: var(--doctor-primary);
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15);
    transform: translateY(-5px);
}

.detail-card .card-header {
    background: linear-gradient(135deg, var(--doctor-bg-light) 0%, #f3f4f6 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-wrapper {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--doctor-primary) 0%, var(--doctor-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 10px;
    color: white;
}

.detail-card .card-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--doctor-text-dark);
}

.card-content {
    padding: 20px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--doctor-text-light);
    line-height: 1.6;
}

.detail-list i {
    color: var(--doctor-success);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
}

.certification-badge i {
    font-size: 32px;
    color: #92400e;
}

.certification-badge > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cert-label {
    font-size: 12px;
    color: #78350f;
    font-weight: 500;
}

.cert-number {
    font-size: 16px;
    font-weight: 700;
    color: #92400e;
}

.services-grid {
    margin-top: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--doctor-bg-light);
    border-radius: 10px;
    border-left: 3px solid var(--doctor-primary);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #f3f4f6;
    transform: translateX(5px);
}

.service-item i {
    font-size: 18px;
    color: var(--doctor-success);
}

.service-item span {
    font-size: 14px;
    color: var(--doctor-text-dark);
    font-weight: 500;
}

.related-doctors-section {
    padding-top: 60px;
    border-top: 2px solid var(--doctor-border);
}

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

.section-subtitle {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
    color: var(--doctor-primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-main-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--doctor-text-dark);
    margin: 0;
}

@media (max-width: 1199px) {
    .doctor-details-sidebar {
        position: relative;
        top: 0;
    }

    .doctor-name {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .doctor-details-content {
        padding: 30px;
    }

    .doctor-name {
        font-size: 26px;
    }

    .doctor-meta-info {
        gap: 10px;
    }

    .meta-item {
        font-size: 13px;
        padding: 8px 15px;
    }
}

@media (max-width: 767px) {
    .doctor-details-content {
        padding: 25px 20px;
    }

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

    .doctor-meta-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .meta-item {
        width: 100%;
    }

    .detail-card .card-header {
        padding: 15px;
    }

    .icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .icon-wrapper i {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .doctor-photo-card {
        border-radius: 16px;
    }

    .doctor-details-content {
        padding: 20px 15px;
        border-radius: 16px;
    }

    .featured-doctor-ribbon {
        font-size: 11px;
        padding: 6px 35px;
    }

    .stat-item {
        padding: 12px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
    }

    .stat-icon i {
        font-size: 20px;
    }

    .stat-number {
        font-size: 20px;
    }

    .section-main-title {
        font-size: 24px;
    }
}

@media print {
    .breadcrumb__area,
    .appointment-cta,
    .related-doctors-section,
    .cta__area {
        display: none !important;
    }

    .doctor-details-sidebar {
        position: static;
    }

    .doctor-details-content {
        box-shadow: none;
        border: 1px solid var(--doctor-border);
    }
}

.contact-item:focus,
.service-item:focus,
.detail-card:focus-within {
    outline: 3px solid var(--doctor-primary);
    outline-offset: 2px;
}

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

/* promo-index */

.promo-page {
    background: #f8f9fa;
    padding: 60px 0;
}

.promo-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.promo-section-header .subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.promo-section-header .title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.2;
}

.promo-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.promo-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 168, 204, 0.15);
    border-color: #00a8cc;
}

.promo-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f0f0f0;
}

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

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

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.4);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.countdown-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 92, 76, 0.95);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.countdown-badge i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.promo-card-body {
    padding: 28px;
}

.promo-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f9ff;
    color: #00a8cc;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.promo-category i {
    font-size: 0.875rem;
}

.promo-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 56px;
}

.promo-card-title:hover {
    color: #00a8cc;
}

.promo-card-desc {
    color: #666;
    font-size: 0.938rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
}

.promo-code-section {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
    border: 2px dashed #ffb300;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-code-info {
    flex: 1;
}

.promo-code-label {
    font-size: 0.75rem;
    color: #856404;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.promo-code-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.copy-code-btn {
    background: #ffb300;
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.copy-code-btn.copied {
    background: #4caf50;
}

.promo-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-validity {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.875rem;
}

.promo-validity i {
    color: #00a8cc;
}

.promo-link-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.promo-link-btn:hover {
    background: linear-gradient(135deg, #008fb3 0%, #00b8bb 100%);
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
    color: #ffffff;
}

.promo-pagination {
    margin-top: 60px;
}

.promo-pagination nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-pagination nav ul li a,
.promo-pagination nav ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #ffffff;
}

.promo-pagination nav ul li a:hover {
    background: #00a8cc;
    border-color: #00a8cc;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 204, 0.3);
}

.promo-pagination nav ul li span.current {
    background: #00a8cc;
    border-color: #00a8cc;
    color: #ffffff;
}

.promo-pagination nav ul li span.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8f9fa;
}

.promo-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.promo-empty-state .icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.promo-empty-state .icon i {
    font-size: 3rem;
    color: #00a8cc;
}

.promo-empty-state h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.promo-empty-state p {
    color: #666;
    font-size: 1rem;
}

@media (max-width: 1199px) {
    .promo-section-header .title {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {
    .promo-section-header .title {
        font-size: 2rem;
    }

    .promo-card-image {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .promo-page {
        padding: 40px 0;
    }

    .promo-section-header {
        margin-bottom: 40px;
    }

    .promo-section-header .title {
        font-size: 1.75rem;
    }

    .promo-section-header .subtitle {
        font-size: 0.813rem;
        padding: 6px 18px;
    }

    .promo-card-image {
        height: 200px;
    }

    .promo-card-body {
        padding: 24px;
    }

    .promo-card-title {
        font-size: 1.125rem;
        min-height: auto;
    }

    .promo-card-desc {
        font-size: 0.875rem;
        min-height: auto;
    }

    .countdown-badge {
        bottom: 15px;
        left: 15px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .discount-badge {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.813rem;
    }
}

@media (max-width: 575px) {
    .promo-section-header .title {
        font-size: 1.5rem;
    }

    .promo-card-image {
        height: 180px;
    }

    .promo-card-body {
        padding: 20px;
    }

    .promo-card-title {
        font-size: 1rem;
    }

    .promo-code-section {
        padding: 12px 14px;
    }

    .promo-code-value {
        font-size: 1rem;
    }

    .promo-pagination nav ul li a,
    .promo-pagination nav ul li span {
        min-width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
}

@media (prefers-color-scheme: dark) {
    .promo-page {
        background: #0f172a;
    }

    .promo-card {
        background: #1e293b;
        border-color: #334155;
    }

    .promo-section-header .title,
    .promo-card-title {
        color: #f1f5f9;
    }

    .promo-card-desc,
    .promo-validity {
        color: #94a3b8;
    }

    .promo-category {
        background: rgba(0, 168, 204, 0.15);
        color: #67e8f9;
    }

    .promo-code-value {
        color: #f1f5f9;
    }

    .promo-pagination nav ul li a,
    .promo-pagination nav ul li span {
        background: #1e293b;
        border-color: #334155;
        color: #f1f5f9;
    }

    .promo-empty-state h4 {
        color: #f1f5f9;
    }
}

@media print {

    .countdown-badge,
    .copy-code-btn,
    .promo-link-btn,
    .promo-pagination {
        display: none !important;
    }

    .promo-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
}

/* promo-show */
.postbox__area .postbox__area .blog-details-service {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}

.postbox__area .blog-details-service:hover {
    border-color: #00a8cc;
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.1);
}

.postbox__area .blog-details-service-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f0f0f0;
}

.postbox__area .blog-details-service-title i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.postbox__area .blog-details-service-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.postbox__area .blog-details-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #00a8cc;
}

.postbox__area .blog-details-service-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
}

.postbox__area .blog-details-service-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.postbox__area .blog-details-service-content {
    flex: 1;
}

.postbox__area .blog-details-service-content-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.postbox__area .blog-details-service-content p {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00a8cc;
    margin: 0;
    line-height: 1.4;
}

.postbox__area .section-title-wrapper {
    text-align: center;
    margin-bottom: 45px;
}

.postbox__area .section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.postbox__area .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 35px;
    line-height: 1.2;
}

.postbox__area .blog-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.postbox__area .blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 168, 204, 0.15);
    border-color: #00a8cc;
}

.postbox__area .blog-thumb {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 20px;
}

.postbox__area .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.postbox__area .blog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.4);
    z-index: 10;
}

.postbox__area .blog-content {
    padding: 0 25px 25px 25px;
}

.postbox__area .blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 56px;
}

.postbox__area .blog-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.postbox__area .blog-title a:hover {
    color: #00a8cc;
}

.postbox__area .blog-content>p {
    color: #666;
    font-size: 0.938rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
}

.postbox__area .promo-code-box {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
    border: 2px dashed #ffb300;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.postbox__area .blog-item:hover .promo-code-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-color: #ff9800;
}

.postbox__area .promo-code-box small {
    font-size: 0.75rem;
    color: #856404;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.postbox__area .promo-code-box strong {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    display: block;
}

.postbox__area .round-link {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00a8cc 0%, #00CED1 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.postbox__area .round-link:hover {
    background: linear-gradient(135deg, #008fb3 0%, #00b8bb 100%);
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(0, 168, 204, 0.4);
    color: #ffffff;
}

.postbox__area .w-img img {
    width: 100%;
    height: auto;
}

.postbox__area .theme-bg-1 {
    background-color: #f8f9fa;
}

.postbox__area .theme-bg-2 {
    background-color: #ffffff;
}


@media (max-width: 1199px) {
    .postbox__area .section-title {
        font-size: 2rem;
    }

    .postbox__area .blog-details-service {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .postbox__area .section-title {
        font-size: 1.875rem;
    }

    .postbox__area .blog-details-service {
        padding: 25px;
    }

    .postbox__area .blog-details-service-title {
        font-size: 1.375rem;
    }

    .postbox__area .blog-thumb {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .postbox__area .section-title-wrapper {
        margin-bottom: 35px;
    }

    .postbox__area .section-title {
        font-size: 1.625rem;
    }

    .postbox__area .section-subtitle {
        font-size: 0.813rem;
        padding: 6px 18px;
    }

    .postbox__area .blog-details-service {
        padding: 20px;
    }

    .postbox__area .blog-details-service-title {
        font-size: 1.25rem;
        flex-direction: row;
        gap: 10px;
    }

    .postbox__area .blog-details-service-title i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .postbox__area .blog-details-service-item {
        padding: 20px;
        gap: 15px;
    }

    .postbox__area .blog-details-service-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .postbox__area .blog-details-service-icon i {
        font-size: 1.3rem;
    }

    .postbox__area .blog-details-service-content-title {
        font-size: 0.875rem;
    }

    .postbox__area .blog-details-service-content p {
        font-size: 1.125rem;
    }

    .postbox__area .blog-thumb {
        height: 200px;
    }

    .postbox__area .blog-content {
        padding: 0 20px 20px 20px;
    }

    .postbox__area .blog-title {
        font-size: 1.125rem;
        min-height: auto;
    }

    .postbox__area .blog-content>p {
        font-size: 0.875rem;
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .postbox__area .section-title {
        font-size: 1.5rem;
    }

    .postbox__area .section-subtitle {
        font-size: 0.75rem;
    }

    .postbox__area .blog-details-service {
        padding: 18px;
    }

    .postbox__area .blog-details-service-title {
        font-size: 1.125rem;
    }

    .postbox__area .blog-details-service-title i {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .postbox__area .blog-details-service-item {
        padding: 18px;
    }

    .postbox__area .blog-details-service-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .postbox__area .blog-details-service-icon i {
        font-size: 1.2rem;
    }

    .postbox__area .blog-details-service-content-title {
        font-size: 0.813rem;
    }

    .postbox__area .blog-details-service-content p {
        font-size: 1rem;
    }

    .postbox__area .blog-thumb {
        height: 180px;
    }

    .postbox__area .blog-content {
        padding: 0 18px 18px 18px;
    }

    .postbox__area .blog-title {
        font-size: 1rem;
    }

    .postbox__area .promo-code-box {
        padding: 12px 15px;
    }

    .postbox__area .promo-code-box strong {
        font-size: 1rem;
    }

    .postbox__area .round-link {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

@media (prefers-color-scheme: dark) {
    .postbox__area .blog-details-service {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        border-color: #2a3f5f;
    }

    .postbox__area .blog-details-service-title {
        color: #e5e7eb;
        border-bottom-color: #2a3f5f;
    }

    .postbox__area .blog-details-service-item {
        background: #16213e;
        border-color: #2a3f5f;
    }

    .postbox__area .blog-details-service-content-title {
        color: #94a3b8;
    }

    .postbox__area .blog-details-service-content p {
        color: #67e8f9;
    }

    .postbox__area .section-title {
        color: #e5e7eb;
    }

    .postbox__area .blog-item {
        background: #16213e;
        border-color: #2a3f5f;
    }

    .postbox__area .blog-title a {
        color: #e5e7eb;
    }

    .postbox__area .blog-content>p {
        color: #94a3b8;
    }

    .postbox__area .promo-code-box {
        background: linear-gradient(135deg, #2a3f5f 0%, #334155 100%);
        border-color: #ffb300;
    }

    .postbox__area .promo-code-box strong {
        color: #e5e7eb;
    }
}

@media print {

    .postbox__area .blog-details-service,
    .postbox__area .blog-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }

    .postbox__area .round-link {
        display: none;
    }

    .postbox__area .blog-badge {
        background: #00a8cc;
        box-shadow: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.postbox__area .blog-item {
    animation: fadeInUp 0.6s ease-out;
}

.postbox__area .blog-item:nth-child(1) {
    animation-delay: 0.1s;
}

.postbox__area .blog-item:nth-child(2) {
    animation-delay: 0.2s;
}

.postbox__area .blog-item:nth-child(3) {
    animation-delay: 0.3s;
}

.postbox__area .blog-item:nth-child(4) {
    animation-delay: 0.4s;
}

.postbox__area .blog-item:nth-child(5) {
    animation-delay: 0.5s;
}

.postbox__area .blog-item:nth-child(6) {
    animation-delay: 0.6s;
}


/* karir-detail */

.career-filter-section .form-control:focus {
    border-color: #00a8cc;
    box-shadow: 0 0 0 3px rgba(255, 99, 71, 0.1);
    outline: none;
}

.career-filter-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px #00BFFF;
}

.career-filter-section .filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff3f0;
    color: #00a8cc;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid #ffe5e0;
}

.career-filter-section .reset-tag {
    background: #fee;
    color: #00a8cc;
    border-color: #fdd;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.career-filter-section .reset-tag:hover {
    background: #00a8cc;
    color: #fff;
    border-color: #00a8cc;
}

.postbox__grid-area .blog-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.postbox__grid-area .blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 99, 71, 0.15);
    border-color: #00a8cc;
}

.postbox__grid-area .blog-thumb {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    margin-bottom: 20px;
}

.postbox__grid-area .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.postbox__grid-area .blog-item:hover .blog-thumb img {
    transform: scale(1.08);
}

.postbox__grid-area .blog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00a8cc 0%, #1E90FF 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.813rem;
    font-weight: 700;
    box-shadow: 0 4px 15px #1E90FF;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.postbox__grid-area .postbox__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.postbox__grid-area .postbox__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.postbox__grid-area .postbox__meta span i {
    color: #00a8cc;
    font-size: 0.938rem;
}

.postbox__grid-area .blog-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.postbox__grid-area .blog-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.postbox__grid-area .blog-title a:hover {
    color: #00a8cc;
}

.postbox__grid-area .career-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #fff9f5 0%, #fff3ed 100%);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 2px solid #ffe5dc;
}

.postbox__grid-area .career-meta-info .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.938rem;
    font-weight: 600;
    color: #1a1a1a;
}

.postbox__grid-area .career-meta-info .meta-item i {
    color: #00a8cc;
    font-size: 1.125rem;
}

.postbox__grid-area .career-excerpt {
    color: #64748b;
    font-size: 0.938rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.postbox__grid-area .career-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 15px;
    margin-top: auto;
    border-top: 2px solid #f1f5f9;
    margin-bottom: 15px;
}

.postbox__grid-area .career-stats .stat-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.postbox__grid-area .career-stats .stat-item i {
    color: #00a8cc;
}

.postbox__grid-area .round-link {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00a8cc 0%, #1E90FF 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
    align-self: flex-end;
}

.postbox__grid-area .round-link:hover {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    transform: translateX(6px) scale(1.05);
    box-shadow: 0 6px 20px #00BFFF;
    color: #ffffff;
}

.postbox__grid-area .no-career-found {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
}

.postbox__grid-area .no-career-found .no-career-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fff3f0 0%, #ffe8e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 3px solid #ffd7cc;
}

.postbox__grid-area .no-career-found .no-career-icon i {
    font-size: 3.5rem;
    color: #00a8cc;
}

.postbox__grid-area .no-career-found h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.postbox__grid-area .no-career-found p {
    color: #64748b;
    font-size: 1.063rem;
    margin-bottom: 25px;
}

.postbox__grid-area .no-career-found .btn-primary {
    background: linear-gradient(135deg, #00a8cc 0%, #1E90FF 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.postbox__grid-area .no-career-found .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #00BFFF;
}

.postbox__grid-area .pagination__wrapper {
    margin-top: 50px;
}

.postbox__grid-area .bd-basic__pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.postbox__grid-area .bd-basic__pagination ul li a,
.postbox__grid-area .bd-basic__pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #ffffff;
}

.postbox__grid-area .bd-basic__pagination ul li a:hover {
    background: linear-gradient(135deg, #00a8cc 0%, #1E90FF 100%);
    border-color: #00a8cc;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #00BFFF;
}

.postbox__grid-area .bd-basic__pagination ul li span.current {
    background: linear-gradient(135deg, #00a8cc 0%, #1E90FF 100%);
    border-color: #00a8cc;
    color: #ffffff;
    box-shadow: 0 4px 12px #00BFFF;
}

.postbox__grid-area .bd-basic__pagination ul li.disabled span {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8f9fa;
}


.postbox__grid-area .w-img img {
    width: 100%;
    height: auto;
}

.postbox__grid-area .theme-bg-2 {
    background-color: #ffffff;
}

.postbox__grid-area .section-space {
    padding: 80px 0;
}


@media (max-width: 1199px) {
    .postbox__grid-area .blog-thumb {
        height: 220px;
    }

    .postbox__grid-area .blog-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    .postbox__grid-area .blog-thumb {
        height: 200px;
    }

    .postbox__grid-area .blog-title {
        font-size: 1.188rem;
        min-height: auto;
    }

    .postbox__grid-area .career-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 767px) {

    .career-filter-section {
        padding: 30px 0 !important;
    }

    .career-filter-section .filter-header h2 {
        font-size: 24px !important;
    }

    .career-filter-section .filter-card {
        padding: 20px !important;
    }

    .career-filter-section .form-group label {
        font-size: 13px !important;
    }

    .career-filter-section .form-control {
        padding: 10px 12px !important;
        font-size: 14px;
    }

    .postbox__grid-area .section-space {
        padding: 50px 0;
    }

    .postbox__grid-area .blog-thumb {
        height: 200px;
    }

    .postbox__grid-area .blog-content {
        padding: 0 20px 20px 20px;
    }

    .postbox__grid-area .blog-title {
        font-size: 1.125rem;
        min-height: auto;
    }

    .postbox__grid-area .career-excerpt {
        font-size: 0.875rem;
        min-height: auto;
    }

    .postbox__grid-area .blog-badge {
        top: 15px;
        right: 15px;
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .postbox__grid-area .postbox__meta {
        gap: 15px;
    }

    .postbox__grid-area .postbox__meta span {
        font-size: 0.813rem;
    }

    .postbox__grid-area .career-stats {
        gap: 15px;
        flex-wrap: wrap;
    }

    .postbox__grid-area .round-link {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .postbox__grid-area .no-career-found {
        padding: 60px 20px;
    }

    .postbox__grid-area .no-career-found .no-career-icon {
        width: 100px;
        height: 100px;
    }

    .postbox__grid-area .no-career-found .no-career-icon i {
        font-size: 3rem;
    }

    .postbox__grid-area .no-career-found h3 {
        font-size: 1.5rem;
    }

    .career-filter-section .active-filters-inline {
        margin-top: 15px !important;
        padding-top: 15px !important;
    }

    .career-filter-section .filter-tag {
        font-size: 0.813rem;
        padding: 5px 12px;
    }
}

@media (max-width: 575px) {
    .career-filter-section .filter-header h2 {
        font-size: 20px !important;
    }

    .career-filter-section .filter-header p {
        font-size: 14px !important;
    }

    .career-filter-section .filter-card {
        padding: 15px !important;
    }

    .postbox__grid-area .blog-thumb {
        height: 180px;
    }

    .postbox__grid-area .blog-content {
        padding: 0 18px 18px 18px;
    }

    .postbox__grid-area .blog-title {
        font-size: 1rem;
    }

    .postbox__grid-area .career-meta-info {
        padding: 12px;
    }

    .postbox__grid-area .career-meta-info .meta-item {
        font-size: 0.875rem;
    }

    .postbox__grid-area .career-excerpt {
        font-size: 0.813rem;
    }

    .postbox__grid-area .career-stats .stat-item {
        font-size: 0.813rem;
    }

    .postbox__grid-area .pagination__wrapper {
        margin-top: 40px;
    }

    .postbox__grid-area .bd-basic__pagination ul li a,
    .postbox__grid-area .bd-basic__pagination ul li span {
        min-width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }

    .postbox__grid-area .no-career-found {
        padding: 40px 15px;
    }

    .postbox__grid-area .no-career-found .no-career-icon {
        width: 80px;
        height: 80px;
    }

    .postbox__grid-area .no-career-found .no-career-icon i {
        font-size: 2.5rem;
    }

    .postbox__grid-area .no-career-found h3 {
        font-size: 1.25rem;
    }

    .postbox__grid-area .no-career-found p {
        font-size: 0.938rem;
    }
}

@media (prefers-color-scheme: dark) {
    .postbox__grid-area .blog-item {
        background: #1e293b;
        border-color: #334155;
    }

    .postbox__grid-area .blog-title a {
        color: #f1f5f9;
    }

    .postbox__grid-area .career-excerpt {
        color: #94a3b8;
    }

    .postbox__grid-area .career-meta-info {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-color: #475569;
    }

    .postbox__grid-area .career-meta-info .meta-item {
        color: #f1f5f9;
    }

    .postbox__grid-area .postbox__meta span {
        color: #94a3b8;
    }

    .postbox__grid-area .career-stats {
        border-top-color: #334155;
    }

    .postbox__grid-area .career-stats .stat-item {
        color: #94a3b8;
    }

    .postbox__grid-area .no-career-found {
        background: #1e293b;
        border-color: #334155;
    }

    .postbox__grid-area .no-career-found h3 {
        color: #f1f5f9;
    }

    .postbox__grid-area .no-career-found p {
        color: #94a3b8;
    }

    .postbox__grid-area .bd-basic__pagination ul li a,
    .postbox__grid-area .bd-basic__pagination ul li span {
        background: #1e293b;
        border-color: #334155;
        color: #f1f5f9;
    }
}


@media print {

    .career-filter-section,
    .postbox__grid-area .round-link,
    .postbox__grid-area .pagination__wrapper,
    .postbox__grid-area .career-stats {
        display: none !important;
    }

    .postbox__grid-area .blog-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e5e7eb;
        page-break-inside: avoid;
    }

    .postbox__grid-area .blog-badge {
        background: #00a8cc;
        box-shadow: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.postbox__grid-area .blog-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.postbox__grid-area .blog-item:nth-child(1) {
    animation-delay: 0.1s;
}

.postbox__grid-area .blog-item:nth-child(2) {
    animation-delay: 0.2s;
}

.postbox__grid-area .blog-item:nth-child(3) {
    animation-delay: 0.3s;
}

.postbox__grid-area .blog-item:nth-child(4) {
    animation-delay: 0.4s;
}

.postbox__grid-area .blog-item:nth-child(5) {
    animation-delay: 0.5s;
}

.postbox__grid-area .blog-item:nth-child(6) {
    animation-delay: 0.6s;
}


/* gallery-index */
.project-area {
    padding: 80px 0;
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.portfolio-filter button {
    padding: 12px 25px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.portfolio-filter button:hover {
    background: var(--tp-theme-primary);
    color: #fff;
    border-color: var(--tp-theme-primary);
    transform: translateY(-2px);
}

.portfolio-filter button.active {
    background: var(--tp-theme-primary);
    color: #fff;
    border-color: var(--tp-theme-primary);
}

.portfolio-filter .cat-count {
    font-size: 13px;
    opacity: 0.9;
}

.project-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.project-thumb {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.project-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.image-count {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-content-inner {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.project-content {
    flex: 1;
}

.project-content span {
    display: inline-block;
    padding: 5px 15px;
    background: var(--tp-theme-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 12px;
}

.project-content h4 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #333;
}

.project-content h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-content h4 a:hover {
    color: var(--tp-theme-primary);
}

.project-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.thumbnail-preview {
    margin-top: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.thumb-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumb-item:hover {
    border-color: var(--tp-theme-primary);
    transform: scale(1.05);
}

.thumb-item.more {
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    font-weight: 600;
}

.thumb-item.more:hover {
    background: var(--tp-theme-primary);
    color: #fff !important;
}

.round-link-40 {
    width: 45px;
    height: 45px;
    background: var(--tp-theme-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.round-link-40:hover {
    background: #333;
    transform: rotate(45deg);
}

.no-result-wrapper {
    padding: 60px 20px;
}

.no-result-wrapper .icon {
    margin-bottom: 20px;
}

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

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

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--tp-theme-primary);
    transform: rotate(90deg);
}

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

.lightbox-nav:hover {
    background: var(--tp-theme-primary);
    transform: translateY(-50%) scale(1.1);
}

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

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

.lightbox-image-container {
    text-align: center;
}

#lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    margin-top: 20px;
}

#lightboxTitle {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

#lightboxCounter {
    font-size: 14px;
    opacity: 0.8;
}

.pagination__wrapper {
    margin-top: 50px;
}

.bd-basic__pagination ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.bd-basic__pagination li {
    list-style: none;
}

.bd-basic__pagination a,
.bd-basic__pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bd-basic__pagination a:hover,
.bd-basic__pagination span.current {
    background: var(--tp-theme-primary);
    color: #fff;
    border-color: var(--tp-theme-primary);
    transform: translateY(-2px);
}

.bd-basic__pagination span.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


@media (max-width: 1024px) {
    .project-area {
        padding: 60px 0;
    }

    .section-title-wrapper {
        margin-bottom: 35px !important;
    }

    .portfolio-filter {
        margin-bottom: 40px;
    }

    .project-content h4 {
        font-size: 18px;
    }

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

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

@media (max-width: 768px) {
    .project-area {
        padding: 50px 0;
    }

    .section-title-wrapper h2 {
        font-size: 28px;
    }

    .portfolio-filter {
        gap: 8px;
        margin-bottom: 35px;
    }

    .portfolio-filter button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .project-thumb {
        padding-top: 70%;
    }

    .project-content-inner {
        padding: 20px;
    }

    .project-content h4 {
        font-size: 17px;
    }

    .thumbnail-preview {
        gap: 6px;
    }

    .thumb-item {
        width: 50px !important;
        height: 50px !important;
    }

    .thumb-item.more {
        width: 50px !important;
        height: 50px !important;
    }

    .round-link-40 {
        width: 40px;
        height: 40px;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

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

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

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    #lightboxImage {
        max-height: 70vh;
    }

    #lightboxTitle {
        font-size: 18px;
    }

    .pagination__wrapper {
        margin-top: 40px;
    }

    .bd-basic__pagination a,
    .bd-basic__pagination span {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

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

    .project-area {
        padding: 40px 0;
    }

    .section-title-wrapper h5 {
        font-size: 14px;
    }

    .section-title-wrapper h2 {
        font-size: 24px;
        margin-bottom: 20px !important;
    }

    .section-title-wrapper p {
        font-size: 14px;
    }

    .portfolio-filter {
        gap: 6px;
        margin-bottom: 30px;
    }

    .portfolio-filter button {
        padding: 8px 16px;
        font-size: 13px;
    }

    .portfolio-filter .cat-count {
        font-size: 12px;
    }

    .project-item {
        margin-bottom: 0;
    }

    .project-thumb {
        padding-top: 65%;
    }

    .project-content-inner {
        padding: 18px;
        gap: 12px;
    }

    .project-content span {
        font-size: 11px;
        padding: 4px 12px;
        margin-bottom: 10px;
    }

    .project-content h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .project-content p {
        font-size: 13px;
    }

    .thumbnail-preview {
        gap: 5px;
        margin-top: 12px;
    }

    .thumb-item {
        width: 45px !important;
        height: 45px !important;
    }

    .thumb-item.more {
        width: 45px !important;
        height: 45px !important;
        font-size: 13px;
    }

    .round-link-40 {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .lightbox-content {
        max-width: 100%;
        padding: 0 10px;
    }

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

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

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

    .lightbox-close {
        top: 5px;
        right: 5px;
        font-size: 24px;
    }

    #lightboxImage {
        max-height: 60vh;
    }

    .lightbox-caption {
        margin-top: 15px;
    }

    #lightboxTitle {
        font-size: 16px;
    }

    #lightboxCounter {
        font-size: 13px;
    }

    .no-result-wrapper {
        padding: 40px 15px;
    }

    .no-result-wrapper .icon i {
        font-size: 36px !important;
    }

    .no-result-wrapper h4 {
        font-size: 20px;
    }

    .no-result-wrapper p {
        font-size: 14px;
    }

    .pagination__wrapper {
        margin-top: 30px;
    }

    .bd-basic__pagination a,
    .bd-basic__pagination span {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .bd-basic__pagination ul {
        gap: 5px;
    }
}

@media (max-width: 375px) {
    .section-title-wrapper h2 {
        font-size: 22px;
    }

    .portfolio-filter button {
        padding: 7px 14px;
        font-size: 12px;
    }

    .project-content h4 {
        font-size: 15px;
    }

    .project-content-inner {
        padding: 15px;
    }

    .thumbnail-preview {
        gap: 4px;
    }

    .thumb-item {
        width: 40px !important;
        height: 40px !important;
    }

    .thumb-item.more {
        width: 40px !important;
        height: 40px !important;
        font-size: 12px;
    }

    .bd-basic__pagination a,
    .bd-basic__pagination span {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    #lightboxImage {
        max-height: 85vh;
    }

    .lightbox-close {
        top: 5px;
    }

    .lightbox-nav.prev,
    .lightbox-nav.next {
        top: 45%;
    }
}

@media print {
    .lightbox-modal,
    .portfolio-filter,
    .pagination__wrapper,
    .breadcrumb__area {
        display: none !important;
    }

    .project-item {
        page-break-inside: avoid;
    }
}

/* appointment-index */
.appointment-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.success-icon {
    position: relative;
    margin: 0 auto 40px;
    width: 120px;
    height: 120px;
}

.icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.icon-wrapper i {
    font-size: 60px;
    color: white;
    animation: checkMark 0.8s ease 0.3s both;
}

.success-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid #10B981;
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkMark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.appointment-title {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
    line-height: 1.3;
}

.appointment-subtitle {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.booking-code-card {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

.booking-code-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30%, -30%); }
}

.code-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.code-value {
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.copy-code-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.copy-code-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.5);
}

.copy-code-btn:active {
    transform: scale(0.95);
}

.code-note {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-style: italic;
}

.appointment-details-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
}

.details-title {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E5E7EB;
}

.details-title i {
    color: #3B82F6;
    font-size: 24px;
}

.detail-row {
    display: flex;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #E5E7EB;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.detail-row:hover {
    background: rgba(59, 130, 246, 0.03);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
    margin: 0 -10px;
}

.detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.detail-row:hover .detail-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.detail-icon i {
    font-size: 20px;
    color: #3B82F6;
}

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

.detail-label {
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 16px;
    color: #1F2937;
    font-weight: 600;
    line-height: 1.5;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.status-badge.pending {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #D97706;
    border: 2px solid #FCD34D;
}

.status-badge i {
    font-size: 16px;
}

.important-notes {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border: 2px solid #FED7AA;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.notes-title i {
    font-size: 22px;
}

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

.notes-list li {
    padding: 12px 0;
    color: #9A3412;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.notes-list li i {
    color: #10B981;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.notes-list li strong {
    color: #7C2D12;
}

/* Download Section */
.download-section {
    padding-top: 30px;
    border-top: 2px dashed #E5E7EB;
    text-align: center;
}

.download-text {
    font-size: 15px;
    color: #6B7280;
    font-weight: 500;
    margin-bottom: 20px;
}

.download-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    padding: 14px 28px;
    border: 2px solid #E5E7EB;
    background: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pdf-btn {
    color: #DC2626;
}

.pdf-btn:hover {
    border-color: #DC2626;
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.2);
}

.calendar-btn {
    color: #2563EB;
}

.calendar-btn:hover {
    border-color: #2563EB;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.info-icon i {
    font-size: 32px;
    color: white;
}

.info-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
}

.info-card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Emergency Card */
.emergency-card {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border-radius: 16px;
    padding: 30px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.emergency-card i {
    font-size: 48px;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.emergency-card h6 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.emergency-number {
    display: inline-block;
    font-size: 36px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.emergency-number:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .appointment-card {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .appointment-card {
        padding: 30px 20px;
    }

    .appointment-title {
        font-size: 26px;
    }

    .appointment-subtitle {
        font-size: 14px;
    }

    .code-value {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .booking-code-card {
        padding: 25px 20px;
    }

    .detail-row {
        flex-direction: column;
        gap: 12px;
        padding: 15px 0;
    }

    .detail-row:hover {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
    }

    .detail-icon i {
        font-size: 18px;
    }

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

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

    .notes-list li {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }

    .appointment-card,
    .appointment-card * {
        visibility: visible;
    }

    .appointment-card {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        box-shadow: none;
        padding: 20px;
    }

    .success-animation,
    .download-section,
    .copy-code-btn {
        display: none !important;
    }

    .booking-code-card {
        background: #f0f0f0;
        color: #333;
    }

    .code-value {
        color: #000;
    }
}

/* Toast Notification */
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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


.btn-apply-primary {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-apply-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-apply-disabled {
    background: #cbd5e1;
    color: #64748b;
    border: none;
    padding: 14px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: not-allowed;
}

/* karir-show */

