﻿@charset "UTF-8";
/*
 * İÇİNDEKİLER / TABLE OF CONTENTS
 * ========================================
 * 
 * 1. LAYOUT (Sayfa Düzeni) - [_schema.scss]
 *    - Page Hero
 *    - Page Main Layout
 *    - Left Menu
 *    - Page Content
 *    - Responsive Layout
 * 
 * 2. COMMON COMPONENTS (Modern Ortak Bileşenler) - [_components.scss]
 *    - Filtre, Pagination (Legacy)
 *    - Detay Sayfaları Ortak Stiller
 *    - Responsive Düzeltmeler
 *    - Print Styles
 *    - 2.1 Content Hero
 *    - 2.2 Accordion
 *    - 2.3 Sub-Accordion
 *    - 2.4 Profile Photo
 *    - 2.5 Info Section
 *    - 2.6 Timeline
 *    - 2.7 Feature Boxes
 *    - 2.8 Signature Box
 *    - 2.9 Gelişmiş Bileşenler (Rich Components)
 *    - 2.10 Modal & Overlays
 *    - 2.11 Ödeme Noktası Kartları
 * 
 * 3. PAGE-SPECIFIC STYLES (Sayfa Özel Stilleri) - [_content.scss]
 *    - News (Haberler)
 *    - Announcements (Duyurular)
 *    - Search (Arama)
 *    - Contact (İletişim)
 *    3.1 Kurumsal Sayfalar
 *        - 3.1.1 Yönetim Kurulu
 *        - 3.1.2 Genel Kurul Üyeleri
 *        - 3.1.3 Genel Kurul Kararları
 *        - 3.1.4 Organizasyon Şeması
 *        - 3.1.6 Raporlar ve Hizmetler
 *    3.2 Barajlar Sayfası
 *    3.3 Su Kesintileri Sayfası
 *    3.4 Su Analiz Raporları Sayfası
 * 
 * ========================================
 */
@keyframes rotate {
  0% {
    transform: translate(-50%, 0) rotateZ(0deg);
  }
  50% {
    transform: translate(-50%, -2%) rotateZ(180deg);
  }
  100% {
    transform: translate(-50%, 0) rotateZ(360deg);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  animation: bounce 2s infinite;
}

.page-hero {
  background: linear-gradient(135deg, #0284c7 0%, #0c4a6e 100%);
  padding: 20px 0 20px;
  position: relative;
  overflow: hidden;
  margin-top: 95px;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23f8fafc' d='M0,40 C480,100 960,0 1440,40 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}
.page-hero .container {
  width: 100%;
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
  padding: 20px 1.5rem;
}
.page-hero__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.page-hero__breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-hero__breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
}
.page-hero__breadcrumb li span {
  color: #ffffff;
}
.page-hero__breadcrumb li::after {
  content: "/";
  color: rgba(255, 255, 255, 0.7);
}
.page-hero__breadcrumb li:last-child {
  color: #ffffff;
  font-weight: 500;
}
.page-hero__breadcrumb li:last-child::after {
  display: none;
}
.page-hero__breadcrumb a {
  color: #ffffff;
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-hero__breadcrumb a:hover {
  color: #ffffff;
}

.page-main {
  background: #f8fafc;
  padding: 40px 0 80px;
  min-height: 60vh;
}
.page-main > .container {
  width: 100%;
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.page-layout:has(.left-menu) {
  grid-template-columns: 280px 1fr;
}
@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.left-menu {
  position: sticky;
  top: 90px;
}
@media (max-width: 1024px) {
  .left-menu {
    display: none;
  }
}

.left-menu-container {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.left-menu-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #0284c7 0%, #0c4a6e 100%);
  padding: 20px 24px;
  margin: 0;
}

.left-menu-container nav {
  padding: 12px 0;
}
.left-menu-container nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: #1e293b;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.left-menu-container nav a i {
  font-size: 0.7rem;
  color: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.left-menu-container nav a:hover {
  background: #f8fafc;
  color: #0284c7;
  border-left-color: #38bdf8;
}
.left-menu-container nav a:hover i {
  color: #38bdf8;
  transform: translateX(3px);
}
.left-menu-container nav a.active {
  background: rgba(2, 132, 199, 0.05);
  color: #0284c7;
  font-weight: 600;
  border-left-color: #0284c7;
}
.left-menu-container nav a.active i {
  color: #0284c7;
}
.left-menu-container nav details.dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: #1e293b;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
}
.left-menu-container nav details.dropdown summary::-webkit-details-marker {
  display: none;
}
.left-menu-container nav details.dropdown summary i {
  font-size: 0.7rem;
  color: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.left-menu-container nav details.dropdown summary:hover {
  background: #f8fafc;
  color: #0284c7;
}
.left-menu-container nav details.dropdown[open] summary {
  background: #f8fafc;
  color: #0284c7;
  border-left-color: #38bdf8;
}
.left-menu-container nav details.dropdown[open] summary i {
  transform: rotate(90deg);
  color: #38bdf8;
}
.left-menu-container nav details.dropdown .dropdown-content {
  background: #f8fafc;
  padding: 8px 0;
}
.left-menu-container nav details.dropdown .dropdown-content a {
  padding-left: 40px;
  font-size: 0.9rem;
  color: #64748b;
}
.left-menu-container nav details.dropdown .dropdown-content a:hover {
  color: #0284c7;
  background: #f1f5f9;
}
.left-menu-container nav details.dropdown .dropdown-content .dropdown-nested .dropdown-header-nested {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px 10px 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
}
.left-menu-container nav details.dropdown .dropdown-content .dropdown-nested .dropdown-header-nested::-webkit-details-marker {
  display: none;
}
.left-menu-container nav details.dropdown .dropdown-content .dropdown-nested .dropdown-header-nested i {
  font-size: 0.65rem;
  color: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.left-menu-container nav details.dropdown .dropdown-content .dropdown-nested .dropdown-header-nested:hover {
  background: #f1f5f9;
  color: #0284c7;
}
.left-menu-container nav details.dropdown .dropdown-content .dropdown-nested[open] .dropdown-header-nested {
  background: #f1f5f9;
  color: #0284c7;
}
.left-menu-container nav details.dropdown .dropdown-content .dropdown-nested[open] .dropdown-header-nested i {
  transform: rotate(90deg);
  color: #38bdf8;
}
.left-menu-container nav details.dropdown .dropdown-content .dropdown-nested .dropdown-content-nested {
  background: #f1f5f9;
  padding: 4px 0;
}
.left-menu-container nav details.dropdown .dropdown-content .dropdown-nested .dropdown-content-nested a {
  padding-left: 56px;
  font-size: 0.85rem;
  color: #64748b;
}
.left-menu-container nav details.dropdown .dropdown-content .dropdown-nested .dropdown-content-nested a i {
  margin-right: 8px;
}
.left-menu-container nav details.dropdown .dropdown-content .dropdown-nested .dropdown-content-nested a:hover {
  color: #0284c7;
  background: #ffffff;
}

.page-content {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.page-content--full {
  max-width: 100%;
  grid-column: 1/-1;
}
.page-content__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 32px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  flex-shrink: 0;
}
.page-content__share {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-content__share .share-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}
.page-content__share .share-buttons {
  display: flex;
  gap: 8px;
}
.page-content__share .share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-content__share .share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.page-content__share .share-btn--facebook {
  background: #1877f2;
}
.page-content__share .share-btn--twitter {
  background: #000000;
}
.page-content__share .share-btn--linkedin {
  background: #0a66c2;
}
.page-content__share .share-btn--whatsapp {
  background: #25d366;
}
.page-content__body {
  padding: 40px 32px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #1e293b;
  flex: 1;
}
@media (max-width: 768px) {
  .page-content__body {
    padding: 24px 20px;
  }
}
.page-content__body:empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: linear-gradient(90deg, #f1f5f9 1px, transparent 1px), linear-gradient(180deg, #f1f5f9 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
}
.page-content__body:empty::after {
  content: "İçerik yükleniyor...";
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: #94a3b8;
  background: #ffffff;
  padding: 12px 24px;
  border-radius: 0.5rem;
  border: 1px dashed #cbd5e1;
}
.page-content__body h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0284c7;
  margin: 32px 0 16px;
}
.page-content__body h2:first-child {
  margin-top: 0;
}
.page-content__body h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0369a1;
  margin: 24px 0 12px;
}
.page-content__body h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 20px 0 10px;
}
.page-content__body p {
  margin: 0 0 16px;
  text-align: justify;
}
.page-content__body p:last-child {
  margin-bottom: 0;
}
.page-content__body ul,
.page-content__body ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.page-content__body ul li,
.page-content__body ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.page-content__body ul {
  list-style: none;
}
.page-content__body ul li {
  position: relative;
  padding-left: 20px;
}
.page-content__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #38bdf8;
  border-radius: 9999px;
}
.page-content__body a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-content__body a:hover {
  color: #0284c7;
  text-decoration: underline;
}
.page-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 16px 0;
}
.page-content__body blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: #f8fafc;
  border-left: 4px solid #38bdf8;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: #64748b;
}
.page-content__body blockquote p {
  margin: 0;
}
.page-content__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.page-content__body table th,
.page-content__body table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #e2e8f0;
}
.page-content__body table th {
  background: #0284c7;
  color: #ffffff;
  font-weight: 600;
}
.page-content__body table tr:nth-child(even) {
  background: #f8fafc;
}
.page-content__body table tr:hover {
  background: #f1f5f9;
}
.page-content__body iframe {
  max-width: 100%;
  border-radius: 0.5rem;
}
.page-content__body pre,
.page-content__body code {
  font-family: "Consolas", monospace;
  background: #f1f5f9;
  border-radius: 0.25rem;
}
.page-content__body code {
  padding: 2px 6px;
  font-size: 0.9em;
}
.page-content__body pre {
  padding: 16px;
  overflow-x: auto;
  margin: 16px 0;
}
.page-content__body pre code {
  padding: 0;
  background: none;
}
.page-content__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 32px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  flex-shrink: 0;
}
.page-content__footer .publish-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  color: #64748b;
}
.page-content__footer .publish-date i {
  color: #38bdf8;
}

