/* CSS Tambahan untuk perbaikan layout */
:root {
    --primary: #0A1A3A;    /* Biru dongker */
    --secondary: #DC2626;  /* Merah */
    --accent: #EF4444;     /* Merah lebih terang */
    --neutral: #FFFFFF;    /* Putih */
    --text: #1F2937;       /* Abu-abu gelap untuk teks */
    --background: #F8FAFC; /* Putih smoke untuk background */
    --light-bg: #F1F5F9;   /* Background sangat light */

    --primary-main: #2c5aa0;
    --primary-main-gradient-end: #1e3a8a;
    --accent-color: #f59e0b;
    --secondary-main: #3b82f6;
    --text-color: #374151;
    --white-color: #ffffff;
    --bezier-main: cubic-bezier(0.4, 0, 0.2, 1);

    --primary-dark: #02263acb; /* Biru dongker */
    /* --primary-medium: #283593; Biru dongker lebih terang */
    --primary-medium: #093859; /* Biru dongker lebih terang */
    --accent-red: #d32f2f; /* Merah */
    --accent-red-dark: #b71c1c; /* Merah lebih gelap */
    --white-color: #ffffff;
    --light-gray: #f5f5f5;
    --bezier-main: cubic-bezier(0.4, 0, 0.2, 1);

    --primary-green: rgb(8, 33, 83);
    --primary-dark-green: rgb(175, 22, 8);
    --accent-teal: white;
    --accent-light-green: #611b08;
    --accent-gold: #DAA520;
    --accent-coral: #FF7F50;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --shadow: 0 10px 30px rgba(46, 139, 87, 0.15);
    --shadow-hover: 0 20px 50px rgba(46, 139, 87, 0.25);

    --primary-red: #DC2626;
    --primary-dark-blue: #1E3A8A;
    --accent-blue: #2563EB;
    --accent-light-red: #FECACA;
    --white: #FFFFFF;
    --gray-light: #F8FAFC;
    --gray-100: #F1F5F9;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --shadow: 0 8px 30px rgba(30, 58, 138, 0.1);
    --shadow-hover: 0 15px 40px rgba(30, 58, 138, 0.15);
}

/************************************/
/***     34. Stats Section CSS    ***/
/************************************/
/* Stats Section Styles */
.stats-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 15% 70%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.stat-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.stat-section-subtitle {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px 25px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 25px;
    border: 1.5px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
}

.stat-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.stat-section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-dark-blue));
    border-radius: 2px;
}

.stat-section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.7;
}

.stats-grid {
    position: relative;
    z-index: 2;
}

.stat-item {
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.1),
        rgba(245, 158, 11, 0.1),
        rgba(139, 92, 246, 0.1));

    transition: opacity 0.5s ease;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.1),
        rgba(245, 158, 11, 0.1),
        rgba(139, 92, 246, 0.1));
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-icon-wrapper {
    position: relative;
    margin-bottom: 35px;
}

.stat-icon-bg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.stat-icon-bg::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.2;
    z-index: -1;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.stat-item:hover .stat-icon-bg::before {
    transform: scale(1.2);
}

.stat-item:hover .stat-icon-bg {
    transform: rotate(15deg) scale(1.1);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    position: relative;
}

