/* === 1. Global Reset & Setup Font === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* TAMBAHKAN INI AGAR GESERNYA HALUS */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f7f6; 
    line-height: 1.6;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f7f6; 
    line-height: 1.6;
}

/* === 2. Layout Navbar === */
.navbar {
    width: 100%; 
    background-color: #ffffff; 
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px; 
    margin: 0 auto; 
}

.navbar .logo {
    text-decoration: none;
    flex-shrink: 0;
}

.navbar .logo img {
    height: 40px;
    display: block;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links li {
    margin-left: 0;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 8px 16px;
    display: block;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #00C4CC;
}

.reserve-btn {
    font-family: 'Nunito', sans-serif;
    background-color: #FF6B00;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
    font-size: 14px;
    flex-shrink: 0;
}

.reserve-btn:hover {
    background-color: #e05e00;
}

/* === 3. Hero Section (Video) === */
.hero-wrapper {
    padding: 40px 20px; 
}

.video-container {
    max-width: 1280px; 
    margin: 0 auto; 
    border-radius: 16px;
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
}

.video-container video {
    width: 100%;
    display: block; 
}

/* === 4. Section About (Grid) === */
.about-section {
    max-width: 1280px;
    margin: 32px auto;
    padding: 0 20px;
}

.about-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 32px;
}

.about-header .pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 99px;
    background-color: #e0f8f8;
    color: #00C4CC;
    font-weight: 600;
}

.about-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    border-radius: 12px;
    padding: 24px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

/* Dark Card */
.feature-card.card-dark {
    background-color: #0d2438;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.card-dark .card-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.card-dark h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    margin-bottom: 12px;
}

.card-dark p {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.6;
    flex-grow: 1;
}

/* Toggle Switch */
.toggle-switch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}

input:checked + .slider {
    background-color: #00C4CC;
}

input:checked + .slider:before {
    transform: translateX(22px);
}

/* Image Card */
.feature-card.card-image {
    padding: 0;
    position: relative;
}

.feature-card.card-image img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    display: block;
}

.card-image .image-tag {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: #333;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
}

/* Stats Card */
.feature-card.card-light-stats {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.stat-highlight {
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}

.stat-highlight span {
    font-family: 'Nunito', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #333;
}

.stat-highlight p {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-top: -10px;
}

.stat-description {
    color: #777;
    margin: 16px 0;
    font-size: 15px;
    flex-grow: 1;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}

.stat-item span:first-child {
    font-weight: 600;
}

.dots {
    display: flex;
    gap: 4px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e0e0e0;
}

.dot.active {
    background-color: #00C4CC;
}

/* Stats Bar */
.stats-bar-header {
    text-align: center;
    margin: 64px 0 24px 0;
}

.stats-bar-header h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    color: #333;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stat-col {
    text-align: center;
}

.stat-col h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #FF6B00;
}

.stat-col p {
    color: #777;
    font-size: 16px;
}

/* === 5. Section Solution === */
.solution-section {
    max-width: 1280px;
    margin: 80px auto; 
    padding: 0 20px;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px; 
}

.solution-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1; 
}

.solution-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.solution-details {
    display: flex;
    flex-direction: column; 
    justify-content: space-between;
}

.solution-details .description {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
}

.solution-stats {
    display: flex; 
    gap: 32px; 
    margin-bottom: 40px;
    flex-wrap: wrap; 
}

.solution-stat-item {
    text-align: left;
}

.solution-stat-item .stat-number {
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #FF6B00;
    display: block; 
    margin-bottom: 4px;
}

.solution-stat-item .stat-label {
    font-size: 16px;
    color: #777;
    font-weight: 600;
}

.btn-primary {
    display: inline-block; 
    background-color: #00C4CC; 
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s ease;
    font-family: 'Nunito', sans-serif;
    align-self: flex-start;
    margin-left: 0;
}

.btn-primary:hover {
    background-color: #00a8b0; 
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 6px 18px rgba(0,196,204,0.12);
}

/* === 6. Splide Investor Section (Combining Investor styling with Splide) === */
.splide-investor-section {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 20px;
}