@media (max-width: 1024px) {
  .page-layout .page-content {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: 60px 0 40px;
    margin-top: 70px;
  }
  .page-hero::after {
    height: 40px;
  }
  .page-main {
    padding: 24px 0 60px;
  }
  .page-content {
    min-height: 300px;
  }
  .page-content__header {
    padding: 16px 20px;
  }
  .page-content__share .share-label {
    display: none;
  }
  .page-content__share .share-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .page-content__body h2 {
    font-size: 1.3rem;
  }
  .page-content__body h3 {
    font-size: 1.15rem;
  }
  .page-content__body table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .page-content__body:empty {
    min-height: 200px;
  }
  .page-content__footer {
    padding: 12px 20px;
  }
}
.filter-section {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.filter-section .filter-form {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr auto;
  gap: 1rem;
  align-items: end;
}
@media (max-width: 992px) {
  .filter-section .filter-form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .filter-section .filter-form {
    grid-template-columns: 1fr;
  }
}
.filter-section .filter-group {
  display: flex;
  flex-direction: column;
}
.filter-section .filter-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}
.filter-section .filter-group input,
.filter-section .filter-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: #1e293b;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 44px;
  box-sizing: border-box;
}
.filter-section .filter-group input:focus,
.filter-section .filter-group select:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}
.filter-section .filter-group input::placeholder,
.filter-section .filter-group select::placeholder {
  color: #94a3b8;
}
.filter-section .filter-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364758b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.filter-section .filter-group--date {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.filter-section .filter-group--date label {
  grid-column: 1/-1;
}
.filter-section .filter-group--date input {
  flex: 1;
}
.filter-section .filter-btn {
  padding: 0.75rem 1.75rem;
  background: #0284c7;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.filter-section .filter-btn:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}
.filter-section .filter-btn i {
  font-size: 0.875rem;
}
@media (max-width: 576px) {
  .filter-section .filter-btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .filter-section {
    padding: 1.25rem;
  }
  .filter-section .filter-form {
    gap: 0.75rem;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.75rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pagination__item:hover {
  background: #f8fafc;
  border-color: #0284c7;
  color: #0284c7;
}
.pagination__item--active {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
}
.pagination__item--active:hover {
  background: #0369a1;
  color: #ffffff;
}
.pagination__item--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.pagination__item i {
  font-size: 0.85rem;
}
@media (max-width: 480px) {
  .pagination__item {
    min-width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

.detail-hero {
  background: linear-gradient(135deg, #0284c7 0%, #0c4a6e 100%);
  padding: 80px 0 60px;
  margin-top: 114px;
  position: relative;
  overflow: hidden;
}
.detail-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23f8fafc' d='M0,40 C480,100 960,0 1440,40 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}
.detail-hero .container {
  width: 100%;
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.detail-hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.detail-hero .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.detail-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.detail-hero .breadcrumb a:hover {
  color: #ffffff;
}
.detail-hero .breadcrumb i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.detail-hero .breadcrumb span {
  color: #38bdf8;
  font-weight: 500;
}

.detail-main {
  background: #f8fafc;
  padding: 40px 0 80px;
}
.detail-main > .container {
  width: 100%;
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.detail-content {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.detail-content__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}
.detail-content__header .meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #475569;
}
.detail-content__header .meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.detail-content__header .meta span i {
  color: #0284c7;
}
.detail-content__header .actions {
  display: flex;
  gap: 0.5rem;
}
.detail-content__header .actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.detail-content__header .actions button:hover {
  background: #f1f5f9;
  color: #0284c7;
}
.detail-content__header .header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.detail-content__header .font-size-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f1f5f9;
  padding: 0.25rem;
  border-radius: 0.5rem;
}
.detail-content__header .font-size-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.25rem;
  color: #334155;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
}
.detail-content__header .font-size-btn:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}
.detail-content__header .font-size-btn:active {
  transform: scale(0.95);
}
.detail-content__header .share-buttons {
  display: flex;
  gap: 0.5rem;
}
.detail-content__header .share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.detail-content__header .share-buttons a:hover {
  transform: translateY(-2px);
}
.detail-content__header .share-buttons a.facebook {
  background: #1877f2;
}
.detail-content__header .share-buttons a.twitter {
  background: #000;
}
.detail-content__header .share-buttons a.linkedin {
  background: #0a66c2;
}
.detail-content__header .share-buttons a.whatsapp {
  background: #25d366;
}
@media (max-width: 768px) {
  .detail-content__header .header-actions {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .detail-content__header .font-size-controls {
    order: 2;
    width: 100%;
    justify-content: center;
  }
  .detail-content__header .share-buttons {
    order: 1;
    width: 100%;
    justify-content: center;
  }
}
.detail-content__image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}
.detail-content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-content__body {
  padding: 2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #1e293b;
}
.detail-content__body h2,
.detail-content__body h3,
.detail-content__body h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #0369a1;
  margin: 1.5rem 0 1rem;
}
.detail-content__body h2 {
  font-size: 1.5rem;
}
.detail-content__body h3 {
  font-size: 1.25rem;
}
.detail-content__body p {
  margin-bottom: 1rem;
  text-align: justify;
}
.detail-content__body a {
  color: #0284c7;
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.detail-content__body a:hover {
  color: #0c4a6e;
}
.detail-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
.detail-content__body ul,
.detail-content__body ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.detail-content__body ul li,
.detail-content__body ol li {
  margin-bottom: 0.5rem;
}
.detail-content__body blockquote {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: #f8fafc;
  border-left: 4px solid #0284c7;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: #475569;
}
.detail-content__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.detail-content__body table th,
.detail-content__body table td {
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  text-align: left;
}
.detail-content__body table th {
  background: #0284c7;
  color: #ffffff;
  font-weight: 600;
}
.detail-content__body table tr:nth-child(even) {
  background: #f8fafc;
}
.detail-content__nav {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}
.detail-content__nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: #ffffff;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.detail-content__nav a:hover {
  background: #0284c7;
  color: #ffffff;
}
.detail-content__nav a i {
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .search-hero,
  .contact-hero,
  .detail-hero {
    padding: 60px 0 40px;
    margin-top: 70px;
  }
  .search-hero::after,
  .contact-hero::after,
  .detail-hero::after {
    height: 40px;
  }
  .detail-content__header {
    padding: 1rem 1.25rem;
  }
  .detail-content__header .meta {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .detail-content__body {
    padding: 1.25rem;
  }
  .detail-content__nav {
    padding: 1rem 1.25rem;
    flex-direction: column;
    gap: 0.75rem;
  }
  .detail-content__nav a {
    justify-content: center;
  }
}
@media print {
  .page-hero,
  .search-hero,
  .contact-hero,
  .detail-hero {
    background: none !important;
    color: #000;
    padding: 20px 0;
    margin-top: 0;
  }
  .page-hero::after,
  .search-hero::after,
  .contact-hero::after,
  .detail-hero::after {
    display: none;
  }
  .page-hero h1, .page-hero__title,
  .search-hero h1,
  .search-hero__title,
  .contact-hero h1,
  .contact-hero__title,
  .detail-hero h1,
  .detail-hero__title {
    color: #000;
  }
  .left-menu {
    display: none;
  }
  .page-layout {
    grid-template-columns: 1fr;
  }
  .filter-section,
  .pagination,
  .detail-content__header .actions,
  .detail-content__header .share-buttons,
  .detail-content__nav {
    display: none !important;
  }
  .page-content,
  .detail-content {
    box-shadow: none;
  }
  .page-content__header, .page-content__footer,
  .detail-content__header,
  .detail-content__footer {
    display: none;
  }
  .page-content__body,
  .detail-content__body {
    padding: 0;
  }
  .page-content__body a,
  .detail-content__body a {
    color: #000;
    text-decoration: underline;
  }
  .page-content__body a::after,
  .detail-content__body a::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
}
.content-hero {
  margin: 0 0 40px;
  border-bottom: 3px solid #0284c7;
  position: relative;
}
.content-hero__subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  color: #475569;
  margin: 0;
}
.content-hero__date, .content-hero__share {
  display: none !important;
}
@media (max-width: 768px) {
  .content-hero {
    padding: 0 0 20px;
    margin: 0 0 32px;
  }
  .content-hero__title {
    font-size: 1.75rem;
  }
  .content-hero__subtitle {
    font-size: 1rem;
  }
}

.page-content__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.page-content__footer .share-buttons-footer {
  display: flex;
  gap: 10px;
}
.page-content__footer .share-buttons-footer .share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: #475569;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.page-content__footer .share-buttons-footer .share-btn i {
  transition: color 0.3s;
}
.page-content__footer .share-buttons-footer .share-btn:hover {
  transform: translateY(-3px);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.page-content__footer .share-buttons-footer .share-btn--facebook:hover {
  background-color: #3b5998;
}
.page-content__footer .share-buttons-footer .share-btn--twitter:hover {
  background-color: #000000;
}
.page-content__footer .share-buttons-footer .share-btn--linkedin:hover {
  background-color: #0077b5;
}
.page-content__footer .share-buttons-footer .share-btn--whatsapp:hover {
  background-color: #25D366;
}
.page-content__footer .share-buttons-footer .share-btn--native:hover {
  background-color: #0284c7;
}

.accordion {
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  overflow: hidden;
}
.accordion .accordion-header {
  padding: 16px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0369a1;
  background: #f8fafc;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
}
.accordion .accordion-header::-webkit-details-marker {
  display: none;
}
.accordion .accordion-header:hover {
  background: #f1f5f9;
  color: #0284c7;
}
.accordion .accordion-header i {
  font-size: 0.9rem;
  color: #0284c7;
  transition: transform 0.3s ease-out;
}
.accordion[open] .accordion-header {
  background: #0284c7;
  color: #ffffff;
}
.accordion[open] .accordion-header i {
  color: #ffffff;
}
.accordion .accordion-content {
  padding: 20px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .accordion .accordion-content {
    padding: 16px;
  }
}
.accordion .accordion-content p {
  margin: 0 0 16px;
}
.accordion .accordion-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .accordion .accordion-header {
    padding: 14px 16px;
    font-size: 1rem;
  }
}

.accordion.sub-accordion {
  margin-bottom: 4px;
  border: none;
  border-bottom: 1px solid #f1f5f9;
  border-radius: 0;
  overflow: visible;
}
.accordion.sub-accordion:last-child {
  border-bottom: none;
}
.accordion.sub-accordion .accordion-header.sub-header {
  padding: 8px 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
}
.accordion.sub-accordion .accordion-header.sub-header::-webkit-details-marker {
  display: none;
}
.accordion.sub-accordion .accordion-header.sub-header .karar-no {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0284c7;
  white-space: nowrap;
}
.accordion.sub-accordion .accordion-header.sub-header .karar-baslik {
  flex: 1;
  color: #334155;
  font-weight: 400;
}
.accordion.sub-accordion .accordion-header.sub-header i {
  font-size: 0.7rem;
  color: #cbd5e1;
  transition: transform 0.3s ease-out;
  margin-left: auto;
}
.accordion.sub-accordion .accordion-header.sub-header:hover {
  background: transparent;
  color: #0f172a;
}
.accordion.sub-accordion .accordion-header.sub-header:hover .karar-baslik {
  color: #0f172a;
}
.accordion.sub-accordion .accordion-header.sub-header:hover i {
  color: #94a3b8;
}
.accordion.sub-accordion[open] .accordion-header.sub-header {
  background: transparent;
  color: #0f172a;
}
.accordion.sub-accordion[open] .accordion-header.sub-header .karar-baslik {
  color: #0f172a;
}
.accordion.sub-accordion[open] .accordion-header.sub-header i {
  color: #0284c7;
}
.accordion.sub-accordion .accordion-content.sub-content {
  padding: 8px 12px 12px 28px;
  background: #ffffff;
  font-size: 0.875rem;
}
.accordion.sub-accordion .accordion-content.sub-content p {
  margin: 0 0 8px;
  line-height: 1.6;
  color: #334155;
}
.accordion.sub-accordion .accordion-content.sub-content p:last-child {
  margin-bottom: 0;
}
.accordion.sub-accordion .accordion-content.sub-content a {
  color: #0284c7;
  text-decoration: none;
  font-weight: 400;
}
.accordion.sub-accordion .accordion-content.sub-content a:hover {
  text-decoration: underline;
}
.accordion.sub-accordion .accordion-content.sub-content strong {
  color: #0f172a;
  font-weight: 600;
}
@media (max-width: 768px) {
  .accordion.sub-accordion .accordion-header.sub-header {
    padding: 8px 10px;
    font-size: 0.85rem;
    flex-wrap: wrap;
  }
  .accordion.sub-accordion .accordion-header.sub-header .karar-no {
    font-size: 0.7rem;
    width: 100%;
    margin-bottom: 3px;
  }
  .accordion.sub-accordion .accordion-header.sub-header .karar-baslik {
    font-size: 0.85rem;
  }
  .accordion.sub-accordion .accordion-content.sub-content {
    padding: 8px 10px 10px 20px;
    font-size: 0.85rem;
  }
}

.profile-photo {
  text-align: center;
  margin: 32px 0 40px;
}
.profile-photo img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
}

.info-section {
  margin-bottom: 32px;
}
.info-section h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0369a1;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-section h3 i {
  color: #38bdf8;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .info-section h3 {
    font-size: 1.15rem;
  }
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-list > li {
  padding: 12px 0;
  padding-left: 0;
  border-bottom: 1px solid #e2e8f0;
  line-height: 1.7;
}
.info-list > li:last-child {
  border-bottom: none;
}
.info-list > li::before {
  display: none;
}
.info-list > li strong {
  color: #0369a1;
  font-weight: 600;
}
.info-list > li ul {
  margin-top: 12px;
  padding-left: 24px;
  list-style: none;
}
.info-list > li ul li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: none;
}
.info-list > li ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: #38bdf8;
  border-radius: 9999px;
  display: block;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}
