/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import Font Plus Jakarta Sans */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');
/* Import Font Awesome untuk ikon */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Scrollbar Gradient Style */
::-webkit-scrollbar {
    width: 9.0px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 143, 148, 0.05);
    border-radius: 7.5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #008f94, #00b5bc, #008f94);
    border-radius: 7.5px;
    border: 2.25px solid rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 0 4.5px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #007a7f, #008f94, #007a7f);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #008f94 rgba(0, 143, 148, 0.05);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding-top: 60.0px;
}

.container {
    width: 98%;
    max-width: 1200.0px;
    margin: 0 auto;
    padding: 0 11.25px;
}

a {
    text-decoration: none;
    color: #008f94;
    transition: all 0.3s ease;
}

a:hover {
    color: #007a7f;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 9.0px;
}

/* Header Styles - Modern 2025 */
.modern-header {
    background-color: rgba(255, 255, 255);
    backdrop-filter: blur(9.0px);
    -webkit-backdrop-filter: blur(9.0px);
    padding: 7.5px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    border-bottom: none;
    border-radius: 0 0 22.5px 22.5px;
}

.modern-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.25px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 143, 148, 0.2) 10%, 
        #008f94 30%, 
        #00b5bc 50%, 
        #008f94 70%, 
        rgba(0, 143, 148, 0.2) 90%, 
        transparent 100%);
    border-radius: 0 0 22.5px 22.5px;
    box-shadow: 0 0.75px 7.5px rgba(0, 143, 148, 0.2);
}

.modern-header .container {
    padding: 0 5px;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo-img {
    width: 45.0px;
    height: 45.0px;
    margin-right: 7.5px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    color: #008f94;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -0.375px;
}

.logo p {
    color: #666;
    font-size: 0.75rem;
    font-weight: 400;
}

.modern-nav ul {
    display: flex;
    list-style: none;
    gap: 6.0px;
    margin: 0;
    padding: 0;
}

.modern-nav ul li a {
    display: block;
    padding: 6.0px 12.0px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 22.5px;
    position: relative;
    background-color: transparent;
}

.modern-nav ul li a span {
    position: relative;
    z-index: 1;
}

.modern-nav ul li a:hover, 
.modern-nav ul li a.active {
    color: #008f94;
    background: rgba(0, 143, 148, 0.08);
    border: 0.75px solid rgba(0, 143, 148, 0.1);
}

/* Menu Toggle for Mobile - Improved */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22.5px;
    height: 15.75px;
    cursor: pointer;
    z-index: 200;
    transition: all 0.3s ease;
}

.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 2.25px;
    background: linear-gradient(90deg, #008f94, #00b5bc);
    border-radius: 2.25px;
    transition: all 0.3s ease;
    box-shadow: 0 0.75px 2.25px rgba(0, 0, 0, 0.1);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(6.75px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-6.75px) rotate(-45deg);
}

.filter-container {
    background-color: #fff!important;
    padding: 10px!important;
    height: 55px!important;
    border-radius: 9.0px!important;
    box-shadow: 0 3.0px 9.0px rgba(0, 0, 0, 0.05)!important;
    border: 0.75px solid rgba(0, 143, 148, 0.1)!important;
}

/* Responsive Styles for Modern Header */
@media (max-width: 576.0px) {
    body {
        padding-top: 48.75px;
    }
    
    .navbar-container {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 201;
    }
    
    .modern-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(11.25px);
        -webkit-backdrop-filter: blur(11.25px);
        box-shadow: -3.75px 0 15.0px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 150;
        padding-top: 60.0px;
        border-radius: 22.5px 0 0 22.5px;
        order: 3;
        flex-basis: 100%;
    }
    
    .modern-nav.active {
        right: 0;
    }
    
    .logo {
        flex: 1;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        gap: 7.5px;
    }
    
    .modern-nav::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 2.25px;
        background: linear-gradient(180deg, 
            transparent 0%, 
            rgba(0, 143, 148, 0.2) 10%, 
            #008f94 30%, 
            #00b5bc 50%, 
            #008f94 70%, 
            rgba(0, 143, 148, 0.2) 90%, 
            transparent 100%);
        border-radius: 22.5px 0 0 22.5px;
        box-shadow: -0.75px 0 7.5px rgba(0, 143, 148, 0.2);
    }
    
    .modern-nav ul {
        flex-direction: column;
        gap: 11.25px;
        padding: 0 22.5px;
    }
    
    .modern-nav ul li a {
        padding: 9.0px 15.0px;
        font-size: 0.825rem;
        border-radius: 11.25px;
        background: transparent;
        box-shadow: 0 1.5px 7.5px rgba(0, 0, 0, 0.03);
        border: 0.75px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .modern-nav ul li a:hover, 
    .modern-nav ul li a.active {
        color: #008f94;
        background: rgba(0, 143, 148, 0.08);
        border: 0.75px solid rgba(0, 143, 148, 0.1);
    }
}

/* Main Content Styles */
main {
    padding: 0;
}

main .container {
    padding: 30.0px 0;
}

/* Layout dengan Sidebar - Modern 2025 */
.main-layout {
    display: flex;
    gap: 15.0px;
    max-width: 1830.0px;
    margin: 0 auto;
    padding: 30.0px 11.25px 0;
}

.main-content {
    flex: 1;
    min-width: 0; /* Mencegah konten meluap */
}

.main-content .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.sidebar-left,
.sidebar-right {
    width: 210.0px;
    flex-shrink: 0;
}

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

.sidebar-content {
    background-color: #ecf3f4;
    border-radius: 18.0px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15.0px;
    padding: 15.0px 15.0px;
    animation: fadeInUp 0.6s ease-out forwards;
}

.sidebar-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.75px;
    background: linear-gradient(90deg, transparent, rgba(0, 143, 148, 0.3), transparent);
    border-radius: 18.0px 18.0px 0 0;
}

.sidebar-title {
    text-align: center;
    margin-bottom: 22.5px;
}

.sidebar-title h3 {
    font-size: 1.125rem;
    color: #008f94;
    position: relative;
    display: inline-block;
    padding-bottom: 7.5px;
    font-weight: 700;
    letter-spacing: -0.375px;
    margin: 0;
}