.stat-number::after {
    content: "+";
    font-size: 2.5rem;
    margin-left: 5px;
    position: absolute;
    top: -10px;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.stat-label::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.stat-item:hover .stat-label::after {
    width: 80px;
}

.stat-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* Warna berbeda untuk setiap card */
.stat-item:nth-child(1) {
    border-top: 4px solid #1E3A8A;
}

.stat-item:nth-child(1) .stat-icon-bg {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    color: #fff;
}

.stat-item:nth-child(1) .stat-number {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(1) .stat-label::after {
    background: #2563eb;
}

.stat-item:nth-child(2) {
    border-top: 4px solid #10b981;
}

.stat-item:nth-child(2) .stat-icon-bg {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.stat-item:nth-child(2) .stat-number {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(2) .stat-label::after {
    background: #10b981;
}

.stat-item:nth-child(3) {
    border-top: 4px solid #f59e0b;
}

.stat-item:nth-child(3) .stat-icon-bg {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.stat-item:nth-child(3) .stat-number {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(3) .stat-label::after {
    background: #f59e0b;
}

.stat-item:nth-child(4) {
    border-top: 4px solid #8b5cf6;
}

.stat-item:nth-child(4) .stat-icon-bg {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.stat-item:nth-child(4) .stat-number {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(4) .stat-label::after {
    background: #8b5cf6;
}

/* Animasi counter */
.stat-number.counting {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Pattern overlay */
.stats-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 25% 25%, #2563eb 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #f59e0b 2px, transparent 2px);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .stats-section {
        padding: 80px 0;
    }

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

    .stat-item {
        padding: 40px 25px;
        margin-bottom: 25px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-icon-bg {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .stats-section {
        padding: 60px 0;
    }

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

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

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-icon-bg {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-description {
        font-size: 0.9rem;
    }
}

/************************************/
/***     35. Modern Footer CSS    ***/
/************************************/

footer {
background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-main-gradient-end) 100%);
position: relative;
color: var(--white-color);
margin-top: 0;
}

.footer-wave {
position: absolute;
top: -2px;
left: 0;
width: 100%;
line-height: 0;
}

.footer-wave svg {
width: calc(100% + 1.3px);
height: 80px;
display: block;
}

.footer-wave .shape-fill {
fill: var(--white-color);
}

.footer-main {
/* padding: 80px 0 40px; */
padding: 80px 0 0px;
position: relative;
z-index: 2;
}

.footer-logo {
height: 60px;
margin-bottom: 25px;
filter: brightness(0) invert(1);
}

.footer-about {
font-size: 1rem;
line-height: 1.7;
margin-bottom: 30px;
opacity: 0.9;
}

.footer-heading {
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 25px;
color: var(--white-color);
position: relative;
padding-bottom: 12px;
}

.footer-heading::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 3px;
background: var(--accent-color);
border-radius: 2px;
}

.footer-links {
list-style: none;
padding: 0;
margin: 0;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links li:last-child {
margin-bottom: 0;
}

.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 0.3s var(--bezier-main);
display: flex;
align-items: center;
padding: 8px 0;
position: relative;
overflow: hidden;
}

.footer-links a::before {
content: "";
position: absolute;
left: -100%;
bottom: 0;
width: 100%;
height: 2px;
background: var(--accent-color);
transition: left 0.3s var(--bezier-main);
}

.footer-links a:hover {
color: var(--white-color);
transform: translateX(8px);
}

.footer-links a:hover::before {
left: 0;
}

.footer-links i {
margin-right: 12px;
font-size: 0.8rem;
color: var(--accent-color);
transition: transform 0.3s var(--bezier-main);
}

.footer-links a:hover i {
transform: rotate(90deg);
}

.contact-info-footer {
list-style: none;
padding: 0;
margin: 0;
}

.contact-info-footer li {
display: flex;
align-items: flex-start;
margin-bottom: 20px;
padding: 15px;
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
transition: all 0.3s var(--bezier-main);
}

.contact-info-footer li:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateX(5px);
}

.contact-info-footer i {
color: var(--accent-color);
font-size: 1.2rem;
margin-right: 15px;
margin-top: 2px;
flex-shrink: 0;
}

.contact-info-footer span {
line-height: 1.5;
opacity: 0.9;
}

.social-links {
display: flex;
gap: 12px;
margin-top: 25px;
}

.social-link {
display: flex;
align-items: center;
justify-content: center;
width: 45px;
height: 45px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: var(--white-color);
text-decoration: none;
transition: all 0.3s var(--bezier-main);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
background: var(--accent-color);
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
color: var(--white-color);
}

.newsletter-form {
display: flex;
gap: 10px;
margin-top: 20px;
}

.newsletter-input {
flex: 1;
padding: 12px 16px;
border: none;
border-radius: 8px;
background: rgba(255, 255, 255, 0.1);
color: var(--white-color);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s var(--bezier-main);
}

.newsletter-input::placeholder {
color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
outline: none;
background: rgba(255, 255, 255, 0.15);
border-color: var(--accent-color);
}

.newsletter-btn {
padding: 12px 24px;
background: var(--accent-color);
color: var(--white-color);
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s var(--bezier-main);
white-space: nowrap;
}

.newsletter-btn:hover {
background: var(--secondary-main);
transform: translateY(-2px);
}

.footer-bottom {
background: rgba(0, 0, 0, 0.2);
padding: 25px 0;
position: relative;
z-index: 2;
}

.footer-bottom-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.copyright {
color: rgba(255, 255, 255, 0.8);
font-size: 0.9rem;
}

.footer-legal {
display: flex;
gap: 25px;
}

.footer-legal a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
font-size: 0.9rem;
transition: all 0.3s var(--bezier-main);
position: relative;
}

.footer-legal a::after {
content: "";
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 1px;
background: var(--accent-color);
transition: width 0.3s var(--bezier-main);
}

.footer-legal a:hover {
color: var(--white-color);
}

.footer-legal a:hover::after {
width: 100%;
}

/* Responsive Design */
@media (max-width: 991px) {
.stats-section {
padding: 60px 0;
}

.stat-item {
padding: 30px 15px;
margin-bottom: 20px;
}

.stat-number {
font-size: 2.8rem;
}

.footer-main {
padding: 60px 0 30px;
}

.footer-bottom-content {
flex-direction: column;
text-align: center;
}

.footer-legal {
justify-content: center;
}
}

@media (max-width: 767px) {
.stat-number {
font-size: 2.2rem;
}

.stat-label {
font-size: 1rem;
}

.newsletter-form {
flex-direction: column;
}

.footer-heading::after {
left: 50%;
transform: translateX(-50%);
}

.contact-info-footer li {
margin-bottom: 15px;
}

.social-links {
justify-content: center;
}

.hero-content .titles {
width: 100% !important;
}
}

@media (max-width: 575px) {
.stat-number {
font-size: 1.8rem;
}

.footer-links a {
justify-content: center;
}

.footer-legal {
flex-direction: column;
gap: 10px;
}
}

/* Schedule Section Styles */
.schedule-section {
    padding: 100px 0;
    background:linear-gradient(135deg, #7892ba69 0%, #590a1129 50%, #2c5aa0 100%), radial-gradient(circle at 20% 80%, rgba(46, 139, 87, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(32, 178, 170, 0.06) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.schedule-section::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" fill="%232E8B57" opacity="0.03"><path d="M20,20 Q40,5 60,20 T100,20 Q85,40 100,60 T100,100 Q60,85 20,100 T0,100 Q5,60 0,20 T20,20Z"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%2320B2AA" opacity="0.02"><circle cx="50" cy="50" r="3"/></svg>');
    background-size: 200px 200px, 80px 80px;
    animation: backgroundMove 20s infinite linear;
}

@keyframes backgroundMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 200px 200px, 80px 80px; }
}

.jadwal-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.jadwal-section-subtitle {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px 25px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 25px;
    border: 1.5px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
}

.jadwal-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.jadwal-section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-dark-blue));
    border-radius: 2px;
}

.jadwal-section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.7;
}