.timeline li:last-child {
  border-bottom: none;
}
.timeline li::before {
  display: none;
}
@media (max-width: 768px) {
  .timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.timeline li .year,
.timeline li .date {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0284c7;
}
@media (max-width: 768px) {
  .timeline li .year,
  .timeline li .date {
    font-size: 0.85rem;
  }
}
.timeline li .desc,
.timeline li .content {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
}
@media (max-width: 768px) {
  .timeline li .desc,
  .timeline li .content {
    font-size: 0.9rem;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0;
}
@media (max-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-box:hover {
  border-color: #38bdf8;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.feature-box:hover .feature-box__icon {
  transform: scale(1.1) rotate(5deg);
}
.feature-box__icon {
  align-self: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(56, 189, 248, 0.1) 100%);
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-box__icon i {
  font-size: 1.75rem;
  color: #0284c7;
}
.feature-box__content {
  flex: 1;
  width: 100%;
}
.feature-box__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0369a1;
  margin: 0 0 8px;
}
.feature-box__text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
  margin: 0;
}
@media (max-width: 768px) {
  .feature-box {
    padding: 20px;
    gap: 16px;
  }
  .feature-box__icon {
    width: 50px;
    height: 50px;
  }
  .feature-box__icon i {
    font-size: 1.5rem;
  }
  .feature-box__title {
    font-size: 1.05rem;
  }
  .feature-box__text {
    font-size: 0.9rem;
  }
}

.signature-box {
  margin-top: 48px;
  padding: 24px;
  background: linear-gradient(135deg, #0284c7 0%, #0c4a6e 100%);
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.signature-box .name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}
.signature-box .title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
@media (max-width: 768px) {
  .signature-box {
    margin-top: 32px;
    padding: 20px;
  }
  .signature-box .name {
    font-size: 1.3rem;
  }
  .signature-box .title {
    font-size: 1rem;
  }
}

.highlight-box {
  padding: 24px;
  margin: 24px 0;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(56, 189, 248, 0.05) 100%);
  border-left: 4px solid #0284c7;
  border-radius: 1rem;
}
.highlight-box h4 {
  margin-top: 0;
  color: #0284c7;
}
.highlight-box--warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-left-color: #f59e0b;
}
.highlight-box--warning h4 {
  color: #f59e0b;
}
.highlight-box--success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-left-color: #10b981;
}
.highlight-box--success h4 {
  color: #10b981;
}
.highlight-box--info {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-left-color: #3b82f6;
}
.highlight-box--info h4 {
  color: #3b82f6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 24px 0;
}
.card-grid .card-item {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-grid .card-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #38bdf8;
}
.card-grid .card-item h4 {
  margin-top: 0;
  color: #0284c7;
}

.document-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.document-list li {
  padding: 16px;
  margin-bottom: 12px;
  background: #f8fafc;
  border-radius: 0.5rem;
  border-left: 3px solid #38bdf8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.document-list li::before {
  display: none;
}
.document-list li:hover {
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-left-color: #0284c7;
}
.document-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1e293b;
}
.document-list li a i {
  color: #38bdf8;
  font-size: 1.2rem;
}
.document-list li a:hover {
  color: #0284c7;
  text-decoration: none;
}
.document-list li a:hover i {
  color: #0284c7;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .mission-vision-grid {
    gap: 24px;
    margin: 32px 0;
  }
}

.mv-card {
  position: relative;
  padding: 40px 32px;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%);
}
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(2, 132, 199, 0.2);
}
.mv-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  border-radius: 9999px;
  box-shadow: 0 8px 16px rgba(2, 132, 199, 0.3);
}
.mv-card__icon i {
  font-size: 2.5rem;
  color: #ffffff;
}
.mv-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0284c7;
  text-align: center;
  margin: 0 0 20px;
}
.mv-card__content {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
  text-align: center;
}
.mv-card__content p {
  margin: 0;
}
@media (max-width: 768px) {
  .mv-card {
    padding: 32px 24px;
  }
  .mv-card__icon {
    width: 70px;
    height: 70px;
  }
  .mv-card__icon i {
    font-size: 2rem;
  }
  .mv-card__title {
    font-size: 1.5rem;
  }
  .mv-card__content {
    font-size: 0.95rem;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal-overlay.active {
  display: flex;
}

.custom-modal {
  background: #ffffff;
  width: 90%;
  max-width: 800px;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: slideIn 0.3s ease;
}
.custom-modal .modal-header {
  background: #0284c7;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}
.custom-modal .modal-header .modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.custom-modal .modal-header .modal-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-modal .modal-header .modal-close:hover {
  transform: scale(1.1);
}
.custom-modal .modal-body {
  padding: 24px;
}
.custom-modal .modal-body .info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}
.custom-modal .modal-body .info-row:last-child {
  border-bottom: none;
}
.custom-modal .modal-body .info-row .info-icon {
  color: #38bdf8;
  font-size: 1.4rem;
  width: 24px;
  text-align: center;
  margin-top: 0;
}
.custom-modal .modal-body .info-row .info-content {
  flex: 1;
  font-size: 1.1rem;
  color: #1e293b;
  line-height: 1.5;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}
.custom-modal .modal-body .modal-action {
  margin-top: 24px;
}
.custom-modal .modal-body .modal-action .btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0284c7;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.custom-modal .modal-body .modal-action .btn-map:hover {
  background: #0369a1;
  color: #ffffff;
}
.custom-modal .modal-body .map-embed-wrapper {
  margin-top: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #f8fafc;
}
.custom-modal .modal-body .map-embed-wrapper iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
@media (max-width: 768px) {
  .custom-modal .modal-body .map-embed-wrapper iframe {
    height: 260px;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.payment-card {
  cursor: pointer;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.payment-card:hover .payment-card__header {
  background-color: rgb(1.7462686567, 115.2537313433, 173.7537313433);
}
.payment-card__header {
  background-color: #0284c7;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}
.payment-card__header .payment-card__title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.payment-card__header .payment-card__title-group i {
  font-size: 1.5rem;
  color: #ffffff;
}
.payment-card__header .payment-card__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.payment-card__header .card-type-badge {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-transform: uppercase;
}
.payment-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.payment-card .payment-info-group .payment-address {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.payment-card .payment-info-group .payment-address::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #94a3b8;
  margin-right: 8px;
}
.payment-card .payment-info-group .payment-phone {
  margin: 0;
  font-size: 0.95rem;
  color: #0284c7;
  font-weight: 500;
}
.payment-card .payment-info-group .payment-phone i {
  color: #94a3b8;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.document-image-wrapper {
  text-align: center;
  margin: 40px 0;
}
.document-image-wrapper a {
  display: inline-block;
  text-decoration: none;
}
.document-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}
.document-image-wrapper img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.news-card:hover .news-card__img img {
  transform: scale(1.05);
}
.news-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card__img .news-card__date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #0284c7;
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.news-card__img .news-card__date i {
  margin-right: 0.375rem;
}
.news-card__content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card__content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__content p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
  flex: 1;
}
.news-card__content .news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0284c7;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: auto;
}
.news-card__content .news-card__link i {
  transition: transform 0.3s ease;
}
.news-card__content .news-card__link:hover {
  color: #0369a1;
}
.news-card__content .news-card__link:hover i {
  transform: translateX(3px);
}

.announcement-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.announcement-card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.announcement-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.announcement-card:hover .announcement-card__arrow {
  background: #0369a1;
}
.announcement-card__date {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 90px;
  padding: 1rem;
  background: linear-gradient(135deg, #0284c7 0%, #0c4a6e 100%);
  color: #ffffff;
  text-align: center;
}
.announcement-card__date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.announcement-card__date .month {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.announcement-card__date .year {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.125rem;
}
.announcement-card__content {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.announcement-card__content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.announcement-card__content .announcement-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.announcement-card__content .announcement-card__meta .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
}
.announcement-card__content .announcement-card__meta .badge--type {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
}
.announcement-card__content .announcement-card__meta .badge--active {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.announcement-card__content .announcement-card__meta .badge--expired {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.announcement-card__content .announcement-card__meta .badge i {
  font-size: 0.75rem;
}
.announcement-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  background: #0284c7;
  color: #ffffff;
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 576px) {
  .announcement-card {
    flex-direction: column;
  }
  .announcement-card__date {
    flex-direction: row;
    gap: 0.5rem;
    min-width: auto;
    padding: 0.75rem 1rem;
  }
  .announcement-card__date .day {
    font-size: 1.5rem;
  }
  .announcement-card__date .month,
  .announcement-card__date .year {
    font-size: 0.75rem;
    margin: 0;
  }
  .announcement-card__arrow {
    display: none;
  }
}

.search-hero {
  background: linear-gradient(135deg, #0284c7 0%, #0c4a6e 100%);
  padding: 100px 0 80px;
  margin-top: 114px;
  position: relative;
  overflow: hidden;
}
.search-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23f8fafc' d='M0,40 C480,100 960,0 1440,40 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}
.search-hero .container {
  width: 100%;
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
.search-hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.search-hero .search-box {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  background: #ffffff;
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.search-hero .search-box input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #1e293b;
}
.search-hero .search-box input:focus {
  outline: none;
}
.search-hero .search-box input::placeholder {
  color: #94a3b8;
}
.search-hero .search-box button {
  padding: 1rem 2rem;
  background: #0284c7;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.search-hero .search-box button:hover {
  background: #0369a1;
}
.search-hero .search-box button i {
  margin-right: 0.5rem;
}
@media (max-width: 576px) {
  .search-hero .search-box {
    flex-direction: column;
  }
  .search-hero .search-box button {
    width: 100%;
  }
}

.search-main {
  background: #f8fafc;
  padding: 40px 0 80px;
  min-height: 50vh;
}
.search-main > .container {
  width: 100%;
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.search-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.search-info p {
  font-size: 0.95rem;
  color: #475569;
}
.search-info p strong {
  color: #0284c7;
}
.search-info p .count {
  font-weight: 700;
  color: #0f172a;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-result {
  display: flex;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-result:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.search-result:hover .search-result__img img {
  transform: scale(1.05);
}
.search-result__img {
  position: relative;
  width: 200px;
  min-height: 150px;
  overflow: hidden;
  flex-shrink: 0;
}
.search-result__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.search-result__img .type-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: #0284c7;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-transform: uppercase;
}
.search-result__content {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
.search-result__content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.search-result__content h3 mark {
  background: rgba(245, 158, 11, 0.3);
  color: inherit;
  padding: 0 0.125rem;
  border-radius: 2px;
}
.search-result__content p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.search-result__content p mark {
  background: rgba(245, 158, 11, 0.3);
  color: inherit;
  padding: 0 0.125rem;
  border-radius: 2px;
}
.search-result__content .search-result__meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #64748b;
}
.search-result__content .search-result__meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.search-result__content .search-result__meta span i {
  color: #38bdf8;
}
@media (max-width: 576px) {
  .search-result {
    flex-direction: column;
  }
  .search-result__img {
    width: 100%;
    height: 180px;
  }
}

.search-no-results {
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.search-no-results .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 9999px;
  font-size: 2rem;
  color: #94a3b8;
}
.search-no-results h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}
.search-no-results p {
  color: #64748b;
  margin-bottom: 2rem;
}
.search-no-results .suggestions {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 0.5rem;
}
.search-no-results .suggestions h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.75rem;
}
.search-no-results .suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-no-results .suggestions ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
}
.search-no-results .suggestions ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0284c7;
}

.contact-hero {
  background: linear-gradient(135deg, #0284c7 0%, #0c4a6e 100%);
  padding: 80px 0 60px;
  margin-top: 114px;
  position: relative;
  overflow: hidden;
}
.contact-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23f8fafc' d='M0,40 C480,100 960,0 1440,40 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}
.contact-hero .container {
  width: 100%;
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.contact-hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}
.contact-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.contact-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-hero .breadcrumb a:hover {
  color: #ffffff;
}
.contact-hero .breadcrumb i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.contact-hero .breadcrumb span {
  color: #38bdf8;
  font-weight: 500;
}

.contact-main {
  background: #f8fafc;
  padding: 40px 0 80px;
}
.contact-main > .container {
  width: 100%;
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-map {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 450px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .contact-map {
    height: 300px;
  }
}

.contact-bottom-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 992px) {
  .contact-bottom-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.contact-info-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f1f5f9;
}
.contact-info-card .info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-info-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-card .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(2, 132, 199, 0.1);
  border-radius: 0.5rem;
  color: #0284c7;
  flex-shrink: 0;
}
.contact-info-card .info-item .content {
  flex: 1;
}
.contact-info-card .info-item .content .label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}
.contact-info-card .info-item .content a,
.contact-info-card .info-item .content p {
  font-size: 1rem;
  color: #1e293b;
  text-decoration: none;
  line-height: 1.5;
}
.contact-info-card .info-item .content a:hover {
  color: #0284c7;
}
.contact-info-card .call-center {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #0284c7 0%, #0c4a6e 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-info-card .call-center .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #ffffff;
  font-size: 1.25rem;
}
.contact-info-card .call-center .content span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.contact-info-card .call-center .content strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.contact-form-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f1f5f9;
}
.contact-form-card .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .contact-form-card .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-form-card .form-row--full {
  grid-template-columns: 1fr;
}
.contact-form-card .form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.5rem;
}
.contact-form-card .form-group label .required {
  color: #ef4444;
}
.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: #1e293b;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-form-card .form-group input:focus,
.contact-form-card .form-group select:focus,
.contact-form-card .form-group textarea:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}
.contact-form-card .form-group input::placeholder,
.contact-form-card .form-group select::placeholder,
.contact-form-card .form-group textarea::placeholder {
  color: #94a3b8;
}
.contact-form-card .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-card .form-group .form-error {
  display: block;
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 0.375rem;
}
.contact-form-card .form-kvkk {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
}
.contact-form-card .form-kvkk label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.5;
}
.contact-form-card .form-kvkk label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #0284c7;
}
.contact-form-card .form-kvkk label a {
  color: #0284c7;
  text-decoration: none;
  font-weight: 600;
}
.contact-form-card .form-kvkk label a:hover {
  text-decoration: underline;
}
.contact-form-card .form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 576px) {
  .contact-form-card .form-footer {
    flex-direction: column;
  }
}
.contact-form-card .form-footer .recaptcha-wrapper {
  flex-shrink: 0;
}
.contact-form-card .form-footer .submit-btn {
  padding: 1rem 2.5rem;
  background: #0284c7;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form-card .form-footer .submit-btn:hover {
  background: #0369a1;
  transform: translateY(-2px);
}
.contact-form-card .form-footer .submit-btn i {
  font-size: 0.9rem;
}
@media (max-width: 576px) {
  .contact-form-card .form-footer .submit-btn {
    width: 100%;
    justify-content: center;
  }
}
.contact-form-card .alert {
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.contact-form-card .alert--success {
  background: rgba(16, 185, 129, 0.1);
  color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.contact-form-card .alert--error {
  background: rgba(239, 68, 68, 0.1);
  color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.yonetim-kurulu-wrapper {
  margin: 32px 0;
}

.yonetim-baskan {
  max-width: 280px;
  margin: 0 auto 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .yonetim-baskan {
    max-width: 100%;
    margin-bottom: 32px;
  }
}

.yonetim-uyeler {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .yonetim-uyeler {
    gap: 20px;
  }
}

.yonetim-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.yonetim-card:hover {
  border-color: #38bdf8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .yonetim-card {
    padding: 14px;
  }
}

.yonetim-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 12px;
  border: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
  .yonetim-image {
    margin-bottom: 10px;
  }
}

.yonetim-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .yonetim-name {
    font-size: 0.95rem;
  }
}