.sidebar-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2.25px;
    background: linear-gradient(90deg, transparent, #008f94, transparent);
    border-radius: 2.25px;
}

/* Sidebar Iklan */
.ad-container {
    padding: 0;
    text-align: center;
}

.ad-container p {
    margin-bottom: 11.25px;
    line-height: 1.5;
}

.ad-container p:first-child {
    font-weight: 700;
    color: #008f94;
    font-size: 0.825rem;
}

.ad-image {
    width: 100%;
    height: auto;
    border-radius: 9.0px;
    transition: transform 0.3s ease;
    max-height: 450.0px;
    object-fit: contain;
}


/* Sidebar Kontak */
.contact-info {
    padding: 0;
    margin-bottom: 18.75px;
}

.contact-info strong {
    display: block;
    color: #008f94;
    margin-bottom: 3.75px;
    font-weight: 600;
    margin-top: 11.25px;
    font-size: 0.750rem;
}

.contact-info strong:first-child {
    margin-top: 0;
}

.contact-info p {
    margin: 0 0 11.25px;
    font-size: 0.7125rem;
    color: #444;
    line-height: 1.5;
}

.contact-form {
    margin-top: 15.0px;
    border-top: 0.75px dashed rgba(0, 143, 148, 0.2);
    padding-top: 15.0px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 9.0px 11.25px;
    margin-bottom: 11.25px;
    border: 0.75px solid rgba(0, 143, 148, 0.2);
    border-radius: 6.0px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7125rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #008f94;
}

.contact-form button {
    width: 100%;
}

/* Responsive untuk Layout dengan Sidebar */
@media (max-width: 825.0px) {
    .sidebar-left {
        display: none; /* Sembunyikan sidebar iklan pada layar lebih kecil */
    }
    
    .main-layout {
        gap: 11.25px;
    }
}

@media (max-width: 675.0px) {
    .main-layout {
        flex-direction: column;
        padding-top: 15.0px;
    }
    
    .sidebar-right {
        width: 100%;
        margin-top: 30.0px;
    }
    
    .sticky-sidebar {
        position: static;
    }
}

/* Section Styles - Modern 2025 */
section {
    margin-bottom: 45.0px;
    border-radius: 18.0px;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 15.0px;
}

.section-title h2 {
    font-size: 1.65rem;
    color: #008f94;
    position: relative;
    display: inline-block;
    padding-bottom: 7.5px;
    font-weight: 700;
    letter-spacing: -0.375px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2.25px;
    background: linear-gradient(90deg, transparent, #008f94, transparent);
    border-radius: 2.25px;
}

.section-more {
    text-align: center;
    margin-top: 22.5px;
    font-size: 0.750rem;
}

/* Hero Section - Modern 2025 */
.hero {
    position: relative;
    color: #fff;
    padding: 0;
    margin: 0;
    text-align: center;
    margin-bottom: 37.5px;
    border-radius: 0 0 22.5px 22.5px;
    overflow: hidden;
    height: calc(100vh - 60.0px);
    min-height: 450.0px;
    max-height: 810.0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -60.0px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 143, 148, 0.3), transparent);
    z-index: 1;
}

.hero-content {
    max-width: 600.0px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 15.0px;
}

.hero h1 {
    font-size: 2.625rem;
    margin-bottom: 15.0px;
    font-weight: 800;
    letter-spacing: -0.75px;
    line-height: 1.2;
    text-shadow: 0 1.5px 7.5px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 0.975rem;
    margin-bottom: 26.25px;
    font-weight: 400;
    max-width: 525.0px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0.75px 3.75px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15.0px;
    flex-wrap: wrap;
    font-size: 0.750rem;
}

/* Button Styles - Modern 2025 */
.btn {
    display: inline-block;
    padding: 10.5px 22.5px;
    border-radius: 9.0px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.225px;
    font-size: 0.750rem;
}

.btn-primary {
    background-color: #008f94;
    color: #fff;
}

.btn-primary:hover {
    background-color: #007a7f;
    color: #fff;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: #008f94;
}

.btn-secondary:hover {
    background-color: #fff;
}

.btn-outline {
    border: 1.5px solid #008f94;
    color: #008f94;
    background-color: transparent;
    padding: 9.0px 21.0px;
    font-size: 0.750rem;
}

.btn-outline:hover {
    background-color: #008f94;
    color: #fff;
}

/* Intro Section - Modern 2025 */
.intro-section {
    background-color: #ecf3f4;
    padding: 30.0px 22.5px;
    border-radius: 18.0px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.75px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 143, 148, 0.2) 10%, 
        #008f94 30%, 
        #00b5bc 50%, 
        #008f94 70%, 
        rgba(0, 143, 148, 0.2) 90%, 
        transparent 100%);
    border-radius: 7.5px 7.5px 0 0;
    opacity: 0.8;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30.0px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-text {
    flex: 1;
    min-width: 225.0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-text p {
    margin-bottom: 15.0px;
    font-size: 0.7875rem;
    line-height: 1.7;
    text-align: justify;
}

.intro-text a.btn {
    margin-top: 7.5px;
    display: inline-block;
}

.intro-image {
    flex: 1;
    min-width: 225.0px;
    text-align: center;
}

.intro-image img {
    border-radius: 15.0px;
    border: 0.75px solid rgba(0, 143, 148, 0.1);
    transition: transform 0.5s ease;
}

/* Kitab Section - Modern 2025 */
.kitab-section {
    background-color: #ecf3f4;
    padding: 30.0px 22.5px;
    border-radius: 18.0px;
    position: relative;
    overflow: hidden;
}

.kitab-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.75px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 143, 148, 0.2) 10%, 
        #008f94 30%, 
        #00b5bc 50%, 
        #008f94 70%, 
        rgba(0, 143, 148, 0.2) 90%, 
        transparent 100%);
    border-radius: 7.5px 7.5px 0 0;
    opacity: 0.8;
}

.kitab-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(187.5px, 1fr));
    gap: 22.5px;
}

.kitab-card {
    background-color: #fff;
    border-radius: 12.0px;
    overflow: hidden;
    border: 0.75px solid rgba(0, 143, 148, 0.1);
    transition: all 0.4s ease;
}

