* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #005EA8;
    --primary-dark: #003D6E;
    --primary-light: #0078D4;
    --secondary: #0091DA;
    --accent: #00B4D8;
    --dark: #0A1929;
    --gray: #64748B;
    --light: #F8FAFC;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .arrow {
    font-size: 0.8rem;
    margin-left: 0.25rem;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 1rem;
    padding: 0.5rem;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.dropdown-content a:hover {
    background: var(--light);
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s;
    border-radius: 3px;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: -80px; /* Offset navbar height */
    padding-top: 80px; /* Add padding for navbar */
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 46, 77, 0.85) 0%, rgba(0, 94, 168, 0.75) 100%);
    z-index: 1;
}

.carousel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align to left side */
    z-index: 2;
}

.carousel-content .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
}

.carousel-text {
    max-width: 650px;
    color: white;
    animation: slideInUp 0.8s ease-out;
}

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

.carousel-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.carousel-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: white;
}

.carousel-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Carousel Button Override */
.carousel-buttons .btn-primary {
    background: white;
    color: var(--primary);
    border-color: white;
}

.carousel-buttons .btn-primary:hover {
    background: var(--light);
    color: var(--primary-dark);
}

.carousel-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.carousel-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.gradient-text {
    color: white;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.05);
}

.carousel-control.prev {
    left: 3rem;
}

.carousel-control.next {
    right: 3rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: white;
    width: 100px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Stats Bar */
.stats-bar {
    background: white;
    padding: 3rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item-bar {
    text-align: center;
    padding: 1rem;
}

.stat-item-bar .stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item-bar .stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Section Common */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 94, 168, 0.1), rgba(0, 145, 218, 0.1));
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
}

/* Button Styles - Global */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 94, 168, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-light:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Services Section */
/* ===== SERVICES / JURNAL SECTION ===== */
.services {
    padding: 6rem 2rem;
    background: var(--light);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Journal Stats Filter Bar */
.journal-stats-bar {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.journal-stat-item {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    border: 1.5px solid #d1d5db;
    background: white;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.journal-stat-item .jstat-number {
    font-weight: 800;
    color: var(--primary);
}

.journal-stat-item.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 6px 18px rgba(0, 94, 168, 0.3);
}

.journal-stat-item.active .jstat-number {
    color: white;
}

.journal-stat-item:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,94,168,0.12);
}

/* Journal Cards Grid */
.journal-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Journal Card Container */
.journal-card-new {
    background: white;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.35s;
    display: flex;
    flex-direction: column;
}

.journal-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.13);
    border-color: #f59e0b;
}

