:root {
    --color-primary: #0d47a1;
    --color-secondary: #ff9800;
    --color-accent: #e91e63;
    --color-dark: #0f172a;
    --color-light: #f8fafc;

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius-lg: 20px;
    --radius-md: 12px;

    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1565c0 60%, #0288d1 100%);
    padding: 30px 0 28px;
    margin-top: -100px;
    padding-top: 110px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.page-hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.page-hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0;
}

.breadcrumb {
    margin-bottom: 10px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .page-hero {
        padding-top: 90px;
        margin-top: -80px;
        padding-bottom: 20px;
    }
    .page-hero-title {
        font-size: 1.4rem;
    }
}

/* ===== SIDEBAR ===== */
.sidebar-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f1f5f9;
}

.sidebar-title {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.sidebar-link {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(13, 71, 161, 0.07);
    color: var(--color-primary);
    padding-left: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-light);
    color: #334155;
    overflow-x: hidden;
    padding-top: 100px;
    /* Space for fixed navbar */
    width: 100%;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphic Navbar */
.navbar-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.navbar-glass.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform var(--transition-bounce);
}

.header-logo:hover {
    transform: scale(1.1) rotate(-5deg);
}

.navbar-brand-text {
    line-height: 1.1;
}

.brand-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin: 0;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.nav-link {
    font-weight: 600;
    color: #475569 !important;
    padding: 10px 16px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color-primary) !important;
    background: rgba(13, 71, 161, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 60%;
}

/* Modern Dropdown */
.dropdown-menu {
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 12px 0;
    animation: fadeInDown 0.3s ease forwards;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(13, 71, 161, 0.05);
    color: var(--color-primary);
    padding-left: 25px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Hero Layout */
.hero-section {
    margin-top: 20px;
    margin-bottom: 50px;
}

/* Carousel Modern */
.carousel-custom {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
    background: #fff;
}

.carousel-item {
    height: 500px; /* Tinggi spesifik (bisa disesuaikan) */
    background-color: #f8fafc; /* Warna background jika gambar tidak memenuhi layar */
}

.carousel-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain; /* Gambar akan tampil utuh tanpa terpotong */
}

.carousel-caption-custom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px 30px 20px;
    color: white;
    text-align: left;
    z-index: 20; /* Pastikan caption dan tombol di atas kontrol carousel */
}

.carousel-caption-custom h5 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption-custom p {
    font-size: 1.05rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Stats Panel (Glassmorphic Cards) */
.stats-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.stat-card {
    flex: 1;
    border-radius: var(--radius-md);
    padding: 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-bounce);
    overflow: hidden;
    position: relative;
    background-size: 200% auto;
}

.stat-card:hover {
    transform: scale(1.02) translateX(5px);
    box-shadow: var(--shadow-hover);
    background-position: right center;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.stat-card:hover::after {
    transform: scale(2);
}

.stat-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
}

.stat-content p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-icon {
    font-size: 3rem;
    opacity: 0.8;
    z-index: 1;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

/* Gradient Backgrounds */
.bg-grad-1 {
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
}

.bg-grad-2 {
    background-image: linear-gradient(to right, #f83600 0%, #f9d423 100%);
}

.bg-grad-3 {
    background-image: linear-gradient(to right, #43e97b 0%, #38f9d7 100%);
}

.bg-grad-4 {
    background-image: linear-gradient(to right, #b224ef 0%, #7579ff 100%);
}

/* Title Sections */
.section-title-wrapper {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title {
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
    font-size: 1.8rem;
}

.section-line {
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    flex: 1;
    border-radius: 2px;
}

/* News Section */
.news-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: #e2e8f0;
}

.news-img-wrapper {
    position: relative;
    overflow: hidden;
}

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

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

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-accent);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.news-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-date {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.news-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

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

.news-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

.btn-modern {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Pegawai Card */
.pegawai-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(13, 71, 161, 0.1);
    position: relative;
}

.pegawai-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1565c0 100%);
    z-index: 0;
}

.pegawai-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 71, 161, 0.2);
    border-color: var(--color-primary);
}

.pegawai-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin: 50px auto 15px;
    border: 5px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.pegawai-card:hover .pegawai-img {
    transform: scale(1.1);
    border-color: var(--color-primary);
}

.pegawai-card .px-3 {
    position: relative;
    z-index: 1;
    padding: 0 20px 25px;
}

.pegawai-card h5 {
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.3;
    font-family: 'Outfit', sans-serif;
}

.pegawai-card p {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pegawai-card .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-secondary), #f57c00);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Galeri Grid */
.galeri-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-soft);
}

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

.galeri-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 71, 161, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    text-align: center;
    padding: 20px;
}

.galeri-item:hover img {
    transform: scale(1.1);
}

.galeri-item:hover .galeri-overlay {
    opacity: 1;
}

/* List Produk Hukum */
.hukum-list-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    box-shadow: var(--shadow-soft);
    transition: all 0.2s;
    border-left: 4px solid transparent;
}

.hukum-list-item:hover {
    border-left-color: var(--color-primary);
    box-shadow: var(--shadow-hover);
    transform: translateX(5px);
}