.jadwal-section-subtitle::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.jadwal-section-subtitle:hover::before {
    left: 100%;
}

.jadwal-section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
    border-radius: 2px;
}

/* Filter Section */
.filter-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

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

.filter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--primary-green),
        var(--accent-teal),
        var(--accent-gold),
        var(--accent-coral));
    border-radius: 20px 20px 0 0;
}

.filter-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-title i {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.filter-group {
    margin-bottom: 0;
    position: relative;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
    padding-left: 5px;
}

.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8f5e8;
    border-radius: 12px;
    background: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232E8B57'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
    transform: translateY(-2px);
}

.filter-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.btn-filter {
    padding: 12px 25px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-filter::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-filter:hover::before {
    left: 100%;
}

.btn-reset {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--text-dark);
    border: 2px solid #dee2e6;
}

.btn-reset:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-pdf {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark-green));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
}

.btn-pdf:hover {
    background: linear-gradient(135deg, var(--primary-dark-green), #1a5a3f);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 25px rgba(46, 139, 87, 0.4);
}

/* Schedule Cards */
.schedule-cards {
    position: relative;
    z-index: 2;
}

.schedule-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-green), var(--accent-teal), var(--accent-gold));
    transition: width 0.4s ease;
}

.schedule-card::after {
    content: "";
    /* position: absolute; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.schedule-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.schedule-card:hover::before {
    width: 8px;
}

.schedule-card:hover::after {
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.program-category {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark-green));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.program-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    flex: 1;
}

.program-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.schedule-dates {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.date-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(32, 178, 170, 0.1));
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    border: 1px solid rgba(46, 139, 87, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.date-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.date-badge:hover::before {
    left: 100%;
}

.date-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 139, 87, 0.2);
}

.date-badge i {
    font-size: 0.8rem;
    color: var(--primary-green);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.program-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 6px 12px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(46, 139, 87, 0.1);
    color: var(--primary-green);
    transform: translateY(-1px);
}

.meta-item i {
    color: var(--primary-green);
    width: 14px;
    font-size: 0.8rem;
}

.btn-detail {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark-green));
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-detail:hover::before {
    left: 100%;
}

.btn-detail:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(46, 139, 87, 0.4);
}

/* View All Button */
.view-all-section {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.btn-view-all {
    background: #fff;
    border: 2.5px solid var(--primary-green);
    color: var(--primary-green);
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-view-all:hover::before {
    left: 100%;
}

.btn-view-all:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(46, 139, 87, 0.3);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(46, 139, 87, 0.08);
    border-radius: 50%;
    animation: floatElement 15s infinite linear;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 50px;
    height: 50px;
    top: 25%;
    right: 10%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 12%;
    animation-delay: -10s;
}

@keyframes floatElement {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .schedule-section {
        padding: 80px 0;
    }

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

    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .program-category {
        align-self: flex-start;
    }
}

@media (max-width: 767px) {
    .schedule-section {
        padding: 60px 0;
    }

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

    .filter-section {
        padding: 25px;
    }

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

    .filter-actions {
        justify-content: center;
    }

    .schedule-card {
        padding: 25px;
    }

    .program-title {
        font-size: 1.2rem;
    }

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-detail {
        align-self: stretch;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .section-description {
        font-size: 1rem;
    }

    .date-badge {
        flex: 1;
        min-width: 130px;
        justify-content: center;
    }

    .program-meta {
        flex-direction: column;
        gap: 10px;
    }

    .btn-view-all {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Services Section - Modern & Minimalis */
.services-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.services-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-section-subtitle {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px 25px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 25px;
    border: 1.5px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
}

.services-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.services-section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-dark-blue));
    border-radius: 2px;
}

.services-section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--neutral);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    transition: width 0.4s ease;
}