.kitab-card img {
    width: 100%;
    height: 187.5px;
    object-fit: cover;
    border-radius: 12.0px 12.0px 0 0;
}

.kitab-info {
    padding: 15.0px;
}

.kitab-info h3 {
    margin-bottom: 7.5px;
    color: #008f94;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: -0.225px;
}

.kitab-author {
    color: #666;
    font-style: italic;
    margin-bottom: 6.0px;
    font-weight: 400;
}

.kitab-category {
    display: inline-block;
    background-color: rgba(0, 143, 148, 0.08);
    color: #008f94;
    padding: 3.75px 9.0px;
    border-radius: 15.0px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Ustadz Section - Modern 2025 */
.ustadz-section {
    background-color: #ecf3f4;
    padding: 30.0px 22.5px;
    border-radius: 18.0px;
    position: relative;
    overflow: hidden;
}

.ustadz-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.75px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 143, 148, 0.2) 10%, 
        #008f94 30%, 
        #00b5bc 50%, 
        #008f94 70%, 
        rgba(0, 143, 148, 0.2) 90%, 
        transparent 100%);
    border-radius: 7.5px 7.5px 0 0;
    opacity: 0.8;
}

.ustadz-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165.0px, 1fr));
    gap: 22.5px;
}

.ustadz-card {
    background-color: #fff;
    border-radius: 12.0px;
    overflow: hidden;
    border: 0.75px solid rgba(0, 143, 148, 0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.ustadz-card img {
    width: 100%;
    height: 165.0px;
    object-fit: cover;
    border-radius: 12.0px 12.0px 0 0;
}

.ustadz-info {
    padding: 15.0px;
}

.ustadz-info h3 {
    margin-bottom: 6.0px;
    color: #008f94;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: -0.225px;
}

.ustadz-info p {
    color: #666;
    font-size: 0.7125rem;
}

/* Jadwal Section - Modern 2025 */
.jadwal-section {
    background-color: #ecf3f4;
    padding: 30.0px 22.5px;
    border-radius: 18.0px;
    position: relative;
    overflow: hidden;
}

.jadwal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.75px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 143, 148, 0.2) 10%, 
        #008f94 30%, 
        #00b5bc 50%, 
        #008f94 70%, 
        rgba(0, 143, 148, 0.2) 90%, 
        transparent 100%);
    border-radius: 7.5px 7.5px 0 0;
    opacity: 0.8;
}

.jadwal-table-container {
    overflow-x: auto;
    border-radius: 12.0px;
    border: 0.75px solid rgba(0, 143, 148, 0.1);
}

.jadwal-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #fff;
    overflow: hidden;
}

.jadwal-table th, .jadwal-table td {
    padding: 12.0px 15.0px;
    text-align: left;
}

.jadwal-table th {
    font-weight: 600;
    letter-spacing: -0.225px;
    font-size: 0.750rem;
}

.jadwal-table td {
    border-top: 0.75px solid rgba(0, 0, 0, 0.05);
}

.jadwal-table thead {
    background-color: #008f94;
    color: #fff;
}

.jadwal-table tbody tr:hover {
    background-color: rgba(0, 143, 148, 0.04);
}

/* Artikel Section - Modern 2025 */
.artikel-section {
    background-color: #ecf3f4;
    padding: 30.0px 22.5px;
    border-radius: 18.0px;
    position: relative;
    overflow: hidden;
    
}

.artikel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.75px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 143, 148, 0.2) 10%, 
        #008f94 30%, 
        #00b5bc 50%, 
        #008f94 70%, 
        rgba(0, 143, 148, 0.2) 90%, 
        transparent 100%);
    border-radius: 7.5px 7.5px 0 0;
    opacity: 0.8;
}

.artikel-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240.0px, 1fr));
    gap: 22.5px;
}

.artikel-card {
    background-color: #fff;
    border-radius: 12.0px;
    overflow: hidden;
    border: 0.75px solid rgba(0, 143, 148, 0.1);
    transition: all 0.4s ease;
}


.artikel-card img {
    width: 100%;
    height: 150.0px;
    object-fit: cover;
    border-radius: 12.0px 12.0px 0 0;
}

.artikel-info {
    padding: 18.75px;
}

.artikel-info h3 {
    margin-bottom: 9.0px;
    color: #008f94;
    font-weight: 700;
    font-size: 0.975rem;
    letter-spacing: -0.225px;
    line-height: 1.4;
}

.artikel-meta {
    color: #666;
    font-size: 0.675rem;
    margin-bottom: 9.0px;
    display: flex;
    align-items: center;
    gap: 6.0px;
}

.artikel-excerpt {
    color: #333;
    margin-bottom: 13.5px;
    line-height: 1.6;
    font-size: 0.7125rem;
}

/* Empty State - Modern 2025 */
.empty-state {
    text-align: center;
    padding: 30.0px;
    background-color: rgba(0, 143, 148, 0.04);
    border-radius: 12.0px;
    border: 0.75px solid rgba(0, 143, 148, 0.1);
    color: #666;
    font-size: 0.75rem;
}

/* Footer Styles - Modern 2025 */
footer {
    background-color: #008f94;
    background-image: linear-gradient(135deg, #008f94, #00b5bc);
    color: #fff;
    padding: 26.25px 0 11.25px;
    border-radius: 18.75px 18.75px 0 0;
    margin-top: 37.5px;
    position: relative;
    overflow: hidden;
}

footer .container {
    width: 98%;
    max-width: 1200.0px;
    padding: 0 3.75px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 11.25px;
    margin-bottom: 18.75px;
    position: relative;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 135.0px;
    max-width: calc(33.33% - 7.5px);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(3.75px);
    padding: 9.0px;
    border-radius: 7.5px;
    transition: all 0.3s ease;
}

/* Menambahkan perataan teks untuk footer section pertama (kiri) */
.footer-section:first-child {
    text-align: left;
}

/* Menambahkan perataan teks untuk footer section kedua (kanan) */
.footer-section:last-child {
    text-align: right;
}

.footer-section h3 {
    margin-bottom: 9.0px;
    font-size: 0.8625rem;
    position: relative;
    padding-bottom: 4.5px;
    font-weight: 700;
    letter-spacing: -0.225px;
    display: flex;
    align-items: center;
    gap: 6.0px;
}

/* Mengatur perataan judul untuk footer section kiri */
.footer-section:first-child h3 {
    justify-content: flex-start;
}

/* Mengatur perataan judul untuk footer section kanan */
.footer-section:last-child h3 {
    justify-content: flex-end;
}

.footer-section h3 i {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    width: 21.0px;
    height: 21.0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30.0px;
    height: 1.5px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.2));
    border-radius: 2.25px;
}