.yonetim-unvan {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .yonetim-unvan {
    font-size: 0.8rem;
  }
}

.yonetim-gorev {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0284c7;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
  .yonetim-gorev {
    font-size: 0.75rem;
    padding-top: 6px;
  }
}

.genel-kurul-baskan-resim {
  display: block;
  margin: 0 0 40px;
}
.genel-kurul-baskan-resim img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .genel-kurul-baskan-resim {
    margin-bottom: 32px;
  }
}

.genel-kurul-wrapper {
  margin: 32px 0;
}

.genel-kurul-kararlar-wrapper {
  margin: 32px 0;
}
.genel-kurul-kararlar-wrapper h3 {
  margin: 40px 0 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #1e293b;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 10px;
  font-size: 1.25rem;
}
.genel-kurul-kararlar-wrapper h3:first-of-type {
  margin-top: 20px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   3.1.4 ORGANİZASYON ŞEMASI (FLAT DAHA TEMİZ TASARIM)
   ───────────────────────────────────────────────────────────────────────────── */
.organizasyon-wrapper {
  margin: 30px 0;
}
.organizasyon-wrapper details {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.organizasyon-wrapper details > summary {
  list-style: none;
}
.organizasyon-wrapper details > summary::-webkit-details-marker {
  display: none;
}
.organizasyon-wrapper > details {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.organizasyon-wrapper > details[open] > summary {
  background: #0284c7;
  border-radius: 0.5rem 0.5rem 0 0;
}
.organizasyon-wrapper > details[open] > summary .yetkili-ad,
.organizasyon-wrapper > details[open] > summary .yetkili-unvan,
.organizasyon-wrapper > details[open] > summary .birim-ad {
  color: #ffffff;
}
.organizasyon-wrapper > details[open] > summary::after {
  border-color: #ffffff;
  transform: translateY(-30%) rotate(225deg);
}
.organizasyon-wrapper summary {
  position: relative;
  padding: 16px 50px 16px 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}
.organizasyon-wrapper summary:hover {
  background: #f8fafc;
}
.organizasyon-wrapper summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}
.organizasyon-wrapper summary .birim-ad {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
}
.organizasyon-wrapper summary .yetkili-ad {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 4px;
  color: #334155;
}
.organizasyon-wrapper summary .yetkili-unvan {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 2px;
}
.organizasyon-wrapper .org-content {
  padding: 10px 0 10px 20px;
}
.organizasyon-wrapper .org-content details {
  border: none;
  border-left: 2px solid #f1f5f9;
  margin-bottom: 4px;
  border-radius: 0;
}
.organizasyon-wrapper .org-content details[open] {
  border-left-color: #38bdf8;
}
.organizasyon-wrapper .org-content details[open] > summary::after {
  transform: translateY(-30%) rotate(225deg);
  border-color: #0284c7;
}
.organizasyon-wrapper .org-content details[open] > summary .birim-ad {
  color: #0284c7;
}
.organizasyon-wrapper .org-content details summary {
  padding: 12px 40px 12px 16px;
  border-radius: 0.5rem;
}
.organizasyon-wrapper .org-content details summary:hover {
  background: rgba(2, 132, 199, 0.03);
}
.organizasyon-wrapper .org-content details summary .birim-ad {
  font-size: 0.95rem;
}
.organizasyon-wrapper .org-content details .org-content {
  padding-left: 15px;
}
.organizasyon-wrapper .org-content .org-leaf {
  padding: 10px 15px;
  margin-bottom: 4px;
  margin-left: 16px;
  background: #ffffff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}
.organizasyon-wrapper .org-content .org-leaf:hover {
  background: #f8fafc;
  border-color: #e2e8f0;
}
.organizasyon-wrapper .org-content .org-leaf .birim-ad {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}
.organizasyon-wrapper .org-content .org-leaf .yetkili-ad {
  font-size: 0.85rem;
  margin-top: 3px;
  color: #475569;
}
.organizasyon-wrapper .org-content .org-leaf .yetkili-unvan {
  font-size: 0.75rem;
  color: #94a3b8;
}
.organizasyon-wrapper .person-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  padding: 0 20px 15px 16px;
}
.organizasyon-wrapper .person-list .person-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 12px;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.organizasyon-wrapper .person-list .person-card:hover {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-color: rgba(2, 132, 199, 0.3);
}
.organizasyon-wrapper .person-list .person-card .p-name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;
}
.organizasyon-wrapper .person-list .person-card .p-role {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.75rem;
  padding: 3px 8px;
  background: #f8fafc;
  color: #334155;
  border-radius: 9999px;
  font-weight: 600;
}
.organizasyon-wrapper .action-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.organizasyon-wrapper .ozgecmis-btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #0284c7;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  cursor: pointer;
}
.organizasyon-wrapper .ozgecmis-btn:hover {
  background-color: #ffffff;
  color: #0284c7;
  border-color: #0284c7;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.genel-kurul-uyeler {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
@media (max-width: 768px) {
  .genel-kurul-uyeler {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.genel-kurul-arama {
  margin-bottom: 20px;
  max-width: 620px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 1px solid rgba(2, 132, 199, 0.14);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}
.genel-kurul-arama__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.genel-kurul-arama__label {
  display: inline-block;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.01em;
}
.genel-kurul-arama__meta {
  margin: 0;
  font-size: 0.78rem;
  color: #475569;
}
.genel-kurul-arama__input-wrapper {
  position: relative;
  max-width: 100%;
}
.genel-kurul-arama__input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #0284c7;
  font-size: 0.9rem;
  pointer-events: none;
}
.genel-kurul-arama__input {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0 98px 0 42px;
  font-size: 0.95rem;
  color: #0f172a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.genel-kurul-arama__input::placeholder {
  color: #64748b;
}
.genel-kurul-arama__input:focus {
  outline: none;
  border-color: rgba(2, 132, 199, 0.6);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.14), 0 8px 18px rgba(2, 132, 199, 0.12);
  background: #ffffff;
}
.genel-kurul-arama__clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 10px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.genel-kurul-arama__clear i {
  position: static;
  transform: none;
  margin-left: 4px;
  font-size: 0.68rem;
  color: inherit;
}
.genel-kurul-arama__clear:hover {
  background: rgba(2, 132, 199, 0.2);
}
.genel-kurul-arama__clear:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.24);
}
.genel-kurul-arama__no-result {
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .genel-kurul-arama {
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 12px;
  }
  .genel-kurul-arama__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 10px;
  }
  .genel-kurul-arama__input {
    height: 48px;
    font-size: 0.9rem;
    padding-right: 88px;
  }
  .genel-kurul-arama__clear {
    right: 6px;
    font-size: 0.72rem;
  }
}

.genel-kurul-uye {
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 0.5rem;
  border-left: 3px solid #cbd5e1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.genel-kurul-uye:hover {
  background: #ffffff;
  border-left-color: #38bdf8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.genel-kurul-uye.baskan {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(56, 189, 248, 0.05) 100%);
  border-left-color: #0284c7;
}
.genel-kurul-uye.baskan .uye-ad {
  color: #0369a1;
  font-weight: 700;
}
.genel-kurul-uye.baskan .uye-gorev {
  color: #0284c7;
  font-weight: 600;
}
@media (max-width: 768px) {
  .genel-kurul-uye {
    padding: 10px 14px;
  }
}

.uye-ad {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 768px) {
  .uye-ad {
    font-size: 0.9rem;
  }
}

.uye-gorev {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  color: #475569;
}
@media (max-width: 768px) {
  .uye-gorev {
    font-size: 0.8rem;
  }
}