.service-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--neutral);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: scale(1.1);
    transition: all 0.4s ease;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.service-card p {
    margin-bottom: 25px;
    color: var(--text);
    opacity: 0.8;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    align-self: flex-start;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--secondary);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--neutral);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a2d5f 100%);
    color: var(--neutral);
    text-align: center;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-description {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    opacity: 0.9;
}

.cta-button {
    background-color: var(--secondary);
    color: var(--neutral);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--neutral);
    /* padding: 60px 0 30px; */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--neutral);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--accent);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li {
        margin: 0 10px 10px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .service-card {
        padding: 30px 20px;
    }
}

/* Reviews Section Styles */
.dgl-reviews-section {
    padding: 80px 0;
    background:
        linear-gradient(135deg,
            rgba(220, 38, 38, 0.03) 0%,
            rgba(30, 58, 138, 0.03) 50%,
            rgba(255, 255, 255, 1) 100%),
        radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(30, 58, 138, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.dgl-reviews-section::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" fill="%23DC2626" opacity="0.02"><path d="M20,50 Q50,20 80,50 T140,50" stroke="%231E3A8A" stroke-width="2" fill="none"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%231E3A8A" opacity="0.02"><circle cx="50" cy="50" r="2"/></svg>');
    background-size: 300px 300px, 80px 80px;
    animation: dglReviewsBgMove 25s infinite linear;
}

@keyframes dglReviewsBgMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 300px 300px, 80px 80px; }
}

.dgl-reviews-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.dgl-reviews-subtitle {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px 25px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 25px;
    border: 1.5px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
}

.dgl-reviews-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.dgl-reviews-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-dark-blue));
    border-radius: 2px;
}

.dgl-reviews-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.7;
}

/* Reviews Container */
.dgl-reviews-container {
    position: relative;
    z-index: 2;
}

/* Stats Overview */
.dgl-stats-overview {
    background: linear-gradient(135deg, var(--primary-dark-blue), var(--accent-blue));
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
    margin-bottom: 50px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.dgl-stats-overview::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: dglRotate 20s infinite linear;
}

@keyframes dglRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dgl-stats-content {
    position: relative;
    z-index: 2;
}

.dgl-overall-rating {
    text-align: center;
    margin-bottom: 30px;
}

.dgl-rating-number {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.dgl-rating-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.dgl-total-reviews {
    font-size: 0.9rem;
    opacity: 0.8;
}

.dgl-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dgl-rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dgl-bar-label {
    font-size: 0.85rem;
    width: 80px;
    opacity: 0.9;
}

.dgl-bar-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.dgl-bar-fill {
    height: 100%;
    background: var(--white);
    border-radius: 3px;
    transition: width 1s ease-in-out;
}

.dgl-bar-count {
    font-size: 0.8rem;
    width: 30px;
    text-align: right;
    opacity: 0.8;
}

/* ANIMASI CAROUSEL SMOOTH */
.dgl-reviews-carousel {
    position: relative;
    min-height: 400px;
    /* margin-bottom: 40px; */
    overflow: hidden;
}

.dgl-reviews-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    box-sizing: border-box;
}

.dgl-reviews-row.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    position: relative;
    animation: slideInFromRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dgl-reviews-row.slide-out-left {
    animation: slideOutToLeft 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.dgl-reviews-row.slide-out-right {
    animation: slideOutToRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInFromRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutToLeft {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-30px); visibility: hidden; }
}

@keyframes slideOutToRight {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(30px); visibility: hidden; }
}

/* Review Cards dengan Animasi */
.dgl-review-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
    animation: cardAppear 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.dgl-review-card:nth-child(1) { animation-delay: 0.1s; }
.dgl-review-card:nth-child(2) { animation-delay: 0.2s; }
.dgl-review-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes cardAppear {
    0% { opacity: 0; transform: translateY(20px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.dgl-review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-red), var(--primary-dark-blue));
    transition: width 0.3s ease;
}

.dgl-review-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.dgl-review-card:hover::before {
    width: 5px;
}

/* Review Header */
.dgl-review-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.dgl-reviewer-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dgl-reviewer-info {
    flex: 1;
}

.dgl-reviewer-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.dgl-reviewer-company {
    font-size: 0.8rem;
    color: var(--primary-dark-blue);
    font-weight: 500;
}

/* Rating Stars */
.dgl-rating-stars {
    display: flex;
    gap: 3px;
    margin-top: 6px;
}

.dgl-star {
    color: #E5E7EB;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.dgl-star.filled {
    color: #F59E0B;
}

/* Review Content */
.dgl-review-content {
    margin-bottom: 20px;
}

.dgl-review-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Review Meta */
.dgl-review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dgl-review-date {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.dgl-review-category {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
    padding: 3px 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-blue));
}