.hukum-icon {
    width: 50px;
    height: 50px;
    background: rgba(13, 71, 161, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Footer */
.footer-modern {
    background: #0f172a;
    color: white;
    padding: 50px 0 20px;
    margin-top: 80px;
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}

@media (max-width: 991px) {
    body {
        padding-top: 80px;
    }
    
    .carousel-item {
        height: 300px;
    }

    .carousel-custom {
        min-height: 300px;
        margin-bottom: 20px;
    }

    .navbar-collapse {
        background: white;
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        padding: 12px 16px !important;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown-menu {
        box-shadow: none;
        background: #f8fafc;
        border-radius: 8px;
        margin-top: 5px;
        padding: 5px 0;
    }
    
    .stats-panel {
        margin-top: 20px;
    }
    
    .header-logo {
        height: 40px;
    }
}

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

    .stat-content h3 {
        font-size: 1.8rem;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .carousel-caption-custom h5 {
        font-size: 1.2rem;
    }

    .news-img {
        height: 180px;
    }

    .pegawai-img {
        width: 90px;
        height: 90px;
        margin: 40px auto 10px;
    }
}

/* Social media buttons footer */
.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

/* Banner Link Cards */
.banner-link-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.banner-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.banner-link-img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    object-position: center;
    padding: 10px;
}

.banner-link-placeholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary), #1565c0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.banner-link-title {
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.9rem;
}

/* Carousel Link Images */
.carousel-link-img {
    height: 200px;
    object-fit: cover;
}

.carousel-link-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary), #1565c0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 15px;
}

.carousel-link-placeholder h4 {
    margin: 0;
    font-weight: 700;
}

/* Video Cards */
.video-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.video-thumbnail-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-body {
    padding: 20px;
}

.video-title {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.video-desc {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Agenda Cards - Timeline Style */
.agenda-section {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f1f5f9;
}

.agenda-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.agenda-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agenda-icon-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-primary), #1565c0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.agenda-timeline {
    position: relative;
    padding-left: 30px;
}

.agenda-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary), #e2e8f0);
}

.agenda-item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 20px;
}

.agenda-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.agenda-item:last-child {
    margin-bottom: 0;
}

.agenda-date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--color-primary), #1565c0);
    border-radius: 12px;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
}

.agenda-date-day {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.agenda-date-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.agenda-content {
    flex: 1;
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    min-width: 0;
}

.agenda-content:hover {
    background: white;
    box-shadow: var(--shadow-soft);
    border-color: var(--color-primary);
}

.agenda-content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.agenda-time {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.agenda-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.agenda-status.upcoming {
    background: rgba(13, 71, 161, 0.1);
    color: var(--color-primary);
}

.agenda-status.passed {
    background: rgba(148, 163, 184, 0.1);
    color: #64748b;
}

.agenda-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.agenda-location {
    color: #64748b;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.agenda-share-btn {
    background: white;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

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

@media (max-width: 768px) {
    .agenda-share-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .agenda-share-btn i {
        margin-right: 4px !important;
    }
}

/* SKM Card */
.skm-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f1f5f9;
    height: 100%;
}

.skm-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    padding: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.skm-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.skm-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.skm-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.skm-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 3px;
    position: relative;
    z-index: 1;
}

.skm-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

.skm-body {
    padding: 20px;
}

.skm-label {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.skm-input {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.skm-input:focus {
    border-color: #8b5cf6;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.skm-submit-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.skm-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.skm-submit-btn:active {
    transform: translateY(0);
}

/* Banner Links Carousel */
.banner-links-carousel {
    position: relative;
    overflow: visible;
    padding: 10px 50px;
}

.banner-links-track {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.banner-links-track::-webkit-scrollbar {
    display: none;
}

.banner-link-item {
    width: 280px;
}

.banner-link-card {
    width: 280px;
}

@media (min-width: 768px) {
    .banner-link-item {
        width: 320px;
    }
    
    .banner-link-card {
        width: 320px;
    }
}

@media (max-width: 480px) {
    .banner-link-item {
        width: 220px;
    }
    
    .banner-link-card {
        width: 220px;
    }
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    color: var(--color-primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover {
    background: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-hover);
}

.carousel-nav-btn.prev {
    left: 0;
}

.carousel-nav-btn.next {
    right: 0;
}

@media (max-width: 768px) {
    .banner-links-carousel {
        padding: 10px 45px;
    }
    
    .carousel-nav-btn.prev {
        left: 5px;
    }
    
    .carousel-nav-btn.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .banner-links-carousel {
        padding: 10px 40px;
    }
    
    .carousel-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-nav-btn.prev {
        left: 3px;
    }
    
    .carousel-nav-btn.next {
        right: 3px;
    }
}

/* Page Content */
.page-content {
    line-height: 1.8;
    color: var(--color-dark);
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--color-dark);
}

.page-content h1 { font-size: 2rem; }
.page-content h2 { font-size: 1.75rem; }
.page-content h3 { font-size: 1.5rem; }
.page-content h4 { font-size: 1.25rem; }
.page-content h5 { font-size: 1.1rem; }
.page-content h6 { font-size: 1rem; }

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 8px;
}

.page-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 16px;
    margin: 20px 0;
    color: #64748b;
    font-style: italic;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.page-content th,
.page-content td {
    padding: 12px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.page-content th {
    background: #f8fafc;
    font-weight: 600;
}

.page-content a {
    color: var(--color-primary);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

/* Footer Logo Responsive */
.footer-logo {
    max-width: 40px;
    height: auto;
}

@media (max-width: 576px) {
    .footer-logo {
        max-width: 30px;
        height: auto;
    }
}