.parti-rozet {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.parti-rozet.parti-chp {
  background: #e30a17;
}
.parti-rozet.parti-akparti {
  background: #f7941d;
}
.parti-rozet.parti-mhp {
  background: #da251c;
}
.parti-rozet.parti-iyiparti {
  background: #00a7e0;
}
@media (max-width: 768px) {
  .parti-rozet {
    font-size: 0.7rem;
    padding: 2px 8px;
  }
}

.kamu-hizmet-content .kamu-hizmet-aciklama {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}
.kamu-hizmet-content .kamu-hizmet-aciklama h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #0f172a;
  font-weight: 700;
}
.kamu-hizmet-content .kamu-hizmet-aciklama p {
  text-align: justify;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 15px;
}
.kamu-hizmet-content .kamu-hizmet-aciklama .guncel-tarih {
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kamu-hizmet-content .kamu-hizmet-aciklama .guncel-tarih i {
  color: #0284c7;
}

.page-header--dams {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-header--dams::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M0,50 Q25,40 50,50 T100,50' stroke='rgba(255,255,255,0.05)' fill='none' stroke-width='2'/%3E%3C/svg%3E") repeat;
  opacity: 0.3;
}

.dams-summary {
  padding: 3rem 0;
  background: #f8fafc;
}

.summary-cards {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .summary-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .summary-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.summary-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
.summary-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.summary-card--primary {
  border-left-color: #0284c7;
}
.summary-card--primary .summary-card__icon {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  color: #ffffff;
}
.summary-card--info {
  border-left-color: #3b82f6;
}
.summary-card--info .summary-card__icon {
  background: linear-gradient(135deg, #93c5fd, #3b82f6);
  color: #ffffff;
}
.summary-card--success {
  border-left-color: #10b981;
}
.summary-card--success .summary-card__icon {
  background: linear-gradient(135deg, #6ee7b7, #10b981);
  color: #ffffff;
}
.summary-card--warning {
  border-left-color: #f59e0b;
}
.summary-card--warning .summary-card__icon {
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
  color: #ffffff;
}
.summary-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.summary-card__content {
  flex: 1;
}
.summary-card__content h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.summary-card__value {
  font-size: 1.875rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin: 0;
}
.summary-card__label {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}
.summary-card__change {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.summary-card__change--down {
  color: #ef4444;
}
.summary-card__change--up {
  color: #10b981;
}

.dams-list {
  padding: 4rem 0;
  background: #ffffff;
}

.dams-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .dams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dam-detail-card {
  background: #ffffff;
  border-radius: 1.5rem;
  border: 2px solid #f1f5f9;
  overflow: hidden;
  transition: all 0.3s ease;
}
.dam-detail-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: #38bdf8;
  transform: translateY(-4px);
}
.dam-detail-card__header {
  background: linear-gradient(135deg, #0369a1, #0284c7);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.dam-detail-card__header h3 {
  color: #ffffff;
  margin: 0;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dam-detail-card__header h3 i {
  font-size: 1rem;
}
.dam-detail-card__gauge {
  padding: 2rem;
  display: flex;
  justify-content: center;
  background: #f8fafc;
}
.dam-detail-card__info {
  padding: 1.5rem;
}

.dam-status {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.dam-status--good {
  color: #047857;
  border: 2px solid #10b981;
}
.dam-status--warning {
  color: #c2410c;
  border: 2px solid #f59e0b;
}
.dam-status--danger {
  color: #b91c1c;
  border: 2px solid #ef4444;
}

.circular-progress {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(var(--color) calc(var(--progress) * 1%), #e2e8f0 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.circular-progress__inner {
  width: 130px;
  height: 130px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}
.circular-progress__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color);
}

.dam-info-grid {
  display: grid;
  gap: 1rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.info-item:last-child {
  border-bottom: none;
}
.info-item__label {
  font-size: 0.9375rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-item__label i {
  color: #0284c7;
  font-size: 1rem;
}
.info-item__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.dams-info {
  padding: 3rem 0 4rem;
  background: #f8fafc;
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #1e3a8a;
  font-weight: 500;
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.legend-dot--good {
  background: #10b981;
}
.legend-dot--warning {
  background: #f59e0b;
}
.legend-dot--danger {
  background: #ef4444;
}

.page-header--outages {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  position: relative;
}
.page-header--outages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") repeat;
}

.outages-filters {
  padding: 2rem 0;
  background: #ffffff;
  border-bottom: 2px solid #f1f5f9;
}

.filters-card {
  background: #f8fafc;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 2px dashed #cbd5e1;
}

.filters-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .filters-grid {
    grid-template-columns: repeat(2, 1fr) repeat(2, auto);
    align-items: end;
  }
}
@media (min-width: 1024px) {
  .filters-grid {
    grid-template-columns: repeat(3, 1fr) auto;
  }
}

.form-select {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  font-size: 0.9375rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #1e293b;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat right 1rem center;
  background-size: 12px;
  appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-select:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}
.form-select:hover {
  border-color: #94a3b8;
}

.filter-btn {
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
  border: none;
  border-radius: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.filter-btn i {
  margin-right: 0.5rem;
}
.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(2, 132, 199, 0.3);
}
.filter-btn:active {
  transform: translateY(0);
}

.outages-detail {
  padding: 3rem 0;
  background: #ffffff;
}

.outages-detail__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .outages-detail__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .outages-detail__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.outage-detail-card {
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.outage-detail-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: #38bdf8;
  transform: translateY(-4px);
}
.outage-detail-card__header {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.outage-detail-card__body {
  padding: 1.75rem;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.location-info i {
  color: #ffffff;
  font-size: 1.25rem;
}
.location-info h3 {
  color: #ffffff;
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}
.status-pill i {
  font-size: 0.875rem;
}
.status-pill--active {
  background: rgba(239, 68, 68, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.status-pill--planned {
  background: rgba(59, 130, 246, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.status-pill--emergency {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: pulse-emergency 2s infinite;
}
.status-pill--completed {
  background: rgba(16, 185, 129, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

@keyframes pulse-emergency {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}
.detail-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

.detail-item--full {
  grid-column: 1/-1;
}

.detail-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.detail-label i {
  color: #0284c7;
  font-size: 1rem;
}

.detail-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.neighborhoods-list {
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, #38bdf8, rgba(2, 132, 199, 0.1));
  border-radius: 1rem;
  border-left: 4px solid #0284c7;
  color: #0369a1;
  font-weight: 600;
}

.duration-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border-radius: 9999px;
  font-weight: 700;
}
.duration-badge--urgent {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
}
.duration-badge--completed {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
}

.type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
}
.type-badge--maintenance {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
}
.type-badge--repair {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
}
.type-badge--emergency {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
}

.detail-description {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 1rem;
  line-height: 1.6;
  color: #334155;
  border: 1px solid #e2e8f0;
  font-weight: 500;
}

.outages-help {
  padding: 3rem 0 4rem;
  background: #ffffff;
}

.help-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .help-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.help-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.help-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #0284c7;
  transform: translateY(-4px);
}
.help-card:hover .help-card__icon {
  transform: scale(1.1);
}
.help-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  color: #ffffff;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.3s ease;
}
.help-card h3 {
  color: #0f172a;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.help-card p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.help-card .btn {
  width: 100%;
}

.page-header--analysis {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
  position: relative;
}
.page-header--analysis::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30,15 Q20,25 30,35 T30,55' stroke='rgba(255,255,255,0.1)' fill='none' stroke-width='2'/%3E%3C/svg%3E") repeat;
}

.analysis-filters {
  padding: 2rem 0;
  background: #ffffff;
  border-bottom: 2px solid #f1f5f9;
}

.analysis-filters__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .analysis-filters__grid {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
  }
}

.analysis-results {
  padding: 3rem 0;
  background: #f8fafc;
}
.analysis-results #resultsContainer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.analysis-card {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid #f1f5f9;
  transition: all 0.3s ease;
}
.analysis-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: #0891b2;
  transform: translateY(-2px);
}
.analysis-card__header {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 3px solid #0891b2;
}
.analysis-card__note {
  padding: 1rem 1.5rem;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #92400e;
  line-height: 1.6;
}
.analysis-card__note i {
  color: #f59e0b;
  font-size: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.sample-location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0c4a6e;
}
.sample-location i {
  color: #0891b2;
  font-size: 1.125rem;
}

.sample-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0c4a6e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.sample-date i {
  color: #0891b2;
}

.analysis-table-wrapper {
  overflow-x: auto;
  padding: 1.5rem;
}

.analysis-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.analysis-table thead {
  background: linear-gradient(135deg, #0c4a6e, #0891b2);
  color: #ffffff;
}
.analysis-table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.analysis-table thead th:first-child {
  border-radius: 0.5rem 0 0 0;
}
.analysis-table thead th:last-child {
  border-radius: 0 0.5rem 0 0;
}
.analysis-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
}
.analysis-table tbody tr:hover {
  background: #f0f9ff;
}
.analysis-table tbody tr:last-child {
  border-bottom: none;
}
.analysis-table tbody tr td {
  padding: 0.875rem 1rem;
  color: #1e293b;
}
.analysis-table tbody tr td:first-child {
  font-weight: 600;
  color: #0f172a;
}

.result-value {
  font-weight: 700;
  color: #0369a1;
  line-height: 1.15;
}
.result-value--success {
  color: #047857;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  padding: 0.2rem 0.55rem;
  border-radius: 0.45rem;
  display: inline-flex;
  align-items: center;
}
.result-value--warning {
  color: #c2410c;
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  padding: 0.2rem 0.55rem;
  border-radius: 0.45rem;
  display: inline-flex;
  align-items: center;
}
.result-value--danger {
  color: #b91c1c;
  background: linear-gradient(135deg, #fecaca, #fca5a5);
  padding: 0.2rem 0.55rem;
  border-radius: 0.45rem;
  display: inline-flex;
  align-items: center;
}

.analysis-info {
  padding: 3rem 0 4rem;
  background: #ffffff;
}

.info-card {
  background: linear-gradient(135deg, #f0f9ff, #ffffff);
  border: 2px solid #0891b2;
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
}
.info-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(8, 145, 178, 0.3);
}
.info-card__icon i {
  color: #ffffff;
  font-size: 2rem;
}
.info-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 1rem;
}
.info-card p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #334155;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.info-card p strong {
  color: #0891b2;
  font-weight: 600;
}

.standards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .standards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.standard-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 1rem;
  border: 2px solid #e0f2fe;
  font-weight: 600;
  color: #0c4a6e;
  transition: all 0.3s ease;
}
.standard-item:hover {
  border-color: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.2);
}
.standard-item i {
  color: #10b981;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .analysis-table-wrapper {
    padding: 1rem;
  }
  .analysis-table {
    font-size: 0.75rem;
  }
  .analysis-table thead th {
    padding: 0.75rem 0.5rem;
    font-size: 0.6875rem;
  }
  .analysis-table tbody td {
    padding: 0.625rem 0.5rem;
  }
  .sample-location {
    font-size: 0.875rem;
  }
  .analysis-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .info-card {
    padding: 1.5rem;
  }
  .info-card h3 {
    font-size: 1.375rem;
  }
  .info-card p {
    font-size: 0.9375rem;
  }
}
.etik-section {
  padding: 2rem 0;
  background: #f8fafc;
}
.etik-section:first-of-type {
  padding-top: 3rem;
}
.etik-section:last-of-type {
  padding-bottom: 4rem;
}
.etik-section .container {
  width: 100%;
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.etik-card {
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.etik-card__header {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.etik-card__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}
.etik-card__title i {
  font-size: 1.375rem;
}
.etik-card__search {
  position: relative;
  display: flex;
  align-items: center;
}
.etik-card__search .etik-search-input {
  padding: 0.625rem 1rem 0.625rem 2.5rem;
  border: none;
  border-radius: 1rem;
  font-size: 0.875rem;
  width: 220px;
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  transition: all 0.2s ease;
}
.etik-card__search .etik-search-input::placeholder {
  color: #64748b;
}
.etik-card__search .etik-search-input:focus {
  outline: none;
  background: #ffffff;
  width: 280px;
}
@media (max-width: 768px) {
  .etik-card__search .etik-search-input {
    width: 100%;
    min-width: 200px;
  }
  .etik-card__search .etik-search-input:focus {
    width: 100%;
  }
}
.etik-card__search i {
  position: absolute;
  left: 0.875rem;
  color: #64748b;
  font-size: 0.875rem;
  pointer-events: none;
}
@media (max-width: 768px) {
  .etik-card__search {
    width: 100%;
  }
}

.etik-table-wrapper {
  overflow-x: auto;
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .etik-table-wrapper {
    padding: 1rem;
  }
}

.etik-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.etik-table thead {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}
.etik-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: #ffffff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.etik-table thead th:first-child {
  width: 130px;
}
.etik-table thead th:last-child {
  width: 140px;
  text-align: center;
}
.etik-table tbody tr {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}
.etik-table tbody tr:nth-child(even) {
  background: #f8fafc;
}
.etik-table tbody tr:hover {
  background: rgb(191.4388059701, 232.9611940299, 254.3611940299);
}
.etik-table tbody td {
  padding: 1rem 1.25rem;
  color: #334155;
  vertical-align: middle;
  line-height: 1.6;
  border-bottom: 1px solid #e2e8f0;
}
.etik-table tbody td:first-child {
  font-weight: 600;
  color: #0369a1;
  white-space: nowrap;
}
.etik-table tbody td:last-child {
  text-align: center;
}
.etik-table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  .etik-table thead {
    display: none;
  }
  .etik-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    background: #ffffff;
  }
  .etik-table tbody tr:nth-child(even) {
    background: #ffffff;
  }
  .etik-table tbody td {
    display: block;
    text-align: left !important;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #f1f5f9;
  }
  .etik-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #0284c7;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
  }
  .etik-table tbody td:first-child {
    background: #0284c7;
    color: #ffffff;
    font-weight: 600;
    white-space: normal;
  }
  .etik-table tbody td:first-child::before {
    color: rgba(255, 255, 255, 0.8);
  }
  .etik-table tbody td:last-child {
    text-align: center !important;
    border-bottom: none;
  }
}

.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.25);
}
.btn-pdf i {
  font-size: 1rem;
}
.btn-pdf:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}
@media (max-width: 768px) {
  .btn-pdf {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
  }
}