/* Mengatur posisi garis bawah untuk footer section kanan */
.footer-section:last-child h3::after {
    left: auto;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), #fff);
}

.footer-section p {
    margin-bottom: 7.5px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 7.5px;
}

/* Mengatur perataan paragraf untuk footer section kiri */
.footer-section:first-child p {
    justify-content: flex-start;
}

/* Mengatur perataan paragraf untuk footer section kanan */
.footer-section:last-child p {
    justify-content: flex-end;
}

/* Styling untuk span di dalam paragraf */
.footer-section p span {
    display: inline-block;
    font-size: 0.750rem;
}

.footer-section p i {
    font-size: 0.675rem;
    color: rgba(255, 255, 255, 0.8);
    width: 15.0px;
    text-align: center;
}

/* Mengatur urutan ikon dan teks di section kanan */
.footer-section:last-child p i {
    order: 2;
}

.footer-section:last-child p span {
    order: 1;
}

.social-media {
    display: flex;
    gap: 9.0px;
    margin-top: 11.25px;
}

/* Mengatur perataan social media untuk footer section kiri */
.footer-section:first-child .social-media {
    justify-content: flex-start;
}

/* Mengatur perataan social media untuk footer section kanan */
.footer-section:last-child .social-media {
    justify-content: flex-end;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27.0px;
    height: 27.0px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    border: 0.75px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: #fff;
    color: #008f94;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 3.75px 11.25px;
}

.footer-menu li {
    margin-bottom: 4.5px;
    width: calc(50% - 6.0px);
    transition: all 0.3s ease;
}

.footer-menu li a {
    color: #fff;
    transition: all 0.3s ease;
    opacity: 0.9;
    font-weight: 400;
    font-size: 0.7125rem;
    display: flex;
    align-items: center;
    gap: 6.0px;
    padding: 3.75px 0;
}

.footer-menu li a i {
    font-size: 0.6375rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    opacity: 1;
}

.footer-menu li a:hover i {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 9.0px;
    border-top: 0.75px solid rgba(255, 255, 255, 0.1);
    font-weight: 400;
    font-size: 0.675rem;
    opacity: 0.8;
    position: relative;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3.75px;
}

.separator {
    display: inline-block;
    font-size: 0.6rem;
    opacity: 0.6;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-bottom a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 744.0px) {
    .footer-section {
        max-width: calc(50% - 7.5px);
    }
}

@media (max-width: 576.0px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .hero {
        margin-top: -48.75px;
        height: calc(100vh - 48.75px);
        min-height: 375.0px;
        margin-bottom: 22.5px;
    }
    
    .hero h1 {
        font-size: 1.65rem;
    }
    
    .hero p {
        font-size: 0.825rem;
    }
    
    .section-title h2 {
        font-size: 1.35rem;
    }
    
    .intro-content, .footer-content {
        flex-direction: column;
    }
    
    .intro-image {
        order: -1;
    }
    
    .kitab-list, .ustadz-list, .artikel-list {
        grid-template-columns: repeat(auto-fill, minmax(187.5px, 1fr));
    }
    
    .btn {
        padding: 9.0px 18.75px;
    }
    
    section {
        margin-bottom: 30.0px;
    }
    
    footer {
        padding: 22.5px 0 11.25px;
        border-radius: 15.0px 15.0px 0 0;
    }
    
    footer .container {
        width: 100%;
        padding: 0 11.25px;
    }
    
    .footer-content {
        gap: 15.0px;
    }
    
    .footer-section {
        max-width: 100%;
        padding: 11.25px;
    }
    
    .footer-menu li {
        width: 100%;
    }
    
    .footer-section h3 {
        font-size: 0.825rem;
        margin-bottom: 7.5px;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .footer-bottom p {
        flex-direction: column;
        gap: 6.0px;
    }
    
    .separator {
        display: none;
    }
}

/* Animasi Modern 2025 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15.0px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Efek Hover Modern */
.kitab-card::before,
.ustadz-card::before,
.artikel-card::before,
.intro-section::before,
.kitab-section::before,
.ustadz-section::before,
.jadwal-section::before,
.artikel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.75px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 143, 148, 0.2) 10%, 
        #008f94 30%, 
        #00b5bc 50%, 
        #008f94 70%, 
        rgba(0, 143, 148, 0.2) 90%, 
        transparent 100%);
    border-radius: 7.5px 7.5px 0 0;
    opacity: 0.8;
}

/* Nav Right - Untuk mengelompokkan profile dan menu toggle */
.nav-right {
    display: flex;
    align-items: center;
    gap: 11.25px;
}

/* Profile Icon dan Dropdown Styles */
.profile-container {
    position: relative;
    margin-left: 11.25px;
    z-index: 200;
}

.profile-icon {
    width: 30.0px;
    height: 30.0px;
    border-radius: 50%;
    background: linear-gradient(145deg, #008f94, #00b5bc);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.profile-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    width: 135.0px;
    background-color: white;
    border-radius: 9.0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7.5px);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 0.75px solid rgba(0, 143, 148, 0.1);
}

.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    padding: 7.5px 0;
    font-size: 0.750rem;
}

.dropdown-item {
    display: block;
    padding: 9.0px 15.0px;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 2.25px solid transparent;
}

.dropdown-item:hover {
    background-color: rgba(0, 143, 148, 0.05);
    color: #008f94;
    border-left: 2.25px solid #008f94;
}

