/* Global Styles */
:root {
    --primary: #198754;
    --primary-light: #20c997;
    --dark: #212529;
    --light: #f8f9fa;
    --gray: #6c757d;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-link.active {
    font-weight: 600;
}

/* Hero Section */
.kemitraan-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)), url('../img/background1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-badge {
    display: inline-block;
    background: rgba(25, 135, 84, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Requirements Section */
.requirements-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
}

.requirement-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.requirement-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 180px;
    position: relative;
    padding: 0 1rem;
    text-align: center;
    z-index: 1;
}

.process-step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 40px;
    left: 75%;
    width: 50%;
    height: 3px;
    background: var(--primary);
    z-index: -1;
}

.process-content {
    position: relative;
    padding-top: 80px;
}

.process-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-rating {
    font-size: 1.2rem;
}

/* Modal Form */
#kemitraanModal .modal-header {
    border-bottom: none;
    padding: 1.5rem;
}

#kemitraanModal .modal-title {
    font-weight: 600;
}

#kemitraanModal .alert {
    border-left: 4px solid #0dcaf0;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: none;
    z-index: 99;
}

/* Animations */
.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .process-step {
        flex: 100%;
        margin-bottom: 3rem;
    }

    .process-step:after {
        display: none;
    }

    .process-content {
        padding-top: 60px;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .kemitraan-hero {
        min-height: auto;
        padding: 100px 0;
    }

    .navbar {
        padding: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }
}

/* Custom Styles for the Modal */
.bg-gradient-success {
    background: linear-gradient(135deg, #198754, #20c997);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-light-success {
    background-color: rgba(25, 135, 84, 0.05);
}

.form-floating label {
    color: #495057;
}

.form-control:focus, .form-select:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.btn-success {
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.3);
}

.modal-content {
    border-radius: 0.75rem;
    overflow: hidden;
}

.modal-header {
    border-bottom: none;
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