.etik-info {
  padding: 2rem 0 4rem;
  background: #f8fafc;
}
.etik-info .container {
  width: 100%;
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.etik-info .info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}
.etik-info .info-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.3);
}
.etik-info .info-card__icon i {
  font-size: 2rem;
  color: #ffffff;
}
.etik-info .info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 1rem;
}
.etik-info .info-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.etik-info .info-card p strong {
  color: #0891b2;
  font-weight: 600;
}

.director-message {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid #0284c7;
}
.director-message h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0284c7;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.director-message h2::before {
  content: "\f007";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.25rem;
}
.director-message__text h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 1.5rem 0 1rem;
}
.director-message__text h3:first-child {
  margin-top: 0;
}
.director-message__text h3 strong {
  color: #0369a1;
}
.director-message__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1.25rem;
  text-align: justify;
}
.director-message__text p:last-child {
  margin-bottom: 0;
}
.director-message__text p strong {
  color: #0f172a;
  font-weight: 600;
}
@media (max-width: 768px) {
  .director-message {
    padding: 1.5rem;
  }
  .director-message h2 {
    font-size: 1.25rem;
  }
  .director-message__text h3 {
    font-size: 1.15rem;
  }
  .director-message__text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

.project-attachments {
  margin-bottom: 2rem;
}
.project-attachments h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0369a1;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.project-attachments h3::before {
  content: "\f15c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #38bdf8;
}

.attachments-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .attachments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .attachments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.attachment-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.attachment-card:hover {
  border-color: #38bdf8;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  text-decoration: none !important;
  color: #1e293b;
}
.attachment-card:hover .attachment-card__icon {
  background: #0284c7;
  color: #ffffff;
  transform: scale(1.1);
}
.attachment-card:hover * {
  text-decoration: none !important;
}
.attachment-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 0.5rem;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.attachment-card__content {
  flex: 1;
}
.attachment-card__content h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.25rem;
  line-height: 1.4;
}
.attachment-card__content p {
  font-size: 0.85rem;
  color: #475569;
  margin: 0;
  line-height: 1.4;
}
.attachment-card__content .file-size {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
  background: #f1f5f9;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  display: inline-block;
}
@media (max-width: 768px) {
  .attachment-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  .attachment-card__icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  .attachment-card__content h4 {
    font-size: 1rem;
  }
}

.project-location .location-address {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #38bdf8, rgba(2, 132, 199, 0.1));
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #0284c7;
}
.project-location .location-address i {
  color: #0284c7;
  font-size: 1.25rem;
}
.project-location .location-address span {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0369a1;
  line-height: 1.4;
}
.project-location .location-map #project-map {
  border: 3px solid #e2e8f0;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.project-location .location-map .map-actions {
  margin-top: 1rem;
  text-align: center;
}
.project-location .location-map .map-actions .btn-map-external {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #0284c7;
  color: #ffffff;
  text-decoration: none;
  border-radius: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.project-location .location-map .map-actions .btn-map-external:hover {
  background: #0369a1;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.project-location .location-map .map-actions .btn-map-external i {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .project-location .location-address {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .project-location .location-address i {
    font-size: 1.5rem;
  }
  .project-location .location-map #project-map {
    height: 300px !important;
  }
  .project-location .location-map .map-actions .btn-map-external {
    width: 100%;
    justify-content: center;
  }
}

.related-projects-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .related-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .related-projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-project-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1.5rem;
  overflow: hidden;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.related-project-card:hover {
  border-color: #38bdf8;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
  text-decoration: none;
  color: #1e293b;
}
.related-project-card:hover .related-project-card__image img {
  transform: scale(1.1);
}
.related-project-card:hover .related-project-card__content h4 {
  color: #0284c7;
}
.related-project-card__image {
  height: 180px;
  overflow: hidden;
}
.related-project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.related-project-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-project-card__content h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-project-card__content p {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .related-project-card__image {
    height: 150px;
  }
  .related-project-card__content {
    padding: 1.25rem;
  }
  .related-project-card__content h4 {
    font-size: 1rem;
  }
  .related-project-card__content p {
    font-size: 0.875rem;
  }
}

.projects-search {
  margin-bottom: 2rem;
}

.search-form {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: 2px dashed #cbd5e1;
}
.search-form__input {
  position: relative;
  display: flex;
  align-items: center;
}
.search-form__input input {
  flex: 1;
  padding: 1rem 1.25rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  color: #1e293b;
  background: #ffffff;
  transition: all 0.3s ease;
}
.search-form__input input:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}
.search-form__input input::placeholder {
  color: #94a3b8;
}
.search-form__input::before {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 1.25rem;
  color: #94a3b8;
  font-size: 1rem;
  z-index: 1;
  pointer-events: none;
}
.search-form__button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #0284c7;
  border: none;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-form__button:hover {
  background: #0369a1;
  transform: translateY(-50%) scale(1.05);
}
.search-form__button:active {
  transform: translateY(-50%) scale(0.95);
}
@media (max-width: 576px) {
  .search-form {
    padding: 1.25rem;
  }
  .search-form__input input {
    padding: 0.875rem 1rem 0.875rem 2.75rem;
  }
  .search-form__input::before {
    left: 1rem;
    font-size: 0.9rem;
  }
  .search-form__button {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }
}

.projects-list {
  margin-bottom: 2rem;
}

.projects-table {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid #f1f5f9;
}
.projects-table__header {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  padding: 0;
}
.projects-table__head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
}
.projects-table__head .col-image,
.projects-table__head .col-project {
  padding: 1.5rem 2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .projects-table__head {
    grid-template-columns: 120px 1fr;
  }
  .projects-table__head .col-image,
  .projects-table__head .col-project {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .projects-table__head {
    grid-template-columns: 100px 1fr;
  }
  .projects-table__head .col-image,
  .projects-table__head .col-project {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
}
.projects-table__body .project-row:not(:last-child) {
  border-bottom: 2px solid #f1f5f9;
}

.project-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}
.project-row:hover {
  background: #f8fafc;
  box-shadow: inset 0 0 0 2px rgba(2, 132, 199, 0.1);
}
.project-row:hover .project-row__image img {
  transform: scale(1.05);
}
.project-row:hover .project-row__title {
  color: #0284c7;
}
.project-row__image {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-row__image img {
  width: 100%;
  max-width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 2px solid #e2e8f0;
  transition: transform 0.3s ease;
}
.project-row__content {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-row__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.project-row__date {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.project-row__date::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  color: #38bdf8;
}
.project-row__summary {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .project-row {
    grid-template-columns: 120px 1fr;
  }
  .project-row__image {
    padding: 1rem 1.25rem;
  }
  .project-row__image img {
    max-width: 80px;
    height: 60px;
  }
  .project-row__content {
    padding: 1rem 1.25rem;
  }
  .project-row__title {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .project-row {
    grid-template-columns: 1fr;
  }
  .project-row__image {
    padding: 1rem;
    justify-content: flex-start;
  }
  .project-row__image img {
    max-width: 100px;
    height: 70px;
  }
  .project-row__content {
    padding: 0 1rem 1rem;
  }
  .project-row__title {
    font-size: 1.125rem;
  }
}

.projects-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-top: 3px solid #f1f5f9;
}
.projects-pagination .pagination-controls {
  display: flex;
  gap: 0.5rem;
}
.projects-pagination .pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.75rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.3s ease;
}
.projects-pagination .pagination-link:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  transform: translateY(-2px);
}
.projects-pagination .pagination-link.active {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}
.projects-pagination .pagination-info {
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
}
@media (max-width: 576px) {
  .projects-pagination {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .projects-pagination .pagination-controls {
    order: 2;
  }
  .projects-pagination .pagination-info {
    order: 1;
  }
}

@media (max-width: 480px) {
  .projects-pagination .pagination-link {
    min-width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}
.project-section {
  margin-bottom: 3rem;
}
.project-section:last-child {
  margin-bottom: 0;
}
.project-section h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0284c7;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #38bdf8;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.project-section h2::before {
  width: 6px;
  height: 6px;
  background: #0284c7;
  border-radius: 9999px;
  content: "";
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .project-section h2 {
    font-size: 1.5rem;
  }
}

.project-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
}
.project-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0369a1;
  margin: 2rem 0 1rem;
}
.project-content h3:first-child {
  margin-top: 0;
}
.project-content h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 1.5rem 0 0.75rem;
}
.project-content p {
  margin-bottom: 1.25rem;
  text-align: justify;
}
.project-content p:last-child {
  margin-bottom: 0;
}
.project-content ol,
.project-content ul {
  margin: 1.5rem 0;
  padding-left: 1.75rem;
}
.project-content ol li,
.project-content ul li {
  margin-bottom: 1rem;
  line-height: 1.7;
  text-align: justify;
}
.project-content ol li:last-child,
.project-content ul li:last-child {
  margin-bottom: 0;
}
.project-content ol {
  counter-reset: project-counter;
}
.project-content ol li {
  counter-increment: project-counter;
  position: relative;
  padding-left: 0.5rem;
  list-style: none;
}
.project-content ol li::before {
  content: counter(project-counter);
  position: absolute;
  left: -1.75rem;
  top: 0;
  width: 24px;
  height: 24px;
  background: #0284c7;
  color: #ffffff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.project-content ul li {
  position: relative;
}
.project-content ul li::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background: #38bdf8;
  border-radius: 9999px;
}
.project-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(56, 189, 248, 0.05) 100%);
  border-left: 4px solid #0284c7;
  border-radius: 0 1rem 1rem 0;
  font-style: italic;
  color: #475569;
}
.project-content blockquote p {
  margin: 0;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .project-content {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .project-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
  }
  .project-content h4 {
    font-size: 1.125rem;
  }
  .project-content ol,
  .project-content ul {
    padding-left: 1.5rem;
  }
  .project-content ol li,
  .project-content ul li {
    margin-bottom: 0.875rem;
  }
  .project-content ol li::before {
    left: -1.5rem;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
  .project-content ul li::before {
    left: -1.5rem;
  }
}

.project-files-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .project-files-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .project-files-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-file-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1.5rem;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.project-file-card:hover {
  border-color: #0284c7;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  text-decoration: none;
  color: #1e293b;
}
.project-file-card:hover .project-file-card__icon {
  background: #0284c7;
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}
.project-file-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.75rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.project-file-card__icon .fa-file-pdf {
  color: #e53e3e;
}
.project-file-card__icon .fa-file-word {
  color: #2b77d4;
}
.project-file-card__icon .fa-file-excel {
  color: #0d9d58;
}
.project-file-card__content {
  flex: 1;
}
.project-file-card__content h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.5rem;
  line-height: 1.4;
}
.project-file-card__content p {
  font-size: 0.9375rem;
  color: #475569;
  margin: 0;
  line-height: 1.4;
}
.project-file-card__content .file-size {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
  background: #f1f5f9;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  display: inline-block;
}
@media (max-width: 768px) {
  .project-file-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  .project-file-card__icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  .project-file-card__content h4 {
    font-size: 1rem;
  }
}