/* Carousel Controls dengan Animasi */
.dgl-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    /* margin: 40px 0 30px 0; */
    margin: 0 0 30px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.dgl-carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-dark-blue);
    background: var(--white);
    color: var(--primary-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.dgl-carousel-arrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.6s ease;
}

.dgl-carousel-arrow:hover::before {
    left: 100%;
}

.dgl-carousel-arrow:hover {
    background: var(--primary-dark-blue);
    color: var(--white);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.dgl-carousel-arrow:active {
    transform: translateY(0) scale(0.95);
    transition: all 0.1s ease;
}

/* Dots dengan Animasi */
.dgl-carousel-dots {
    display: flex;
    gap: 12px;
    margin: 0 20px;
}

.dgl-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E7EB;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    position: relative;
    overflow: hidden;
}

.dgl-carousel-dot::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark-blue);
    border-radius: 50%;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dgl-carousel-dot.active {
    transform: scale(1.3);
}

.dgl-carousel-dot.active::before {
    left: 0;
}

.dgl-carousel-dot:active {
    transform: scale(0.9);
}

/* View All Button */
.dgl-view-all-section {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 0 15px;
    position: relative;
    z-index: 10;
}

.dgl-btn-view-all {
    background: transparent;
    border: 2.5px solid var(--primary-red);
    color: var(--primary-red);
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    box-sizing: border-box;
}

.dgl-btn-view-all::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.6s ease;
}

.dgl-btn-view-all:hover::before {
    left: 100%;
}

.dgl-btn-view-all:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/* Floating Elements */
.dgl-reviews-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.dgl-reviews-float {
    position: absolute;
    background: rgba(220, 38, 38, 0.06);
    border-radius: 50%;
    animation: dglReviewsFloat 20s infinite linear;
}

.dgl-reviews-float:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.dgl-reviews-float:nth-child(2) {
    width: 35px;
    height: 35px;
    top: 65%;
    right: 12%;
    animation-delay: -10s;
    background: rgba(30, 58, 138, 0.06);
}

@keyframes dglReviewsFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .dgl-reviews-title { font-size: 2.2rem; }
    .dgl-reviews-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .dgl-reviews-section { padding: 60px 0; }
    .dgl-reviews-title { font-size: 2rem; }
    .dgl-reviews-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .dgl-stats-overview { padding: 30px; margin-bottom: 40px; }
    .dgl-rating-number { font-size: 2.8rem; }
    .dgl-carousel-controls { gap: 25px; margin: 35px 0 25px 0; }
    .dgl-review-card:nth-child(1) { animation-delay: 0.1s; }
    .dgl-review-card:nth-child(2) { animation-delay: 0.2s; }
}

@media (max-width: 767px) {
    .dgl-reviews-section { padding: 50px 0; }
    .dgl-reviews-title { font-size: 1.8rem; }
    .dgl-reviews-description { font-size: 1rem; padding: 0 15px; }
    .dgl-reviews-row { grid-template-columns: 1fr; gap: 20px; position: relative !important; }
    .dgl-review-card {
        padding: 25px 20px;
        margin: 0 auto;
        max-width: 100%;
        width: calc(100% - 20px);
        animation: cardAppearMobile 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    }
    .dgl-review-card:nth-child(1) { animation-delay: 0.1s; }
    .dgl-review-header { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
    .dgl-reviewer-avatar { margin-bottom: 0; }
    .dgl-rating-number { font-size: 2.5rem; }
    .dgl-carousel-controls { gap: 20px; margin: 30px 0 20px 0; flex-direction: row; flex-wrap: nowrap; }
    .dgl-carousel-dots { order: 0; margin: 0 15px; }
    .dgl-carousel-arrow { width: 45px; height: 45px; font-size: 1.1rem; }
    .dgl-btn-view-all { width: 100%; max-width: 260px; padding: 12px 25px; margin: 0 auto; }
    .dgl-reviews-section + section { margin-top: 0; padding-top: 40px; }
}

@keyframes cardAppearMobile {
    0% { opacity: 0; transform: translateY(15px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 575px) {
    .dgl-reviews-description { font-size: 0.95rem; }
    .dgl-review-card { padding: 20px 15px; width: calc(100% - 10px); }
    .dgl-review-meta { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
    .dgl-stats-overview { padding: 25px 15px; margin-bottom: 30px; }
    .dgl-rating-bar { flex-wrap: wrap; gap: 8px; justify-content: space-between; }
    .dgl-bar-label { width: 70px; }
    .dgl-bar-container { min-width: 120px; flex: none; }
    .dgl-bar-count { width: 30px; }
    .dgl-btn-view-all { padding: 12px 20px; font-size: 0.85rem; max-width: 240px; }
    .dgl-carousel-controls { gap: 15px; }
    .dgl-carousel-dots { gap: 10px; margin: 0 10px; }
    .dgl-carousel-dot { width: 10px; height: 10px; }
}

@media (max-width: 400px) {
    .dgl-carousel-controls { gap: 10px; }
    .dgl-carousel-arrow { width: 40px; height: 40px; font-size: 1rem; }
    .dgl-carousel-dots { gap: 8px; margin: 0 8px; }
}

/* Reset untuk carousel rows */
.dgl-reviews-row:not(.active) { display: none; }
.dgl-reviews-row.active { display: grid; position: relative; opacity: 1; transform: none; }

/* Clients Section Styles */
.dgl-clients-section {
    padding: 60px 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(248, 250, 252, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.dgl-clients-section::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" fill="%23DC2626" opacity="0.02"><circle cx="50" cy="50" r="2"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%231E3A8A" opacity="0.02"><rect x="30" y="30" width="40" height="40" rx="5"/></svg>');
    background-size: 60px 60px, 80px 80px;
    animation: dglBackgroundMove 20s infinite linear;
}

@keyframes dglBackgroundMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 60px 60px, 80px 80px; }
}

.dgl-section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.dgl-section-subtitle {
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 12px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 20px;
}

.dgl-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.dgl-section-description {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Clients Container */
.dgl-clients-container {
    position: relative;
    z-index: 2;
}

/* Logo Slider */
.dgl-logo-slider-container {
    position: relative;
    padding: 20px 0;
}

.dgl-slider-track {
    display: flex;
    width: max-content;
}

.dgl-track-1 {
    animation: dglSlideLeft 40s linear infinite;
    margin-bottom: 15px;
}

.dgl-track-2 {
    animation: dglSlideRight 35s linear infinite;
}

@keyframes dglSlideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes dglSlideRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.dgl-logo-item {
    flex: 0 0 auto;
    width: 230px;
    height: 140px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 15px 20px; */
    margin: 0 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dgl-logo-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(220, 38, 38, 0.02) 0%,
        rgba(30, 58, 138, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dgl-logo-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.dgl-logo-item:hover::before {
    opacity: 1;
}

.dgl-logo-image {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.dgl-logo-item:hover .dgl-logo-image {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Stats Cards */
.dgl-stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.dgl-stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dgl-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-red), var(--primary-dark-blue));
}

.dgl-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.dgl-stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    margin: 0 auto 12px;
}

.dgl-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1;
}

.dgl-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* CTA Section */
.dgl-cta-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg,
        rgba(220, 38, 38, 0.03) 0%,
        rgba(30, 58, 138, 0.03) 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.dgl-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.05) 0%, transparent 50%);
}

