/* ============================================
   BKADINHILKAB THEME - RESPONSIVE STYLES
   ============================================ */

/* ============================================
   LARGE DEVICES (1199.98px and below)
   ============================================ */
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .nav-menu__link {
    padding: 10px 8px; /* Reduce padding for smaller desktop screens to fit the menu */
    font-size: 0.85rem;
  }

  .navbar {
    gap: 10px; /* Reduce gap to fit items */
  }

  .section {
    padding: 70px 0;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   MEDIUM DEVICES - TABLETS (991.98px and below)
   ============================================ */
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }

  /* Grid */
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* News Page - Modern */
  .page-header--berita {
    padding: 120px 0 80px;
  }

  .page-header--berita .page-header__title {
    font-size: 2.5rem;
  }

  .page-header__desc {
    font-size: 0.95rem;
  }

  .news-featured__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .news-listing {
    padding: 25px;
  }

  .news-card-featured__title {
    font-size: 1.2rem;
  }

  .news-card-featured__excerpt {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }

  .news-card-featured__content {
    padding: 20px;
  }

  .news-card-modern__title {
    font-size: 0.95rem;
  }

  /* Legacy News Page */
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .news-section {
    padding: 20px;
  }

  .news-card__title {
    font-size: 1rem;
  }

  .news-card--featured .news-card__title {
    font-size: 1.1rem;
  }

  /* Info Card */
  .info-card__body {
    padding: 15px;
  }

  .info-card__title {
    font-size: 1rem;
  }

  /* Header - Mobile Menu Overlay */
  .navbar__overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
  }

  .navbar__overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Toggle Button */
  .navbar__toggle {
    display: flex !important;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition-fast);
    z-index: 1002;
    order: 3;
  }

  .navbar__toggle:hover {
    background-color: rgba(254, 161, 22, 0.1);
  }

  .navbar__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
    position: relative;
  }

  .navbar__toggle-bar::before,
  .navbar__toggle-bar::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
    left: 0;
  }

  .navbar__toggle-bar::before {
    top: -7px;
  }

  .navbar__toggle-bar::after {
    top: 7px;
  }

  /* Toggle Active State - X icon */
  .navbar__toggle.active .navbar__toggle-bar {
    background-color: transparent;
  }

  .navbar__toggle.active .navbar__toggle-bar::before {
    top: 0;
    transform: rotate(45deg);
  }

  .navbar__toggle.active .navbar__toggle-bar::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* Header scrolled - toggle bar color stays primary */
  .header--scrolled .navbar__toggle-bar,
  .header--scrolled .navbar__toggle-bar::before,
  .header--scrolled .navbar__toggle-bar::after {
    background-color: var(--color-primary);
  }

  .header--scrolled .navbar__toggle.active .navbar__toggle-bar {
    background-color: transparent;
  }

  /* Mobile Menu */
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 0 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    z-index: 1001;
  }

  .navbar__menu.active {
    right: 0;
  }

  /* Mobile Menu Close Button */
  .navbar__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: var(--color-secondary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .navbar__close:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.05);
  }

  .navbar__close i {
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile Menu Header */
  .navbar__menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 15px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 10px;
  }

  .navbar__menu-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-secondary);
  }

  /* Navigation Menu on Mobile */
  .nav-menu {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 15px 0;
    border-top: 1px solid var(--color-border);
  }

  .nav-menu__item {
    width: 100%;
  }

  .nav-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-secondary);
    padding: 15px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
  }

  .nav-menu__link:hover,
  .nav-menu__link--active {
    color: var(--color-primary);
    background-color: var(--color-light);
  }

  /* Dropdown Arrow Icon */
  .nav-menu__item--has-children > .nav-menu__link::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
  }

  .nav-menu__item.open > .nav-menu__link::after {
    transform: rotate(180deg);
  }

  /* Dropdown Menu on Mobile */
  .nav-menu__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 0;
    display: none;
    list-style: none;
    background-color: var(--color-light);
    margin: 0;
  }

  .nav-menu__item.open > .nav-menu__dropdown {
    display: block;
  }

  .nav-menu__dropdown .nav-menu__link {
    padding: 13px 20px 13px 30px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* Nested dropdown on mobile */
  .nav-menu__dropdown .nav-menu__dropdown {
    background-color: rgba(0, 0, 0, 0.03);
  }

  .nav-menu__dropdown .nav-menu__dropdown .nav-menu__link {
    padding-left: 40px;
  }

  .nav-menu__dropdown .nav-menu__item--has-children > .nav-menu__link::after {
    content: "\f078";
    position: static;
    right: auto;
  }

  /* Search Form on Mobile */
  .navbar__search--desktop {
    display: none;
  }

  .navbar__search--mobile {
    display: block;
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    padding: 0 20px;
  }

  .navbar__search--mobile .search-form {
    width: 100%;
  }

  .navbar__search--mobile .search-form__input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid var(--color-border);
    background-color: var(--color-light);
    color: var(--color-secondary);
  }

  .navbar__search--mobile .search-form__input::placeholder {
    color: var(--color-gray);
  }

  .navbar__search--mobile .search-form__btn {
    color: var(--color-gray);
  }

  .navbar__search--mobile .search-form__btn:hover {
    color: var(--color-primary);
  }

  /* Body scroll lock when menu open */
  body.menu-open {
    overflow: hidden;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
  }

  .hero__slider {
    position: relative;
    height: 100%;
    min-height: 100vh;
  }

  .hero__slide {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 80px;
  }

  .hero__content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }

  .hero__description {
    font-size: 1.05rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__buttons .btn {
    padding: 12px 24px;
  }

  /* Sections */
  .section {
    padding: 60px 0;
  }

  .section__title {
    font-size: 2rem;
  }

  /* Cards */
  .news-card {
    flex-direction: column;
  }

  .news-card__image {
    width: 100%;
  }

  /* News List - Tablet 2 columns */
  .news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* News Card Item - Tablet */
  .news-card-item__image {
    width: 100px;
    height: 75px;
  }

  .news-card-item__title {
    font-size: 0.9rem;
  }

  .news-card-item__text {
    -webkit-line-clamp: 2;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Innovation Detail - Tablet */
  .innovation-detail__image {
    padding: 30px;
    margin-bottom: 20px;
  }

  .innovation-detail__image img {
    border-radius: 12px;
  }

  .innovation-detail__body {
    padding: 30px;
  }

  /* YouTube Gallery - Tablet */
  .youtube-gallery {
    grid-template-columns: 1fr;
  }

  .youtube-gallery__main {
    order: 1;
  }

  .youtube-gallery__sidebar {
    order: 2;
    max-height: 300px;
  }

  .youtube-gallery__player {
    aspect-ratio: 16/9;
  }

  .youtube-gallery__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .youtube-gallery__item {
    padding: 10px;
    gap: 10px;
  }

  .youtube-gallery__thumb {
    width: 80px;
    height: 45px;
  }

  .youtube-gallery__name {
    font-size: 0.75rem;
    -webkit-line-clamp: 2;
  }
}

/* ============================================
   SMALL DEVICES - MOBILE LANDSCAPE (767.98px and below)
   ============================================ */
@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }

  /* Grid */
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .grid--4 .service-box {
    width: 100%;
    max-width: 340px;
  }

  /* News Page - Modern */
  .page-header--berita {
    padding: 100px 0 70px;
  }

  .page-header--berita .page-header__title {
    font-size: 2rem;
  }

  .page-header__desc {
    font-size: 0.9rem;
  }

  .page-header__wave svg {
    height: 50px;
  }

  .news-featured {
    margin-bottom: 30px;
  }

  .news-featured__grid {
    gap: 15px;
  }

  .news-featured__label {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .news-grid-modern {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .news-listing {
    padding: 18px;
    border-radius: 14px;
  }

  .news-listing__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .news-listing__title {
    font-size: 1.25rem;
  }

  .news-card-featured__title {
    font-size: 1.1rem;
  }

  .news-card-featured__excerpt {
    display: none;
  }

  .news-card-featured__content {
    padding: 18px;
  }

  .news-card-featured__meta {
    font-size: 0.75rem;
    gap: 12px;
  }

  .news-card-modern__body {
    padding: 15px;
  }

  .news-card-modern__title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .news-card-modern__overlay {
    display: none;
  }

  .pagination-wrapper-modern {
    margin-top: 25px;
    padding-top: 20px;
  }

  .pagination-wrapper-modern .pagination {
    gap: 5px;
    flex-wrap: wrap;
  }

  .pagination-wrapper-modern .pagination a,
  .pagination-wrapper-modern .pagination span {
    min-width: 38px;
    height: 38px;
    font-size: 0.8rem;
    padding: 0 12px;
  }

  .pagination-wrapper-modern .pagination li:first-child a,
  .pagination-wrapper-modern .pagination li:last-child a {
    padding: 0 12px;
    font-size: 0.75rem;
  }

  .empty-state-modern {
    padding: 60px 15px;
  }

  .empty-state-modern__visual {
    width: 110px;
    height: 110px;
  }

  .empty-state-modern__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .empty-state-modern__title {
    font-size: 1.25rem;
  }

  /* Legacy News Page */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .news-section {
    padding: 15px;
  }

  .news-section__title {
    font-size: 1.25rem;
  }

  .news-card__body {
    padding: 15px;
  }

  .news-card__title {
    font-size: 1rem;
  }

  .news-card--featured .news-card__title {
    font-size: 1.1rem;
  }

  .news-card__excerpt {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }

  .news-card__meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .pagination-wrapper {
    margin-top: 25px;
    padding-top: 20px;
  }

  .empty-state {
    padding: 50px 15px;
  }

  .empty-state__icon {
    width: 80px;
    height: 80px;
  }

  .empty-state__icon i {
    font-size: 2rem;
  }

  .empty-state__title {
    font-size: 1.25rem;
  }

  /* News List - Mobile 1 column */
  .news-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* News Card Item - Mobile */
  .news-card-item {
    gap: 12px;
  }

  .news-card-item__image {
    width: 100px;
    height: 75px;
  }

  .news-card-item__title {
    font-size: 0.9rem;
  }

  .news-card-item__text {
    display: none;
  }

  /* Article Detail */
  .article__title {
    font-size: 1.5rem;
  }

  /* Info Card */
  .info-card__icon {
    aspect-ratio: 16/9;
    font-size: 2.5rem;
  }

  /* Typography */
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5rem;
  }

  /* Header */
  .header__top {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: calc(100vh - 60px);
  }

  .hero__slider {
    position: relative;
    height: 100%;
    min-height: calc(100vh - 60px);
  }

  .hero__slide {
    min-height: calc(100vh - 60px);
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .hero__description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
    padding: 12px 20px;
  }

  .hero .swiper-pagination {
    bottom: 20px !important;
  }

  .hero .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .hero .swiper-pagination-bullet-active {
    width: 24px;
  }

  /* Page Header */
  .page-header {
    padding: 100px 0 40px;
  }

  .page-header__title {
    font-size: 1.75rem;
  }

  /* Footer */
  .footer__bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Back to Top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  /* YouTube Gallery - Mobile */
  .youtube-gallery {
    border-radius: 8px;
  }

  .youtube-gallery__main {
    order: 1;
  }

  .youtube-gallery__sidebar {
    order: 2;
    max-height: 250px;
  }

  .youtube-gallery__list {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 8px;
  }

  .youtube-gallery__item {
    padding: 8px;
    gap: 8px;
  }

  .youtube-gallery__thumb {
    width: 90px;
    height: 50px;
  }

  .youtube-gallery__name {
    font-size: 0.75rem;
  }
}