.project-location .location-address {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #38bdf8, rgba(2, 132, 199, 0.1));
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #0284c7;
}
.project-location .location-address i {
  color: #0284c7;
  font-size: 1.25rem;
}
.project-location .location-address span {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0369a1;
  line-height: 1.4;
}
.project-location .location-map #project-map {
  border: 3px solid #e2e8f0;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.project-location .location-map .map-actions {
  margin-top: 1rem;
  text-align: center;
}
.project-location .location-map .map-actions .btn-map-external {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #0284c7;
  color: #ffffff;
  text-decoration: none;
  border-radius: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.project-location .location-map .map-actions .btn-map-external:hover {
  background: #0369a1;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.project-location .location-map .map-actions .btn-map-external i {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .project-location .location-address {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .project-location .location-address i {
    font-size: 1.5rem;
  }
  .project-location .location-map #project-map {
    height: 300px !important;
  }
  .project-location .location-map .map-actions .btn-map-external {
    width: 100%;
    justify-content: center;
  }
}

.related-projects-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .related-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .related-projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-project-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1.5rem;
  overflow: hidden;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.related-project-card:hover {
  border-color: #38bdf8;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
  text-decoration: none;
  color: #1e293b;
}
.related-project-card:hover .related-project-card__image img {
  transform: scale(1.1);
}
.related-project-card:hover .related-project-card__content h4 {
  color: #0284c7;
}
.related-project-card__image {
  height: 180px;
  overflow: hidden;
}
.related-project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.related-project-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-project-card__content h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-project-card__content p {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .related-project-card__image {
    height: 150px;
  }
  .related-project-card__content {
    padding: 1.25rem;
  }
  .related-project-card__content h4 {
    font-size: 1rem;
  }
  .related-project-card__content p {
    font-size: 0.875rem;
  }
}

.projects-search {
  margin-bottom: 2rem;
}

.search-form {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: 2px dashed #cbd5e1;
}
.search-form__input {
  position: relative;
  display: flex;
  align-items: center;
}
.search-form__input input {
  flex: 1;
  padding: 1rem 1.25rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  color: #1e293b;
  background: #ffffff;
  transition: all 0.3s ease;
}
.search-form__input input:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}
.search-form__input input::placeholder {
  color: #94a3b8;
}
.search-form__input::before {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 1.25rem;
  color: #94a3b8;
  font-size: 1rem;
  z-index: 1;
  pointer-events: none;
}
.search-form__button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #0284c7;
  border: none;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-form__button:hover {
  background: #0369a1;
  transform: translateY(-50%) scale(1.05);
}
.search-form__button:active {
  transform: translateY(-50%) scale(0.95);
}
@media (max-width: 576px) {
  .search-form {
    padding: 1.25rem;
  }
  .search-form__input input {
    padding: 0.875rem 1rem 0.875rem 2.75rem;
  }
  .search-form__input::before {
    left: 1rem;
    font-size: 0.9rem;
  }
  .search-form__button {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }
}

.projects-list {
  margin-bottom: 2rem;
}

.projects-table {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid #f1f5f9;
}
.projects-table__header {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  padding: 0;
}
.projects-table__head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
}
.projects-table__head .col-image,
.projects-table__head .col-project {
  padding: 1.5rem 2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .projects-table__head {
    grid-template-columns: 120px 1fr;
  }
  .projects-table__head .col-image,
  .projects-table__head .col-project {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .projects-table__head {
    grid-template-columns: 100px 1fr;
  }
  .projects-table__head .col-image,
  .projects-table__head .col-project {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
}
.projects-table__body .project-row:not(:last-child) {
  border-bottom: 2px solid #f1f5f9;
}

.project-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}
.project-row:hover {
  background: #f8fafc;
  box-shadow: inset 0 0 0 2px rgba(2, 132, 199, 0.1);
}
.project-row:hover .project-row__image img {
  transform: scale(1.05);
}
.project-row:hover .project-row__title {
  color: #0284c7;
}
.project-row__image {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-row__image img {
  width: 100%;
  max-width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 2px solid #e2e8f0;
  transition: transform 0.3s ease;
}
.project-row__content {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-row__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.project-row__date {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.project-row__date::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  color: #38bdf8;
}
.project-row__summary {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .project-row {
    grid-template-columns: 120px 1fr;
  }
  .project-row__image {
    padding: 1rem 1.25rem;
  }
  .project-row__image img {
    max-width: 80px;
    height: 60px;
  }
  .project-row__content {
    padding: 1rem 1.25rem;
  }
  .project-row__title {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .project-row {
    grid-template-columns: 1fr;
  }
  .project-row__image {
    padding: 1rem;
    justify-content: flex-start;
  }
  .project-row__image img {
    max-width: 100px;
    height: 70px;
  }
  .project-row__content {
    padding: 0 1rem 1rem;
  }
  .project-row__title {
    font-size: 1.125rem;
  }
}

.projects-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-top: 3px solid #f1f5f9;
}
.projects-pagination .pagination-controls {
  display: flex;
  gap: 0.5rem;
}
.projects-pagination .pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.75rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.3s ease;
}
.projects-pagination .pagination-link:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  transform: translateY(-2px);
}
.projects-pagination .pagination-link.active {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}
.projects-pagination .pagination-info {
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
}
@media (max-width: 576px) {
  .projects-pagination {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .projects-pagination .pagination-controls {
    order: 2;
  }
  .projects-pagination .pagination-info {
    order: 1;
  }
}

@media (max-width: 480px) {
  .projects-pagination .pagination-link {
    min-width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}
.project-section {
  margin-bottom: 3rem;
}
.project-section:last-child {
  margin-bottom: 0;
}
.project-section h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0284c7;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #38bdf8;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.project-section h2::before {
  width: 6px;
  height: 6px;
  background: #0284c7;
  border-radius: 9999px;
  content: "";
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .project-section h2 {
    font-size: 1.5rem;
  }
}

.project-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
}
.project-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0369a1;
  margin: 2rem 0 1rem;
}
.project-content h3:first-child {
  margin-top: 0;
}
.project-content h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 1.5rem 0 0.75rem;
}
.project-content p {
  margin-bottom: 1.25rem;
  text-align: justify;
}
.project-content p:last-child {
  margin-bottom: 0;
}
.project-content ol,
.project-content ul {
  margin: 1.5rem 0;
  padding-left: 1.75rem;
}
.project-content ol li,
.project-content ul li {
  margin-bottom: 1rem;
  line-height: 1.7;
  text-align: justify;
}
.project-content ol li:last-child,
.project-content ul li:last-child {
  margin-bottom: 0;
}
.project-content ol {
  counter-reset: project-counter;
}
.project-content ol li {
  counter-increment: project-counter;
  position: relative;
  padding-left: 0.5rem;
  list-style: none;
}
.project-content ol li::before {
  content: counter(project-counter);
  position: absolute;
  left: -1.75rem;
  top: 0;
  width: 24px;
  height: 24px;
  background: #0284c7;
  color: #ffffff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.project-content ul li {
  position: relative;
}
.project-content ul li::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background: #38bdf8;
  border-radius: 9999px;
}
.project-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(56, 189, 248, 0.05) 100%);
  border-left: 4px solid #0284c7;
  border-radius: 0 1rem 1rem 0;
  font-style: italic;
  color: #475569;
}
.project-content blockquote p {
  margin: 0;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .project-content {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .project-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
  }
  .project-content h4 {
    font-size: 1.125rem;
  }
  .project-content ol,
  .project-content ul {
    padding-left: 1.5rem;
  }
  .project-content ol li,
  .project-content ul li {
    margin-bottom: 0.875rem;
  }
  .project-content ol li::before {
    left: -1.5rem;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
  .project-content ul li::before {
    left: -1.5rem;
  }
}

.project-files-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .project-files-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .project-files-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-file-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1.5rem;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.project-file-card:hover {
  border-color: #0284c7;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  text-decoration: none;
  color: #1e293b;
}
.project-file-card:hover .project-file-card__icon {
  background: #0284c7;
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}
.project-file-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.75rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.project-file-card__icon .fa-file-pdf {
  color: #e53e3e;
}
.project-file-card__icon .fa-file-word {
  color: #2b77d4;
}
.project-file-card__icon .fa-file-excel {
  color: #0d9d58;
}
.project-file-card__content {
  flex: 1;
}
.project-file-card__content h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.5rem;
  line-height: 1.4;
}
.project-file-card__content p {
  font-size: 0.9375rem;
  color: #475569;
  margin: 0;
  line-height: 1.4;
}
.project-file-card__content .file-size {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
  background: #f1f5f9;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  display: inline-block;
}
@media (max-width: 768px) {
  .project-file-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  .project-file-card__icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  .project-file-card__content h4 {
    font-size: 1rem;
  }
}

.project-location .location-address {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #38bdf8, rgba(2, 132, 199, 0.1));
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #0284c7;
}
.project-location .location-address i {
  color: #0284c7;
  font-size: 1.25rem;
}
.project-location .location-address span {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0369a1;
  line-height: 1.4;
}
.project-location .location-map #project-map {
  border: 3px solid #e2e8f0;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.project-location .location-map .map-actions {
  margin-top: 1rem;
  text-align: center;
}
.project-location .location-map .map-actions .btn-map-external {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #0284c7;
  color: #ffffff;
  text-decoration: none;
  border-radius: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.project-location .location-map .map-actions .btn-map-external:hover {
  background: #0369a1;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.project-location .location-map .map-actions .btn-map-external i {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .project-location .location-address {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .project-location .location-address i {
    font-size: 1.5rem;
  }
  .project-location .location-map #project-map {
    height: 300px !important;
  }
  .project-location .location-map .map-actions .btn-map-external {
    width: 100%;
    justify-content: center;
  }
}

