/* Base Styles & Variables */
:root {
    --primary-purple: #5c2c70;
    --primary-orange: #eb532b;
    --secondary-purple: #4a235a;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #fdfbfb;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --shadow: 0 10px 30px rgba(92, 44, 112, 0.1);
    --gradient: linear-gradient(135deg, #5c2c70 0%, #eb532b 100%);
    --gradient-alt: linear-gradient(135deg, #eb532b 0%, #5c2c70 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-purple {
    background-color: var(--primary-purple);
}

.bg-gradient {
    background: var(--gradient);
}

.text-white {
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.section-title.white h2 {
    color: var(--white);
}

/* Header & Navigation */
header {
    background: var(--gradient);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-text strong {
    color: var(--white);
    opacity: 0.9;
}

#navbar ul {
    display: flex;
    gap: 2rem;
}

#navbar a {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 5px 0;
}

#navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

#navbar a:hover::after,
#navbar a.active::after {
    width: 100%;
}

#navbar a:hover,
#navbar a.active {
    color: var(--white);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-nav-toggle span.open:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-nav-toggle span.open:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle span.open:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, #f9f0ff 0%, #ffffff 50%, #fff5f2 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(235, 83, 43, 0.05) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.hero-content {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    position: relative;
}

.hero .grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}

.badge {
    background: rgba(92, 44, 112, 0.1);
    color: var(--primary-purple);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(92, 44, 112, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    color: var(--primary-purple);
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(235, 83, 43, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 83, 43, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(92, 44, 112, 0.25);
    background: var(--white);
    padding: 10px;
    background: linear-gradient(var(--white), var(--white)) padding-box,
        var(--gradient) border-box;
    border: 4px solid transparent;
    transition: var(--transition);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px -15px rgba(92, 44, 112, 0.3);
}

.image-wrapper:hover img {
    transform: scale(1.08);
}

.image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--gradient-alt);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(2px);
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(10px, -10px) rotate(2deg);
    }

    66% {
        transform: translate(-5px, 15px) rotate(-1deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Section */
.profile-grid {
    grid-template-columns: 1fr 1fr;
}

.profile-card,
.expertise-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.profile-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary-purple);
}

.subtitle {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.stats-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.stats-list li:last-child {
    border-bottom: none;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 30px;
}

.tag {
    background: #eef2f7;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
}

.metrics {
    display: flex;
    gap: 30px;
}

.metric-item {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vision & Mission */
.vision-box {
    background: var(--bg-light);
    padding: 40px;
    border-left: 5px solid var(--primary-purple);
    border-radius: 0 15px 15px 0;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.03);
}

.vision-box h3 {
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.vision-box p {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
}

.mission-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.mission-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.mission-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(235, 83, 43, 0.2);
}

.mission-item h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Program Unggulan */
.program-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.program-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.program-header .icon {
    font-size: 1.8rem;
    color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.program-card h4 {
    font-size: 1.2rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
    padding-left: 35px;
}

.timeline-dot {
    position: absolute;
    left: -7px;
    top: 10px;
    width: 16px;
    height: 16px;
    background: var(--primary-orange);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(235, 83, 43, 0.1);
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--primary-purple);
}

/* Publication Section */
.pub-grid {
    grid-template-columns: 1fr 1fr;
}

.pub-column {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
}

.pub-header {
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.pub-list li {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.pub-list li strong {
    font-size: 1.1rem;
    color: var(--primary-purple);
}

.pub-list li span {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Affiliations Section */
.affiliations-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.affiliations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.affiliation-item {
    padding: 10px;
}

.affiliation-item h4 {
    color: var(--primary-purple);
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.affiliation-item h4 i {
    margin-right: 10px;
    color: var(--primary-orange);
}

.affiliation-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.affiliation-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 8px;
}

.affiliation-item strong {
    color: var(--text-dark);
}

/* Footer */
footer {
    background: var(--gradient);
    padding: 80px 0 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
}

/* Responsive */
@media (max-width: 992px) {

    .hero .grid,
    .profile-grid,
    .pub-grid {
        grid-template-columns: 1fr;
    }

    .affiliations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    #navbar {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .affiliations-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Nav Active */
body.nav-active {
    overflow: hidden;
}

#navbar.active {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    padding: 40px 20px;
    z-index: 999;
}

#navbar.active ul {
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

#navbar.active a {
    font-size: 1.4rem;
    color: var(--primary-purple);
    width: 100%;
    text-align: center;
    padding: 10px;
}

#navbar.active a::after {
    background: var(--primary-purple);
}

#navbar.active a.active {
    color: var(--primary-orange);
}

/* Comment System Styles */
.comment-form-container {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-purple);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(92, 44, 112, 0.1);
}