.dgl-cta-content {
    position: relative;
    z-index: 2;
}

.dgl-cta-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.dgl-cta-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.dgl-btn-cta {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-blue));
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dgl-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* Floating Elements */
.dgl-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.dgl-floating-element {
    position: absolute;
    background: rgba(220, 38, 38, 0.03);
    border-radius: 50%;
    animation: dglFloatElement 20s infinite linear;
}

.dgl-floating-element:nth-child(1) {
    width: 35px;
    height: 35px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.dgl-floating-element:nth-child(2) {
    width: 25px;
    height: 25px;
    top: 65%;
    right: 12%;
    animation-delay: -10s;
    background: rgba(30, 58, 138, 0.03);
}

@keyframes dglFloatElement {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dgl-section-title {
        font-size: 1.8rem;
    }

    .dgl-logo-item {
        width: 130px;
        height: 65px;
        margin: 0 12px;
    }
}

@media (max-width: 991px) {
    .dgl-clients-section {
        padding: 50px 0;
    }

    .dgl-section-title {
        font-size: 1.6rem;
    }

    .dgl-logo-item {
        width: 120px;
        height: 60px;
        padding: 12px 15px;
        margin: 0 10px;
    }

    .dgl-logo-image {
        max-height: 30px;
    }

    .dgl-stats-cards {
        grid-template-columns: repeat(2, 1fr);
        margin: 30px 0;
    }
}

@media (max-width: 767px) {
    .dgl-section-title {
        font-size: 1.4rem;
    }

    .dgl-logo-item {
        width: 200px;
        height: 140px;
        padding: 10px 12px;
        margin: 0 8px;
    }

    .dgl-logo-image {
        max-height: 200px;
    }

    .dgl-stats-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dgl-stat-card {
        padding: 20px;
    }

    .dgl-stat-number {
        font-size: 1.6rem;
    }

    .dgl-cta-section {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .dgl-section-description {
        font-size: 0.85rem;
    }

    .dgl-logo-item {
        width: 200px;
        height: 140px;
        padding: 8px 10px;
        margin: 0 6px;
    }

    .dgl-logo-image {
        max-height: 200px;
    }

    .dgl-btn-cta {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* Mitra Section Styles */
.dgl-mitra-section {
    padding: 60px 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 250, 252, 0.99) 100%);
    position: relative;
    overflow: hidden;
}

.dgl-mitra-section::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" fill="%23DC2626" opacity="0.015"><polygon points="50,0 100,50 50,100 0,50"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%231E3A8A" opacity="0.015"><circle cx="50" cy="50" r="3"/></svg>');
    background-size: 80px 80px, 60px 60px;
    animation: dglMitraBgMove 25s infinite linear;
}

@keyframes dglMitraBgMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 80px 80px, 60px 60px; }
}