.related-projects-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .related-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .related-projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-project-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1.5rem;
  overflow: hidden;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.related-project-card:hover {
  border-color: #38bdf8;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
  text-decoration: none;
  color: #1e293b;
}
.related-project-card:hover .related-project-card__image img {
  transform: scale(1.1);
}
.related-project-card:hover .related-project-card__content h4 {
  color: #0284c7;
}
.related-project-card__image {
  height: 180px;
  overflow: hidden;
}
.related-project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.related-project-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-project-card__content h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-project-card__content p {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .related-project-card__image {
    height: 150px;
  }
  .related-project-card__content {
    padding: 1.25rem;
  }
  .related-project-card__content h4 {
    font-size: 1rem;
  }
  .related-project-card__content p {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .project-section {
    margin-bottom: 2.5rem;
  }
  .project-files-grid {
    grid-template-columns: 1fr;
  }
  .related-projects-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.lab-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lab-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.lab-section-title {
  color: #0284c7;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid rgba(2, 132, 199, 0.1);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.lab-content .lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.lab-content h1 {
  color: #0f172a;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lab-content h3 {
  color: #0369a1;
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lab-content h4 {
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lab-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lab-content ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}
.lab-content ul li {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lab-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0284c7;
  font-weight: bold;
  font-size: 1.1rem;
}
.lab-content ol {
  list-style: decimal;
  padding-left: 2rem;
  margin: 1rem 0;
}
.lab-content ol li {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding-left: 0.5rem;
}
.lab-content strong {
  color: #0f172a;
  font-weight: 600;
}

.lab-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lab-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.08) 0%, rgba(2, 132, 199, 0.04) 100%);
  border: 2px solid rgba(2, 132, 199, 0.2);
  border-radius: 0.75rem;
  color: #0f172a;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lab-link i {
  font-size: 1.5rem;
  color: #0284c7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.lab-link:hover {
  color: #0284c7;
  border-color: #0284c7;
  transform: translateX(8px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.lab-link:hover i {
  transform: scale(1.1);
}

.lab-detail-container {
  max-width: 100%;
}

.lab-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: 0.75rem;
  color: #334155;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lab-back-btn i {
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lab-back-btn:hover {
  color: #0284c7;
  border-color: #0284c7;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.lab-back-btn:hover i {
  transform: translateX(-4px);
}

.lab-detail-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.lab-detail-title {
  color: #0284c7;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid rgba(2, 132, 199, 0.1);
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lab-detail-title i {
  font-size: 1.5rem;
  color: rgba(2, 132, 199, 0.3);
}

.lab-detail-content h3 {
  color: #0369a1;
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lab-detail-content h3:first-child {
  margin-top: 0;
}
.lab-detail-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lab-detail-content p strong {
  color: #0f172a;
  font-weight: 600;
}
.lab-detail-content ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}
.lab-detail-content ul li {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lab-detail-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0284c7;
  font-weight: bold;
  font-size: 1.1rem;
}
.lab-detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.lab-detail-content table th,
.lab-detail-content table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #e2e8f0;
}
.lab-detail-content table th {
  background: #0284c7;
  color: #ffffff;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lab-detail-content table tr:nth-child(even) {
  background: #f8fafc;
}
.lab-detail-content table tr:hover {
  background: rgba(2, 132, 199, 0.05);
}
.lab-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lab-detail-content img:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

.facility-info-box {
  background: rgba(2, 132, 199, 0.05);
  border-left: 4px solid #0284c7;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0.25rem;
}
.facility-info-box h4 {
  color: #0284c7;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.facility-info-box p {
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.aritma-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (max-width: 768px) {
  .aritma-container {
    padding: 1.5rem 1rem;
  }
}

.aritma-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.aritma-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.aritma-card:last-child {
  margin-bottom: 0;
}
.aritma-card .kategori-baslik {
  all: unset;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  background: #0284c7;
  padding: 1.25rem 1.75rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
@media (max-width: 768px) {
  .aritma-card .kategori-baslik {
    font-size: 1.25rem;
    padding: 1rem 1.25rem;
  }
}
.aritma-card .kategori-baslik i {
  font-size: 1.5rem;
  color: #ffffff;
}
@media (max-width: 768px) {
  .aritma-card .kategori-baslik i {
    font-size: 1.25rem;
  }
}

.kategori-icerik {
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .kategori-icerik {
    padding: 1rem;
  }
}

.tesis-liste {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.tesis-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: #f8fafc;
  border-left: 3px solid transparent;
  border-radius: 0.25rem;
  text-decoration: none;
  color: #0f172a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .tesis-link {
    padding: 1rem;
    font-size: 0.95rem;
    gap: 0.875rem;
  }
}
.tesis-link i {
  font-size: 1.35rem;
  color: #0284c7;
  transition: all 0.3s ease;
  min-width: 1.35rem;
}
@media (max-width: 768px) {
  .tesis-link i {
    font-size: 1.15rem;
    min-width: 1.15rem;
  }
}
.tesis-link:hover {
  background: #ffffff;
  border-left-color: #0284c7;
  transform: translateX(4px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.tesis-link:hover i {
  transform: scale(1.1);
  color: rgb(1.7462686567, 115.2537313433, 173.7537313433);
}

.aritma-detay-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (max-width: 768px) {
  .aritma-detay-container {
    padding: 1rem;
  }
}
.aritma-detay-container .geri-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: #ffffff;
  color: #334155;
  text-decoration: none;
  border: 2px solid #cbd5e1;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .aritma-detay-container .geri-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}
.aritma-detay-container .geri-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.aritma-detay-container .geri-btn:hover {
  border-color: #0284c7;
  color: #0284c7;
  transform: translateX(-5px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.aritma-detay-container .geri-btn:hover i {
  transform: translateX(-3px);
}
.aritma-detay-container .detay-baslik {
  margin: 2rem 0 1.5rem 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .aritma-detay-container .detay-baslik {
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0 1rem 0;
    flex-direction: column;
    text-align: center;
  }
}
.aritma-detay-container .detay-baslik i {
  font-size: 2rem;
  color: #ffffff;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .aritma-detay-container .detay-baslik i {
    font-size: 1.5rem;
  }
}
.aritma-detay-container .detay-content p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}
.aritma-detay-container .detay-content h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin: 2.5rem 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #0284c7;
  position: relative;
}
@media (max-width: 768px) {
  .aritma-detay-container .detay-content h2 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
  }
}
.aritma-detay-container .detay-content h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: rgb(50.0597014925, 183.9402985075, 252.9402985075);
}
.aritma-detay-container .detay-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0284c7;
  margin: 2rem 0 1rem;
}
@media (max-width: 768px) {
  .aritma-detay-container .detay-content h3 {
    font-size: 1.15rem;
  }
}
.aritma-detay-container .detay-content ul,
.aritma-detay-container .detay-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.aritma-detay-container .detay-content ul li,
.aritma-detay-container .detay-content ol li {
  font-size: 1rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.aritma-detay-container .detay-content ul li::marker,
.aritma-detay-container .detay-content ol li::marker {
  color: #0284c7;
  font-weight: bold;
}
.aritma-detay-container .detay-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 2rem 0;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.aritma-detay-container .detay-content img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.aritma-detay-container .detay-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.aritma-detay-container .detay-content table thead {
  background: linear-gradient(135deg, #0284c7, rgb(1.5940298507, 105.2059701493, 158.6059701493));
  color: #ffffff;
}
.aritma-detay-container .detay-content table thead th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.aritma-detay-container .detay-content table tbody tr {
  background: #ffffff;
  transition: all 0.2s ease;
}
.aritma-detay-container .detay-content table tbody tr:nth-child(even) {
  background: #f8fafc;
}
.aritma-detay-container .detay-content table tbody tr:hover {
  background: rgba(2, 132, 199, 0.08);
}
.aritma-detay-container .detay-content table tbody td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.95rem;
  color: #334155;
}
.aritma-detay-container .detay-content table tbody td:first-child {
  font-weight: 600;
  color: #0f172a;
}
@media (max-width: 768px) {
  .aritma-detay-container .detay-content table {
    font-size: 0.85rem;
  }
  .aritma-detay-container .detay-content table thead th,
  .aritma-detay-container .detay-content table tbody td {
    padding: 1rem;
  }
}

.oc-wrapper {
  margin-top: 10px;
}

.oc-tree,
.oc-tree ol {
  list-style: none;
  margin: 0;
  padding-left: 1.2rem;
}

.oc-children {
  list-style: none;
  margin: 0;
  padding-left: 1.5rem;
}

.oc-children--two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 10px;
  padding-left: 1.5rem;
}

.oc-tree > li {
  padding-left: 0;
}

.oc-tree li {
  position: relative;
  margin: 10px 0;
}

.oc-children > li::after {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 0;
  bottom: 0;
  border-left: 1px solid #b9c7db;
}

.oc-children > li:last-child::after {
  bottom: auto;
  height: 1rem;
}

.oc-children > li::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 1rem;
  width: 0.9rem;
  border-top: 1px solid #b9c7db;
}

.oc-tree > li::before,
.oc-tree > li::after {
  display: none;
}

.oc-children--two-col > li::before,
.oc-children--two-col > li::after {
  display: none;
}

.oc-node {
  background: #ffffff;
  border: 1px solid #dbe5f2;
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 3px 10px rgba(13, 49, 116, 0.08);
  text-align: center;
}

.oc-node--branch {
  border-left: 4px solid #0d3174;
}

.oc-node--leaf {
  border-left: 4px solid #0f8a4a;
}

.oc-details > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.oc-details > summary::-webkit-details-marker {
  display: none;
}

.oc-summary-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
  align-items: center;
  text-align: center;
}

.oc-toggle-icon {
  display: inline-block;
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #9fb3d1;
  color: #0d3174;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  background: #f7faff;
}

.oc-details > summary .oc-toggle-icon::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

.oc-details[open] > summary .oc-toggle-icon::before {
  content: "-";
}

.oc-title {
  font-weight: 700;
  color: #0d3174;
}

.oc-name {
  font-weight: 600;
  color: #1e2a3a;
}

.oc-name-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2px;
  align-items: center;
}

.oc-role {
  color: #4e617c;
  font-size: 0.9rem;
}

.oc-bio {
  display: inline-block;
  margin-top: 8px;
  background: #0f8a4a;
  color: #ffffff !important;
  border-radius: 999px;
  padding: 4px 10px;
  text-decoration: none;
  font-size: 0.8rem;
}
.oc-bio:visited, .oc-bio:hover, .oc-bio:active, .oc-bio:focus {
  color: #ffffff !important;
  background: #0b6f3b;
}

.org-detail-card {
  background: #ffffff;
  border: 1px solid #dbe5f2;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(13, 49, 116, 0.08);
  padding: 18px 20px;
}

.org-detail-card__header {
  text-align: center;
  border-bottom: 1px solid #e7edf7;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.org-detail-card__name {
  margin: 0;
  color: #0d3174;
  font-weight: 700;
  font-size: 1.8rem;
}

.org-detail-card__role {
  margin: 6px 0 0;
  color: #526888;
  font-weight: 500;
  font-size: 1.1rem;
}

.org-detail-card__content {
  line-height: 1.7;
  color: #223041;
}

.org-detail-card__content img {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 16px auto;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.org-detail-card__content p,
.org-detail-card__content li,
.org-detail-card__content h1,
.org-detail-card__content h2,
.org-detail-card__content h3,
.org-detail-card__content h4,
.org-detail-card__content h5,
.org-detail-card__content h6,
.org-detail-card__content strong,
.org-detail-card__content span,
.org-detail-card__content div {
  color: inherit;
}

@media (max-width: 768px) {
  .oc-tree,
  .oc-tree ol {
    padding-left: 0.8rem;
  }
  .oc-children {
    padding-left: 0.8rem;
  }
  .oc-children--two-col {
    grid-template-columns: 1fr;
    padding-left: 0.8rem;
  }
  .oc-children > li::after {
    left: -0.5rem;
  }
  .oc-children > li::before {
    left: -0.5rem;
    width: 0.5rem;
  }
  .oc-node {
    padding: 9px 10px;
  }
  .org-detail-card {
    padding: 14px;
  }
  .org-detail-card__name {
    font-size: 1.35rem;
  }
  .org-detail-card__role {
    font-size: 1rem;
  }
  .org-detail-card__content img {
    max-width: 92%;
  }
}