/* Responsive Styles untuk Profile Icon */
@media (max-width: 576.0px) {
    .profile-container {
        margin-right: 0;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }
    
    .profile-icon {
        width: 27.0px;
        height: 27.0px;
        font-size: 0.75rem;
    }
    
    .profile-dropdown {
        width: 120.0px;
        right: 0;
        top: 33.75px; /* Memastikan dropdown muncul di bawah ikon profil */
    }
    
    .dropdown-item {
        padding: 7.5px 11.25px;
        font-size: 0.7125rem;
    }
    
    /* Memastikan dropdown tidak tertutup oleh elemen lain */
    .profile-dropdown.active {
        z-index: 1000;
    }
    
    .nav-right {
        margin-left: auto;
    }
}

/* Styles untuk Halaman Login dan Register */
.login-section, .register-section {
    background-color: #ecf3f4;
    padding: 30.0px 22.5px;
    border-radius: 18.0px;
    position: relative;
    overflow: hidden;
    margin-bottom: 37.5px;
}

.login-section::before, .register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.75px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 143, 148, 0.2) 10%, 
        #008f94 30%, 
        #00b5bc 50%, 
        #008f94 70%, 
        rgba(0, 143, 148, 0.2) 90%, 
        transparent 100%);
    border-radius: 18.0px 18.0px 0 0;
}

.auth-container {
    max-width: 375.0px;
    margin: 0 auto;
    padding: 15.0px 0;
}

.auth-card {
    width: 100%;
    max-width: 375.0px;
    background-color: #fff;
    border-radius: 15.0px;
    padding: 30.0px;
    border: 0.75px solid rgba(0, 143, 148, 0.1);
    transition: all 0.3s ease;
}


.auth-header {
    text-align: center;
    margin-bottom: 22.5px;
}

.auth-header i {
    font-size: 2.625rem;
    color: #008f94;
    margin-bottom: 11.25px;
}

.auth-header h3 {
    font-size: 1.35rem;
    color: #008f94;
    margin-bottom: 7.5px;
    font-weight: 700;
}

.auth-header p {
    color: #666;
    font-size: 0.75rem;
}

.auth-form .form-group {
    margin-bottom: 15.0px;
}

.auth-form label {
    display: flex;
    align-items: center;
    margin-bottom: 6.0px;
    font-weight: 500;
    color: #444;
}

.auth-form label i {
    margin-right: 6.0px;
    color: #008f94;
    font-size: 0.825rem;
}

.auth-form input {
    width: 100%;
    padding: 9.0px 11.25px;
    border: 0.75px solid rgba(0, 143, 148, 0.2);
    border-radius: 7.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: #008f94;
}

.password-input-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 11.25px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    transition: all 0.3s ease;
}

.toggle-password:hover {
    color: #008f94;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* pastikan tidak pindah baris */
    margin-bottom: 15px;
    font-size: 0.675rem;
}

.remember-me {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap; /* cegah label pindah baris */
}

.remember-me input {
    margin: 0;
}

.remember-me label {
    position: relative;
    top: 2.8px; /* atau 2px jika perlu, sesuaikan */
}

.agreement {
    /* Susun checkbox & label sejajar */
    display: flex;
    align-items: flex-start;      /* label mulai dari atas teks */
    gap: 8px;                     /* jarak horizontal */
    margin-bottom: 1rem;          /* ruang bawah blok */
    font-size: 0.75rem;          /* ≈14 px; ubah jika perlu */
    line-height: 1.4;
}

.agreement input[type="checkbox"] {
    /* Sedikit turun supaya sejajar optik dgn teks */
    margin-top: 2px;              /* atur 1–3 px sampai pas */
    flex-shrink: 0;               /* jangan diperkecil di layar sempit */
    width: 1rem; height: 1rem;    /* ukuran kotak konsisten */
    cursor: pointer;
}

.agreement label {
    cursor: pointer;              /* klik label = centang kotak */
}


.forgot-password {
    white-space: nowrap;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    margin-bottom: 15.0px;
}

.auth-separator {
    position: relative;
    text-align: center;
    margin: 18.75px 0;
}

.auth-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.75px;
    background-color: rgba(0, 0, 0, 0.1);
}

.auth-separator span {
    position: relative;
    background-color: #fff;
    padding: 0 11.25px;
    color: #777;
    font-size: 0.675rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 11.25px;
    margin-bottom: 18.75px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7.5px;
    padding: 9.0px;
    border-radius: 7.5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 0.75px solid rgba(0, 0, 0, 0.1);
}

.btn-google {
    background-color: #fff;
    color: #444;
}


.auth-footer {
    text-align: center;
    margin-top: 7.5px;
    font-size: 0.7125rem;
}

.auth-footer a {
    color: #008f94;
    font-weight: 600;
    transition: all 0.3s ease;
}


.message-container {
    margin-bottom: 15.0px;
}

.message {
    padding: 9.0px 11.25px;
    border-radius: 6.0px;
    margin-bottom: 7.5px;
    font-size: 0.7125rem;
}

.success {
    background-color: rgba(0, 143, 148, 0.1);
    color: #008f94;
    border-left: 3.0px solid #008f94;
}

.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 3.0px solid #dc3545;
}

.warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-left: 3.0px solid #ffc107;
}

.info {
    background-color: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
    border-left: 3.0px solid #0dcaf0;
}

/* Responsive untuk Form Login/Register */
@media (max-width: 576.0px) {
    .auth-container {
        padding: 7.5px;
    }
    
    .auth-card {
        padding: 18.75px;
    }
    
    .auth-header i {
        font-size: 2.25rem;
    }
    
    .auth-header h3 {
        font-size: 1.125rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 7.5px;
    }
    
    .social-login {
        gap: 7.5px;
    }
}

/* Styles untuk Formulir Pendaftaran Santri */
.register-section {
    padding-bottom: 45.0px;
}

.santri-form {
    max-width: 600.0px;
    margin: 0 auto;
}

.form-card {
    background-color: #fff;
    border-radius: 15.0px;
    padding: 30.0px;
    border: 0.75px solid rgba(0, 143, 148, 0.1);
    transition: all 0.3s ease;
}


.form-header {
    text-align: center;
    margin-bottom: 22.5px;
    padding-bottom: 15.0px;
    border-bottom: 0.75px dashed rgba(0, 143, 148, 0.2);
}

.form-header i {
    font-size: 2.625rem;
    color: #008f94;
    margin-bottom: 11.25px;
}

.form-header h3 {
    font-size: 1.35rem;
    color: #008f94;
    margin-bottom: 7.5px;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 0.75rem;
}