.dgl-mitra-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.dgl-mitra-subtitle {
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 12px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 20px;
}

.dgl-mitra-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.dgl-mitra-description {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mitra Container */
.dgl-mitra-container {
    position: relative;
    z-index: 2;
}

/* Mitra Slider */
.dgl-mitra-slider-container {
    position: relative;
    padding: 20px 0;
}

.dgl-mitra-track {
    display: flex;
    width: max-content;
    gap: 25px;
}

.dgl-mitra-track-1 {
    animation: dglMitraSlideLeft 45s linear infinite;
    margin-bottom: 20px;
}

.dgl-mitra-track-2 {
    animation: dglMitraSlideRight 40s linear infinite;
}

@keyframes dglMitraSlideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes dglMitraSlideRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.dgl-mitra-card {
    flex: 0 0 auto;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dgl-mitra-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(220, 38, 38, 0.02) 0%,
        rgba(30, 58, 138, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.dgl-mitra-card:hover::before {
    opacity: 1;
}

.dgl-mitra-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    /* background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-blue)); */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.dgl-mitra-logo::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dgl-mitra-card:hover .dgl-mitra-logo::before {
    opacity: 1;
}

.dgl-mitra-content {
    text-align: center;
}

.dgl-mitra-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.dgl-mitra-category {
    font-size: 0.8rem;
    color: var(--primary-dark-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: inline-block;
    padding: 4px 10px;
    background: rgba(30, 58, 138, 0.08);
    border-radius: 6px;
}

.dgl-mitra-description-short {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Mitra Stats */
.dgl-mitra-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.dgl-mitra-stat {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dgl-mitra-stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-red), var(--primary-dark-blue));
}

.dgl-mitra-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.dgl-mitra-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.dgl-mitra-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1;
}

.dgl-mitra-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* CTA Section */
.dgl-mitra-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg,
        rgba(220, 38, 38, 0.03) 0%,
        rgba(30, 58, 138, 0.03) 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.dgl-mitra-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.05) 0%, transparent 50%);
}

.dgl-mitra-cta-content {
    position: relative;
    z-index: 2;
}

.dgl-mitra-cta-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.dgl-mitra-cta-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.dgl-mitra-cta-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-blue));
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dgl-mitra-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* Floating Elements */
.dgl-mitra-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.dgl-mitra-float {
    position: absolute;
    background: rgba(220, 38, 38, 0.03);
    border-radius: 50%;
    animation: dglMitraFloat 20s infinite linear;
}

.dgl-mitra-float:nth-child(1) {
    width: 40px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dgl-mitra-float:nth-child(2) {
    width: 30px;
    height: 30px;
    top: 60%;
    right: 12%;
    animation-delay: -8s;
    background: rgba(30, 58, 138, 0.03);
}

.dgl-mitra-float:nth-child(3) {
    width: 25px;
    height: 25px;
    bottom: 30%;
    left: 15%;
    animation-delay: -16s;
}

@keyframes dglMitraFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dgl-mitra-title {
        font-size: 1.8rem;
    }

    .dgl-mitra-card {
        width: 260px;
    }
}

@media (max-width: 991px) {
    .dgl-mitra-section {
        padding: 50px 0;
    }

    .dgl-mitra-title {
        font-size: 1.6rem;
    }

    .dgl-mitra-card {
        width: 240px;
        padding: 20px;
    }

    .dgl-mitra-logo {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }

    .dgl-mitra-stats {
        grid-template-columns: repeat(2, 1fr);
        margin: 30px 0;
    }
}

@media (max-width: 767px) {
    .dgl-mitra-title {
        font-size: 1.4rem;
    }

    .dgl-mitra-card {
        width: 220px;
        padding: 18px;
    }

    .dgl-mitra-logo {
        width: 150px;
        height: 150px;
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .dgl-mitra-name {
        font-size: 1rem;
    }

    .dgl-mitra-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dgl-mitra-stat {
        padding: 20px;
    }

    .dgl-mitra-stat-number {
        font-size: 1.6rem;
    }

    .dgl-mitra-cta {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .dgl-mitra-description {
        font-size: 0.85rem;
    }

    .dgl-mitra-card {
        width: 200px;
        padding: 15px;
    }

    .dgl-mitra-logo {
        width: 150px;
        height: 150px;
        font-size: 1rem;
    }

    .dgl-mitra-cta-btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
}

/************************************/
/***      Footer Baru CSS         ***/
/************************************/
.footer-new {
    /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%); */
    background:#00183e;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
    z-index: 2;
}

.footer-new::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    transform: translate(40%, -40%);
    z-index: 1;
}

.footer-main-new {
    padding: 80px 0 40px;
    position: relative;
    z-index: 3;
}

.footer-logo-new {
    height: 65px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s var(--bezier-main);
    display: block;
}

.footer-logo-new:hover {
    transform: scale(1.05);
}

.footer-about-new {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    text-align: justify;
}