/* ============================================
   EXTRA SMALL DEVICES - MOBILE PORTRAIT (575.98px and below)
   ============================================ */
@media (max-width: 575.98px) {
  .container {
    padding: 0 15px;
  }

  /* Breadcrumb - flex wrap untuk mobile */
  .breadcrumb {
    flex-wrap: wrap;
  }

  /* Typography */
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }

  /* News Page - Modern */
  .page-header--berita {
    padding: 90px 0 60px;
  }

  .page-header--berita .page-header__title {
    font-size: 1.75rem;
  }

  .page-header--berita .breadcrumb {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }

  .page-header__desc {
    font-size: 0.85rem;
  }

  .page-header__wave svg {
    height: 40px;
  }

  .section--news {
    padding: 40px 0;
  }

  .news-featured__grid {
    gap: 12px;
  }

  .news-featured__label {
    font-size: 0.75rem;
    padding: 5px 14px;
    margin-bottom: 15px;
  }

  .news-grid-modern {
    gap: 12px;
  }

  .news-listing {
    padding: 12px;
    border-radius: 12px;
  }

  .news-listing__header {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .news-listing__title {
    font-size: 1.1rem;
    gap: 8px;
  }

  .news-listing__title-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.85rem;
  }

  .news-listing__count {
    font-size: 0.75rem;
    padding: 4px 12px;
  }

  .news-card-modern {
    border-radius: 10px;
  }

  .news-card-modern__image-wrap {
    aspect-ratio: 16/9;
  }

  .news-card-modern__body {
    padding: 12px;
  }

  .news-card-modern__title {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .news-card-modern__meta {
    font-size: 0.75rem;
  }

  .news-card-modern__category {
    font-size: 0.6rem;
    padding: 4px 10px;
    top: 10px;
    left: 10px;
  }

  .news-card-featured {
    border-radius: 12px;
  }

  .news-card-featured__image {
    aspect-ratio: 16/9;
  }

  .news-card-featured__content {
    padding: 14px;
  }

  .news-card-featured__title {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .news-card-featured__badge {
    font-size: 0.6rem;
    padding: 3px 10px;
    margin-bottom: 8px;
  }

  .news-card-featured__meta {
    font-size: 0.7rem;
    gap: 10px;
  }

  .pagination-wrapper-modern {
    margin-top: 20px;
    padding-top: 15px;
  }

  .pagination-wrapper-modern .pagination {
    gap: 4px;
    flex-wrap: wrap;
  }

  .pagination-wrapper-modern .pagination a,
  .pagination-wrapper-modern .pagination span {
    min-width: 36px;
    height: 36px;
    font-size: 0.8rem;
    padding: 0 10px;
    border-radius: 6px;
  }

  .pagination-wrapper-modern .pagination li:first-child a,
  .pagination-wrapper-modern .pagination li:last-child a {
    padding: 0 10px;
    font-size: 0.7rem;
    gap: 4px;
  }

  .empty-state-modern {
    padding: 40px 15px;
    border-radius: 14px;
  }

  .empty-state-modern__visual {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .empty-state-modern__icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
  }

  .empty-state-modern__icon i {
    font-size: 1.5rem;
  }

  .empty-state-modern__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .empty-state-modern__text {
    font-size: 0.9rem;
  }

  /* Legacy News Page */
  .news-section {
    padding: 12px;
    border-radius: 12px;
  }

  .news-section__header {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .news-section__title {
    font-size: 1.1rem;
    padding-left: 12px;
  }

  .news-section__title::before {
    height: 18px;
    width: 3px;
  }

  .news-grid {
    gap: 12px;
  }

  .news-card {
    border-radius: 10px;
  }

  .news-card__image {
    aspect-ratio: 16/9;
  }

  .news-card__body {
    padding: 12px;
  }

  .news-card__title {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .news-card--featured .news-card__title {
    font-size: 1rem;
  }

  .news-card__excerpt {
    font-size: 0.8rem;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
  }

  .news-card__meta {
    font-size: 0.75rem;
    gap: 8px;
  }

  .news-card__category {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  .pagination-wrapper {
    margin-top: 20px;
    padding-top: 15px;
  }

  .empty-state {
    padding: 40px 15px;
    border-radius: 12px;
  }

  .empty-state__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .empty-state__icon i {
    font-size: 1.75rem;
  }

  .empty-state__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .empty-state__text {
    font-size: 0.9rem;
  }

  /* Hero */
  .hero {
    min-height: calc(100vh - 50px);
  }

  .hero__slider {
    position: relative;
    height: 100%;
    min-height: calc(100vh - 50px);
  }

  .hero__slide {
    min-height: calc(100vh - 50px);
    padding: 100px 0 50px;
  }

  .hero__content {
    padding: 15px 0;
  }

  .hero__title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero__subtitle {
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .hero__description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero__buttons .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  /* Sections */
  .section {
    padding: 50px 0;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .section__header {
    margin-bottom: 30px;
  }

  /* Cards */
  .card__body {
    padding: 15px;
  }

  .innovation-card {
    padding: 30px 20px;
  }

  .innovation-card__icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .innovation-card__actions {
    flex-direction: column;
    gap: 8px;
  }

  .innovation-card__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Service Box */
  .service-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .service-box__icon {
    margin: 0 auto;
  }

  .service-box__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Document Item */
  .document-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .document-item__download {
    width: 100%;
  }

  /* Year Filter */
  .year-filter {
    justify-content: center;
  }

  .year-filter__btn {
    padding: 6px 15px;
    font-size: 0.85rem;
  }

  /* Article Detail */
  .article__title {
    font-size: 1.25rem;
  }

  /* Contact Form */
  .contact-form {
    padding: 20px;
  }

  /* Pagination */
  .pagination a,
  .pagination span {
    min-width: 35px;
    height: 35px;
    padding: 0 10px;
    font-size: 0.85rem;
  }

  /* Navbar */
  .navbar__menu {
    width: 100%;
    max-width: 100%;
    right: -100%;
    padding: 70px 0 30px;
  }

  .navbar__close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .navbar__close i {
    font-size: 1.1rem;
  }

  .navbar__logo {
    height: 40px;
  }

  .navbar__logo-text {
    font-size: 1.25rem;
  }

  .navbar__search--mobile {
    padding: 0 15px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header,
  .footer,
  .back-to-top,
  .loader {
    display: none !important;
  }

  .main {
    padding-top: 0;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    text-decoration: underline;
  }

  .section {
    padding: 20px 0;
  }
}