.form-section {
    margin-bottom: 22.5px;
    padding-bottom: 15.0px;
    border-bottom: 0.75px dashed rgba(0, 143, 148, 0.1);
}

.form-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section-title {
    margin-bottom: 15.0px;
    color: #008f94;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 7.5px;
}

.form-section-title i {
    background-color: rgba(0, 143, 148, 0.1);
    width: 22.5px;
    height: 22.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #008f94;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7.5px;
}

.form-col {
    flex: 1;
    padding: 0 7.5px;
    min-width: 187.5px;
    margin-bottom: 15.0px;
}

.form-group {
    margin-bottom: 15.0px;
    font-size: 0.750rem;
}

.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 6.0px;
    font-weight: 500;
    color: #444;
}

.form-group label i {
    margin-right: 6.0px;
    color: #008f94;
    font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 6.5px 11.25px;
    border: 0.75px solid rgba(0, 143, 148, 0.2);
    border-radius: 7.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #008f94;
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23008f94' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 11.25px center;
    background-size: 11.25px;
}

.form-group .hint {
    margin-top: 3.75px;
    font-size: 0.6375rem;
    color: #666;
    font-style: italic;
}

.file-input-container {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.file-preview {
    width: 112.5px;
    height: 112.5px;
    border-radius: 7.5px;
    border: 1.5px dashed rgba(0, 143, 148, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7.5px;
    overflow: hidden;
    position: relative;
}

.file-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.file-preview i {
    font-size: 2.25rem;
    color: rgba(0, 143, 148, 0.3);
}

.file-input-label {
    cursor: pointer;
    padding: 6.0px 11.25px;
    background-color: rgba(0, 143, 148, 0.1);
    border-radius: 6.0px;
    color: #008f94;
    font-weight: 500;
    font-size: 0.675rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 3.75px;
}

.file-input-label:hover {
    background-color: rgba(0, 143, 148, 0.2);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 0.075px;
    height: 0.075px;
}

.required-field::after {
    content: '*';
    color: #dc3545;
    margin-left: 2.25px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 22.5px;
    flex-wrap: wrap;
    gap: 11.25px;
}

.form-actions button {
    min-width: 90.0px;
}

/* Responsive untuk Form Santri */
@media (max-width: 576.0px) {
    .form-card {
        padding: 18.75px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-col {
        width: 100%;
        padding: 0;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
        margin-bottom: 7.5px;
    }
}

/* Styles untuk Halaman Ketentuan Pendaftaran */
.ketentuan-content {
    background-color: #fff;
    padding: 15.0px;
    margin-bottom: 22.5px;
    font-size: 0.75rem;
}

.ketentuan-section {
    margin-bottom: 22.5px;
    padding-bottom: 15.0px;
    border-bottom: 0.75px dashed rgba(0, 143, 148, 0.1);
}

.ketentuan-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.ketentuan-section h4 {
    color: #008f94;
    font-size: 0.975rem;
    font-weight: 700;
    margin-bottom: 11.25px;
    display: flex;
    align-items: center;
    gap: 7.5px;
}

.ketentuan-section h4 i {
    color: #008f94;
}

.ketentuan-section ul,
.ketentuan-section ol {
    padding-left: 15.0px;
    margin-bottom: 11.25px;
}

.ketentuan-section li {
    margin-bottom: 7.5px;
    line-height: 1.6;
}

.ketentuan-section p {
    margin-top: 11.25px;
    font-style: italic;
    color: #555;
}

/* Privacy & Terms Pages */
.privacy-section,
.terms-section {
    background-color: #ecf3f4;
    padding: 30.0px 22.5px;
    border-radius: 18.0px;
    position: relative;
    overflow: hidden;
    margin-bottom: 37.5px;
}

.privacy-section::before,
.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.75px;
    background: linear-gradient(90deg, transparent, rgba(0, 143, 148, 0.3), transparent);
    border-radius: 18.0px 18.0px 0 0;
}

.privacy-content,
.terms-content {
    max-width: 675.0px;
    margin: 0 auto;
}

.content-card {
    background-color: #fff;
    border-radius: 15.0px;
    padding: 30.0px;
    border: 0.75px solid rgba(0, 100, 0, 0.1);
    transition: all 0.3s ease;
}


.last-updated {
    text-align: right;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 15.0px;
    border-bottom: 0.75px dashed rgba(0, 100, 0, 0.2);
    padding-bottom: 7.5px;
    font-size: 0.85rem;
}

.privacy-item,
.terms-item {
    margin-bottom: 22.5px;
    padding-bottom: 15.0px;
    border-bottom: 0.75px dashed rgba(0, 100, 0, 0.1);
}

.privacy-item:last-child,
.terms-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.privacy-item h3,
.terms-item h3 {
    color: #008f94;
    margin-bottom: 11.25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 7.5px;
}

.privacy-item p,
.terms-item p {
    margin-bottom: 11.25px;
    line-height: 1.6;
    color: #333;
    font-size: 0.9rem;
}

.privacy-item ul,
.terms-item ul,
.privacy-item ol,
.terms-item ol {
    margin-bottom: 15.0px;
    padding-left: 15.0px;
}

.privacy-item li,
.terms-item li {
    margin-bottom: 7.5px;
    line-height: 1.6;
    color: #333;
    font-size: 0.9rem;
}

.privacy-item strong,
.terms-item strong {
    font-weight: 600;
    color: #008f94;
}

@media (max-width: 576.0px) {
    .privacy-section,
    .terms-section {
        padding: 22.5px 11.25px;
    }
    
    .content-card {
        padding: 18.75px;
    }
    
    .privacy-item h3,
    .terms-item h3 {
        font-size: 1rem;
    }
    
    .privacy-item p,
    .terms-item p,
    .privacy-item li,
    .terms-item li {
        font-size: 0.85rem;
    }
    
    .last-updated {
        font-size: 0.8rem;
    }
}

/* Styling Khusus untuk Halaman Artikel */
.artikel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(225.0px, 1fr));
    gap: 18.75px;
}

.artikel-card {
    background: #fff;
    border-radius: 18.0px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}