.footer-heading-new {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-heading-new::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
    transition: width 0.3s var(--bezier-main);
}

.footer-heading-new:hover::after {
    width: 100%;
}

.footer-links-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-new li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links-new li:last-child {
    margin-bottom: 0;
}

.footer-links-new a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s var(--bezier-main);
    display: flex;
    align-items: center;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.footer-links-new a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s var(--bezier-main);
}

.footer-links-new a:hover {
    color: var(--white-color);
    transform: translateX(5px);
}

.footer-links-new a:hover::before {
    width: 100%;
}

.footer-links-new i {
    margin-right: 12px;
    font-size: 0.8rem;
    color: var(--accent-red);
    transition: transform 0.3s var(--bezier-main);
    flex-shrink: 0;
}

.footer-links-new a:hover i {
    transform: translateX(3px);
}

.contact-info-footer-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-footer-new li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s var(--bezier-main);
    border-left: 3px solid transparent;
}

.contact-info-footer-new li:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    border-left: 3px solid var(--accent-red);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-footer-new i {
    color: var(--accent-red);
    font-size: 1.1rem;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info-footer-new span {
    line-height: 1.5;
    opacity: 0.9;
    font-size: 0.95rem;
}

.social-links-new {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-link-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s var(--bezier-main);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.social-link-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-red);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s var(--bezier-main);
    z-index: -1;
}

.social-link-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    color: var(--white-color);
    border-color: transparent;
}

.social-link-new:hover::before {
    transform: scale(1);
}

.newsletter-form-new {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-input-new {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s var(--bezier-main);
}

.newsletter-input-new::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-new:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2);
}

.newsletter-btn-new {
    padding: 12px 24px;
    background: var(--accent-red);
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--bezier-main);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.newsletter-btn-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.newsletter-btn-new:hover {
    background: var(--accent-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.newsletter-btn-new:hover::before {
    left: 100%;
}

.footer-bottom-new {
    background: rgba(0, 0, 0, 0.15);
    padding: 25px 0;
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-new {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-legal-new {
    display: flex;
    gap: 25px;
}

.footer-legal-new a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s var(--bezier-main);
    position: relative;
}

.footer-legal-new a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-red);
    transition: width 0.3s var(--bezier-main);
}

.footer-legal-new a:hover {
    color: var(--white-color);
}

.footer-legal-new a:hover::after {
    width: 100%;
}

/* Animasi untuk elemen footer */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-col-new {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    padding: 15px;
}

.footer-col-new:nth-child(1) { animation-delay: 0.1s; }
.footer-col-new:nth-child(2) { animation-delay: 0.2s; }
.footer-col-new:nth-child(3) { animation-delay: 0.3s; }
.footer-col-new:nth-child(4) { animation-delay: 0.4s; }

/* PERBAIKAN: Spacing dan Layout yang Lebih Rapi */
.footer-main-new .row {
    margin: 0 -10px;
}

.footer-main-new .row > [class*="col-"] {
    padding: 0 15px;
}

/* Responsive Design - Diperbaiki */
@media (max-width: 991px) {
    .footer-main-new {
        padding: 60px 0 30px;
    }

    .footer-bottom-content-new {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal-new {
        justify-content: center;
        gap: 20px;
    }

    .footer-col-new {
        margin-bottom: 30px;
        padding: 10px;
    }

    .footer-about-new {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .footer-main-new {
        padding: 50px 0 25px;
    }

    .newsletter-form-new {
        flex-direction: column;
    }

    .footer-heading-new::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info-footer-new li {
        margin-bottom: 15px;
        padding: 12px;
    }

    .social-links-new {
        justify-content: flex-start;
    }

    .footer-logo-new {
        height: 55px;
        margin-bottom: 20px;
    }

    .footer-about-new {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .footer-col-new {
        padding: 8px;
    }
}

@media (max-width: 575px) {
    .footer-links-new a {
        justify-content: flex-start;
    }

    .footer-legal-new {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info-footer-new li {
        flex-direction: column;
        /* text-align: center; */
        gap: 10px;
    }

    .contact-info-footer-new i {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .social-links-new {
        justify-content: center;
    }

    .footer-col-new {
        padding: 5px;
        margin-bottom: 25px;
    }

    .footer-heading-new {
        text-align: center;
        width: 100%;
    }

    .footer-heading-new::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* PERBAIKAN: Untuk layar sangat kecil */
@media (max-width: 400px) {
    .footer-main-new {
        padding: 40px 0 20px;
    }

    .footer-col-new {
        padding: 0;
        margin-bottom: 20px;
    }

    .social-links-new {
        gap: 8px;
    }

    .social-link-new {
        width: 40px;
        height: 40px;
    }

    .footer-bottom-new {
        padding: 20px 0;
    }
}

/* PERBAIKAN: Pastikan konten tidak mepet */
.footer-main-new .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col-new:first-child {
    padding-left: 0;
}

.footer-col-new:last-child {
    padding-right: 0;
}