.comment-list {
    max-width: 800px;
    margin: 0 auto;
}

.comment-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-orange);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 700;
    color: var(--primary-purple);
}

.comment-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.comment-phone {
    font-size: 0.85rem;
    color: var(--primary-orange);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.comment-text {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: #e6f7ef;
    color: #1a6b4a;
    border: 1px solid #d1f0e0;
}

/* Admin Dashboard Styles */
.admin-container {
    padding: 120px 0 60px;
    min-height: 80vh;
}

.admin-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.admin-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
}

/* Breakthrough / Terobosan Section */
.breakthrough-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.breakthrough-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary-purple);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.breakthrough-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-top-color: var(--primary-orange);
}

.breakthrough-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(92, 44, 112, 0.1);
    line-height: 1;
}

.breakthrough-card h4 {
    color: var(--primary-purple);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.breakthrough-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* PRO-KASIH Highlights */
.pro-kasih-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 40px;
}

.pro-kasih-item {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(92, 44, 112, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.pro-kasih-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.pro-kasih-item:hover {
    transform: translateY(-10px);
    background: var(--gradient);
    color: var(--white);
}

.pro-kasih-item .letter {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
    color: var(--primary-purple);
    opacity: 0.8;
}

.pro-kasih-item:hover .letter {
    color: var(--white);
    opacity: 1;
}

.pro-kasih-item .word {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
}

@media (max-width: 768px) {
    .pro-kasih-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 12px;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.admin-table th {
    background: var(--bg-light);
    color: var(--primary-purple);
    font-weight: 600;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fff4e5;
    color: #b25e09;
}

.status-approved {
    background: #e6f7ef;
    color: #1a6b4a;
}

.status-rejected {
    background: #ffebee;
    color: #c62828;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-right: 5px;
    cursor: pointer;
}

.btn-approve {
    background: #2ecc71;
    color: white;
    border: none;
}

.btn-reject {
    background: #e74c3c;
    color: white;
    border: none;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* National Policy Direction Section Styles */
.bg-dark-gradient {
    background: linear-gradient(135deg, #1a0f21 0%, #30163a 50%, #1a0f21 100%);
    position: relative;
    overflow: hidden;
}

#kebijakan-nasional {
    padding: 100px 0;
}

#kebijakan-nasional::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(235, 83, 43, 0.1) 0%, transparent 70%);
    z-index: 1;
    animation: blobMove 20s infinite alternate;
}

#kebijakan-nasional::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(92, 44, 112, 0.15) 0%, transparent 70%);
    z-index: 1;
    animation: blobMove 15s infinite alternate-reverse;
}

@keyframes blobMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

.kebijakan-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.kebijakan-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    border-radius: 24px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.kebijakan-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(235, 83, 43, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.kebijakan-number-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: 0 10px 20px rgba(235, 83, 43, 0.4);
    border: 3px solid #30163a;
}

.kebijakan-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-orange);
    transition: var(--transition);
}

.kebijakan-card:hover .kebijakan-icon-wrapper {
    transform: rotateY(360deg);
    background: rgba(235, 83, 43, 0.1);
    color: white;
}

.kebijakan-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.kebijakan-card p strong {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Konsep Solusi Section */
#konsep-solusi {
    background-color: var(--bg-light);
}

.solusi-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.solusi-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-left: 5px solid transparent;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.solusi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(92, 44, 112, 0.1);
    border-left-color: var(--primary-orange);
}

.solusi-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.solusi-card h3 small {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solusi-card p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.solusi-list {
    list-style: none;
}

.solusi-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.solusi-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 0.8rem;
    top: 4px;
}