.artikel-image {
    position: relative;
    height: 150.0px;
    overflow: hidden;
}

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

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

.artikel-body {
    padding: 15.0px;
    flex-grow: 1;
}

.badge {
    display: inline-block;
    background-color: #008f94;
    color: #fff;
    padding: 3.75px 7.5px;
    border-radius: 3.0px;
    font-size: 0.5625rem;
    font-weight: 600;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 0.375px;
}

.artikel-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 7.5px;
    line-height: 1.4;
}

.artikel-meta {
    font-size: 0.6375rem;
    color: #95a5a6;
    margin-bottom: 11.25px;
}

.artikel-meta i {
    margin-right: 3.75px;
}

.artikel-excerpt {
    font-size: 0.7125rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 11.25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artikel-footer {
    padding: 11.25px 15.0px;
    border-top: 0.75px solid #f1f1f1;
    text-align: right;
}

.btn-read-more {
    display: inline-block;
    background-color: transparent;
    color: #008f94;
    border: 0.75px solid #008f94;
    padding: 6.0px 12.0px;
    border-radius: 341.25px;
    font-size: 0.675rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: #008f94;
    color: #fff;
}

/* Halaman Artikel - Kategori Filter */
.category-section {
    padding-top: 18.75px;
    margin-bottom: 18.75px;
    text-align: center;
}

/* Style baru untuk tombol kategori berbentuk kapsul */
.category-buttons {
    margin-top: -18.75px;
    display: flex;
    flex-wrap: wrap;
    gap: 7.5px;
    margin-bottom: 15.0px;
    justify-content: center;
}

.category-pill {
    display: inline-block;
    padding: 6.0px 12.0px;
    background-color: rgba(0, 143, 148, 0.08);
    color: #008f94;
    border-radius: 22.5px;
    font-size: 0.675rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 0.75px solid rgba(0, 143, 148, 0.1);
}

.category-pill:hover {
    background-color: rgba(0, 143, 148, 0.15);
    box-shadow: 0 2.25px 6.0px rgba(0, 143, 148, 0.1);
    color: #008f94;
    text-decoration: none;
}

.category-pill.active {
    background-color: #008f94;
    color: #fff;
    border-color: #008f94;
    box-shadow: 0 2.25px 6.0px rgba(0, 100, 0, 0.2);
}

/* Responsive untuk tombol kategori */
@media (max-width: 432.0px) {
    .category-buttons {
        gap: 6.0px;
    }
    
    .category-pill {
        padding: 4.5px 9.0px;
        font-size: 0.6375rem;
    }
}

/* Halaman Artikel - Main Card */
.artikel-main-card {
    border-radius: 7.5px;
    padding: 22.5px;
}

/* Halaman Artikel - Container */
.artikel-container {
    max-width: 900.0px;
    margin: 0 auto;
}

/* Halaman Artikel - Pagination */
.pagination-container {
    margin-top: 30.0px;
    display: flex;
    justify-content: center;
}

.pagination-container nav {
    display: inline-block;
}

.pagination-container .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-container .page-item {
    margin: 0 2.25px;
}

.pagination-container .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30.0px;
    height: 30.0px;
    border-radius: 50%;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 0.75px solid #e0e0e0;
}

.pagination-container .page-item.active .page-link {
    background-color: #008f94;
    color: #fff;
    border-color: #008f94;
}

.pagination-container .page-link:hover {
    background-color: #f1f1f1;
}

.pagination-container .page-item.active .page-link:hover {
    background-color: #007a7f;
}

/* Responsive untuk Halaman Artikel */
@media (max-width: 744.0px) {
    .artikel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576.0px) {
    .artikel-grid {
        grid-template-columns: 1fr;
    }
    
    .artikel-main-card {
        padding: 15.0px;
    }
}

/* Styling untuk Halaman Detail Artikel */
.artikel-detail {
    background-color: #fff;
    border-radius: 7.5px;
    padding: 22.5px;
    border: 0.75px solid rgba(0, 143, 148, 0.1);
}

.artikel-title {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
}

.artikel-meta {
    font-size: 0.675rem;
    color: #6c757d;
}

.meta-item {
    margin-right: 3.75px;
}

.meta-separator {
    margin: 0 3.75px;
}

.artikel-image img {
    width: 100%;
    border-radius: 6.0px;
}

.artikel-content {
    font-size: 0.825rem;
    line-height: 1.8;
    color: #333;
}

.artikel-content p {
    margin-bottom: 1.125rem;
}

.artikel-content h1, 
.artikel-content h2, 
.artikel-content h3, 
.artikel-content h4, 
.artikel-content h5, 
.artikel-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.artikel-content img {
    max-width: 100%;
    height: auto;
    border-radius: 3.75px;
    margin: 1.125rem 0;
}

.artikel-footer {
    border-top: 0.75px solid #eee;
    padding-top: 15.0px;
    margin-top: 22.5px;
}

.author-info {
    padding: 11.25px;
    background-color: #f8f9fa;
    border-radius: 6.0px;
}

.author-avatar {
    color: #008f94;
}

.share-buttons .btn {
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    color: #fff;
}

.btn-facebook {
    background-color: #3b5998;
    border-color: #3b5998;
}

.btn-twitter {
    background-color: #1da1f2;
    border-color: #1da1f2;
}

.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 7.5px;
    padding: 15.0px;
    margin-bottom: 22.5px;
    border: 0.75px solid rgba(0, 143, 148, 0.1);
}

.widget-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 11.25px;
    padding-bottom: 7.5px;
    border-bottom: 0.75px solid #eee;
    color: #008f94;
}

.category-badge {
    display: inline-block;
    padding: 4.5px 9.0px;
    background-color: rgba(0, 143, 148, 0.1);
    color: #008f94;
    border-radius: 15.0px;
    font-size: 0.675rem;
    text-decoration: none;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
}

.category-badge:hover {
    background-color: #008f94;
    color: #fff;
    text-decoration: none;
}

.related-artikel {
    margin-bottom: 11.25px;
    padding-bottom: 11.25px;
    border-bottom: 0.75px solid #eee;
}

.related-artikel:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-image {
    height: 45.0px;
    border-radius: 3.75px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    padding-left: 7.5px;
}