/* Cover Area */
.journal-cover-wrap {
    position: relative;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding: 2.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.journal-featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f59e0b;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Book Cover Design */
.journal-cover {
    width: 155px;
    height: 210px;
    border-radius: 4px 8px 8px 4px;
    box-shadow: 6px 8px 24px rgba(0,0,0,0.25), -2px 0 8px rgba(0,0,0,0.1), inset -3px 0 6px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.journal-card-new:hover .journal-cover {
    transform: rotate(-3deg) scale(1.05);
}

/* Spine effect */
.journal-cover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.bios-cover   { background: linear-gradient(160deg, #34d399 0%, #10B981 45%, #047857 100%); }
.arteri-cover { background: linear-gradient(160deg, #2f8fff 0%, #2465b3 45%, #1422ae 100%); }
.pekat-cover  { background: linear-gradient(160deg, #ff850d 0%, #dd4814 45%, #ad3711 100%); }

.cover-inner {
    padding: 1rem 1rem 1rem 1.4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.cover-logo {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.25);
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.6rem;
}

.cover-title {
    font-size: 0.65rem;
    font-weight: 900;
    color: white;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: auto;
}

.cover-decoration {
    width: 100%;
    margin: 0.5rem 0;
}

.cover-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    margin: 0 auto;
}

.cover-issn {
    font-size: 0.52rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.15rem;
}

.cover-vol {
    font-size: 0.52rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.4rem;
}

.cover-bar {
    height: 2.5px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    margin-bottom: 0.25rem;
}

.cover-bar.short { width: 55%; background: rgba(255,255,255,0.25); }

/* Card Body */
.journal-card-body {
    padding: 1.6rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.journal-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.35rem;
    line-height: 1.35;
    transition: color 0.2s;
}

.journal-card-new:hover .journal-card-title {
    color: var(--primary-dark);
}

.journal-issn {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.journal-issn span {
    color: var(--primary);
    font-weight: 700;
}

.journal-card-desc {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex: 1;
}

/* Indexing badges */
.journal-indexing-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #9ca3af;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.journal-index-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
}

.idx-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.28rem 0.7rem;
    border-radius: 6px;
    border: 1.5px solid;
    letter-spacing: 0.02em;
}

.idx-badge.sinta     { color: #15803d; background: #f0fdf4; border-color: #86efac; }
.idx-badge.doaj      { color: #f57004; background: #fffbeb; border-color: #fcd34d; }
.idx-badge.garuda    { color: #f30207; background: #fbdcdc; border-color: #fcc0be; }
.idx-badge.crossref  { color: #374151; background: #f9fafb; border-color: #d1d5db; }
.idx-badge.dimensions{ color: #374151; background: #f9fafb; border-color: #d1d5db; }
.idx-badge.scholar   { color: #374151; background: #f9fafb; border-color: #d1d5db; }
.idx-badge.others   { color: #7a7b7e; background: #f9fafb; border-color: #d1d5db; }
.idx-badge.scopus    { color: #7c3aed; background: #f5f3ff; border-color: #c4b5fd; }

/* View Journal Button */
.journal-view-btn {
    display: block;
    text-align: center;
    padding: 0.85rem;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    letter-spacing: 0.01em;
}

.journal-view-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(0, 94, 168, 0.35);
    transform: translateY(-1px);
}

/* Keep old service-link for any other uses */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

/* News Section */
.news {
    padding: 6rem 2rem;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.news-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.news-link:hover {
    gap: 1rem;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="white" opacity="0.05"/></svg>');
    background-size: 50px;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-logo img {
    height: 40px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Mobile dropdown: accordion, bukan floating */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > .nav-link {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-dropdown .arrow {
        transition: transform 0.3s;
        display: inline-block;
    }

    .nav-dropdown.open .arrow {
        transform: rotate(180deg);
    }

    .dropdown-content {
        /* Reset semua property desktop */
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        /* Accordion: sembunyikan dengan display */
        display: none;
        background: var(--light);
        border-radius: 8px;
        margin-top: 0.5rem;
        padding: 0.25rem 0.5rem;
        min-width: unset;
    }

    .nav-dropdown.open .dropdown-content {
        display: block;
    }

    /* Nonaktifkan hover desktop di mobile */
    .nav-dropdown:hover .dropdown-content {
        display: none;
    }

    .nav-dropdown.open:hover .dropdown-content {
        display: block;
    }
    
    /* Carousel Responsive */
    .hero-carousel {
        height: 80vh;
        min-height: 500px;
    }

    .carousel-title {
        font-size: 2.5rem;
    }

    .carousel-description {
        font-size: 1.1rem;
    }

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

    .carousel-control {
        width: 45px;
        height: 45px;
    }

    .carousel-control.prev {
        left: 1rem;
    }

    .carousel-control.next {
        right: 1rem;
    }

    .carousel-indicators {
        bottom: 1.5rem;
    }

    .indicator {
        width: 30px;
    }

    .indicator.active {
        width: 50px;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item-bar .stat-number {
        font-size: 2.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }

    .services-grid,
    .news-grid,
    .journal-cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

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

/* AOS Animation */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Page Hero */
.page-hero {
    padding: 7rem 2rem 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.03) 35px, rgba(255,255,255,0.03) 70px);
    z-index: 0;
}

/* Page Hero Variations */
.page-hero.hero-profil {
    background: linear-gradient(135deg, #003D6E 0%, #005EA8 100%);
}

.page-hero.hero-profil::before {
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 145, 218, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0, 120, 212, 0.2) 0%, transparent 50%);
}

.page-hero.hero-tim {
    background: linear-gradient(135deg, #005EA8 0%, #0091DA 100%);
}

.page-hero.hero-tim::before {
    background: 
        radial-gradient(circle at 25% 20%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 80%, rgba(0, 145, 218, 0.15) 0%, transparent 50%);
}

.page-hero.hero-hubungi {
    background: linear-gradient(135deg, #0078D4 0%, #00B4D8 100%);
}

.page-hero.hero-hubungi::before {
    background: 
        radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 65%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}

.page-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 3rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.badge-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.about-text {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Vision Mission Section */
.vision-mission-section {
    padding: 6rem 2rem;
    background: var(--light);
}

.vm-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vm-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vm-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.vm-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.vm-text {
    color: var(--gray);
    line-height: 1.8;
}

.vm-list {
    list-style: none;
}

.vm-list li {
    color: var(--gray);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.vm-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--gray);
    line-height: 1.7;
}

/* Stats Section Alt */
.stats-section-alt {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.stats-content {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.stats-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
}

.team-alt {
    background: var(--light);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid-one {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

.team-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.team-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.team-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-card-modern:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card-new {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.contact-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-card-text {
    color: var(--gray);
    line-height: 1.8;
}

/* Map Section */
.map-section {
    padding: 6rem 2rem;
    background: var(--light);
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-content {
    text-align: center;
}

.map-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
}

.map-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.map-placeholder {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.map-address {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Info Section */
.info-section {
    padding: 6rem 2rem;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

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

.info-day {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.info-time {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

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

    .vm-grid,
    .values-grid,
    .stats-grid,
    .team-grid-two,
    .team-grid-three,
    .contact-cards,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .team-grid-two,
    .team-grid-three {
        max-width: 400px;
        margin: 0 auto;
    }
}