.splide-investor-section h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.splide-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Partner Cards (similar to carousel-item) */
.partner-card {
    flex: 0 0 180px;
    height: 100px;
    background-color: #ffffff;
    /* border-radius: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.partner-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    display: block;
}

/* Splide specific overrides */
.splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom Splide pagination */
.splide__pagination {
    margin-top: 20px;
}

.splide__pagination__page {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 6px;
    transition: background-color 300ms ease;
}

.splide__pagination__page.is-active {
    background-color: #00C4CC;
}

/* === 7. Manual Investor Section with CSS Animation === */
.investor-section {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 20px;
}

.investor-section h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-600px);
    }
}

.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

.carousel-item {
    flex: 0 0 180px;
    height: 100px;
    background-color: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-right: 20px;
}

.carousel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    display: block;
}

/* === 8. Footer === */
.site-footer {
    background-color: #0d2438;
    color: #c0c0c0;
    padding: 60px 40px 20px 40px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

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

.footer-col .footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

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

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

.footer-col ul a {
    text-decoration: none;
    color: #c0c0c0;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: #00C4CC;
}

.footer-bottom {
    border-top: 1px solid #3a5368;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #8a9aaa;
}

/* === 9. Media Queries === */
@media (max-width: 1024px) {
    .partner-card {
        flex: 0 0 160px;
        height: 90px;
    }
    
    .carousel-item {
        flex: 0 0 160px;
        height: 90px;
    }
}

@media (max-width: 900px) {
    .solution-content {
        grid-template-columns: 1fr; 
    }

    .solution-details {
        text-align: center; 
    }

    .solution-stats {
        justify-content: center; 
    }

    .solution-stat-item {
        text-align: center;
    }

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

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

@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
    }

    .navbar-content {
        gap: 12px;
    }

    .navbar .logo img {
        height: 32px;
    }

    .nav-links {
        display: none;
    }

    .nav-links ul {
        display: flex;
        gap: 0;
    }

    .nav-links li {
        margin-left: 0;
    }

    .nav-links a {
        font-size: 12px;
        padding: 6px 12px;
    }

    .reserve-btn {
        padding: 6px 16px;
        font-size: 12px;
    }

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

    .investor-section h3,
    .splide-investor-section h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .partner-card {
        flex: 0 0 140px;
        height: 80px;
    }

    .carousel-item {
        flex: 0 0 140px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }

    .investor-section {
        margin: 60px auto;
        padding: 0 12px;
    }

    .splide-investor-section {
        margin: 60px auto;
        padding: 0 12px;
    }

    .investor-section h3,
    .splide-investor-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .carousel-wrapper,
    .splide-wrapper {
        padding: 15px 0;
    }

    .partner-card {
        flex: 0 0 120px;
        height: 70px;
    }

    .carousel-item {
        flex: 0 0 120px;
        height: 70px;
    }

    .hero-wrapper {
        padding: 20px 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* === 10. Team Section Styling === */
.team-section {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header .pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 99px;
    background-color: #e0f8f8;
    color: #00C4CC;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    color: #333;
    margin-bottom: 16px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 32px;
    justify-content: center;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #eee;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-img-wrapper {
    width: 100%;
    height: 280px;
    background-color: #f0f0f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.team-info {
    padding: 20px;
}

.team-info h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #333;
    margin-bottom: 4px;
}

.team-info .role {
    display: block;
    color: #FF6B00; /* Warna Oranye Terangin */
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.team-info .major {
    font-size: 13px;
    color: #777;
}

/* === 11. Prestasi Section Styling === */
.prestasi-section {
    background-color: #0d2438; /* Dark Blue Theme */
    color: white;
    padding: 80px 20px;
    margin-top: 80px;
}

.prestasi-header {
    text-align: center;
    margin-bottom: 48px;
}

.prestasi-header h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    margin-bottom: 12px;
    color: #fff;
}

.prestasi-header p {
    color: #c0c0c0;
}

.prestasi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.prestasi-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: background-color 0.3s ease;
}

.prestasi-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.trophy-icon {
    font-size: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.prestasi-content h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #00C4CC; /* Teal accent */
    margin-bottom: 4px;
}

.prestasi-content .organizer {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.prestasi-content .desc {
    font-size: 13px;
    color: #c0c0c0;
    line-height: 1.5;
}