.related-content h6 {
    font-size: 0.675rem;
    margin-bottom: 3.75px;
    line-height: 1.4;
}

.related-content h6 a {
    color: #333;
    text-decoration: none;
}


.related-date {
    font-size: 0.6rem;
    color: #6c757d;
}

/* Styling Breadcrumb yang Lebih Menarik */
.breadcrumb {
    background-color: #ecf3f4;
    padding: 6.0px 11.25px;
    margin-bottom: 15.0px;
    display: inline-flex;
    flex-wrap: wrap;
    list-style: none;
    border-radius: 22.5px;
    font-size: 0.7125rem;
    border: 0.75px solid rgba(0, 143, 148, 0.1);
    width: auto;
}

.breadcrumb-item {
    position: relative;
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 1.35rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '\f105'; /* FontAwesome arrow icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 0.75rem;
    color: #008f94;
    font-size: 0.675rem;
    position: absolute;
    left: 0.525rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-item a {
    color: #008f94;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #007a7f;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
    font-weight: 500;
}

/* Responsive untuk Breadcrumb */
@media (max-width: 432.0px) {
    .breadcrumb {
        font-size: 0.6375rem;
        padding: 4.5px 9.0px;
    }
    
    .breadcrumb-item + .breadcrumb-item {
        padding-left: 1.125rem;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding-right: 0.525rem;
        left: 0.375rem;
    }
}

/* Responsive untuk Halaman Detail Artikel */
@media (max-width: 576.0px) {
    .artikel-detail {
        padding: 15.0px;
    }
    
    .artikel-title {
        font-size: 1.35rem;
    }
    
    .artikel-content {
        font-size: 0.75rem;
    }
    
    .share-buttons {
        text-align: center;
        margin-top: 15.0px;
    }
}

/* Info Box Styles - Untuk Notifikasi dan Informasi */
.info-box {
    display: flex;
    background-color: rgba(0, 143, 148, 0.08);
    border-left: 3.0px solid #008f94;
    padding: 13.5px;
    margin-bottom: 18.75px;
    border-radius: 7.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}


.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 75.0px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 143, 148, 0.05));
    border-radius: 0 7.5px 7.5px 0;
}

.info-icon {
    font-size: 18.0px;
    color: #008f94;
    margin-right: 13.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 143, 148, 0.1);
    width: 33.75px;
    height: 33.75px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    margin: 0 0 6.0px 0;
    color: #008f94;
    font-size: 0.825rem;
    font-weight: 600;
    letter-spacing: -0.225px;
}

.info-content p {
    margin: 0;
    color: #444;
    font-size: 0.7125rem;
    line-height: 1.6;
}

/* Variasi Info Box */
.info-box.warning {
    background-color: rgba(255, 193, 7, 0.08);
    border-left-color: #ffc107;
}

.info-box.warning .info-icon {
    color: #ffc107;
    background-color: rgba(255, 193, 7, 0.1);
}

.info-box.warning .info-content h4 {
    color: #856404;
}

.info-box.danger {
    background-color: rgba(220, 53, 69, 0.08);
    border-left-color: #dc3545;
}

.info-box.danger .info-icon {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.info-box.danger .info-content h4 {
    color: #721c24;
}

.info-box.success {
    background-color: rgba(40, 167, 69, 0.08);
    border-left-color: #28a745;
}

.info-box.success .info-icon {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
}

.info-box.success .info-content h4 {
    color: #155724;
}

/* Responsive untuk Info Box */
@media (max-width: 576.0px) {
    .info-box {
        padding: 11.25px;
        margin-bottom: 15.0px;
    }
    
    .info-icon {
        font-size: 15.0px;
        width: 28.5px;
        height: 28.5px;
        margin-right: 11.25px;
    }
    
    .info-content h4 {
        font-size: 0.75rem;
        margin-bottom: 4.5px;
    }
    
    .info-content p {
        font-size: 0.675rem;
    }
}

/* Section Header Styles - Untuk Judul Bagian */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18.75px;
    padding-bottom: 11.25px;
    border-bottom: 0.75px solid rgba(0, 143, 148, 0.15);
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -0.75px;
    left: 0;
    width: 60.0px;
    height: 2.25px;
    background: linear-gradient(90deg, #008f94, rgba(0, 143, 148, 0.3));
    border-radius: 2.25px;
}

.section-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9.0px;
}

.section-header h3 i {
    color: #008f94;
    font-size: 0.9rem;
    width: 22.5px;
    height: 22.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 143, 148, 0.1);
    border-radius: 50%;
}

.section-header .header-actions {
    display: flex;
    gap: 11.25px;
    align-items: center;
}

.section-header .btn-link {
    color: #008f94;
    font-size: 0.675rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6.0px;
    padding: 4.5px 9.0px;
    border-radius: 15.0px;
    background-color: rgba(0, 143, 148, 0.05);
    border: 0.75px solid rgba(0, 143, 148, 0.1);
    transition: all 0.3s ease;
}

.section-header .btn-link:hover {
    background-color: rgba(0, 143, 148, 0.1);
}

.section-header .btn-link i {
    font-size: 0.6375rem;
}

/* Responsive untuk Section Header */
@media (max-width: 576.0px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 11.25px;
        padding-bottom: 9.0px;
        margin-bottom: 15.0px;
    }
    
    .section-header h3 {
        font-size: 0.9rem;
    }
    
    .section-header .header-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Styling untuk Halaman Reset Password */
.forgot-password-info {
    margin: 20px 0;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    padding: 20px;
    border-radius: 5px;
}

.alert-info h5 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #0c5460;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 7px;
}

.alert-info h5 i {
    font-size: 1rem;
    color: #0c5460;
}

.alert-info ul, .alert-info ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.alert-info li {
    margin-bottom: 8px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.alert-info p {
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.alert-info strong {
    font-weight: 600;
    color: #0c5460;
}

/* Perbaikan untuk tampilan kontak pada Reset Password */
.alert-info i.fas {
    width: 20px;
    display: inline-block;
    text-align: center;
    margin-right: 5px;
    color: #0c5460;
}

/* Style khusus untuk ordered list pada reset password */
.alert-info ol li i.fas {
    font-size: 0.75rem;
    background-color: rgba(12, 84, 96, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
