/*--------------------------------------------------------------
# Thankyou Section
--------------------------------------------------------------*/
.thankyou-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0 0;
    margin-bottom: -10px;
    background-color: #f5f5f5;
    z-index: 1;
}

.thankyou-section .container {
    position: relative;
    z-index: 2;
}

.thankyou-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 200, 83, 0.1);
    z-index: 1;
}

.thankyou-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(0, 200, 83, 0.05);
    z-index: 1;
}

.thankyou-left-content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.thankyou-left-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.thankyou-left-content .inner-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.thankyou-left-content:hover .inner-content {
    transform: translateY(-10px);
}

.thankyou-left-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.thankyou-left-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.thankyou-right-content {
    background-color: #000;
    color: #fff;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    border-radius: 0 10px 10px 0;
    box-shadow/* : 0 10px 30px rgba( */0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.thankyou-right-content::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 200, 83, 0.1);
    z-index: 1;
}

.thankyou-right-content::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(0, 200, 83, 0.05);
    z-index: 1;
}

.thankyou-right-content .inner-content {
    max-width: 500px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.thankyou-right-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.thankyou-right-content h2 span {
    color: #00c853;
    position: relative;
}

.thankyou-right-content h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00c853;
}

.thankyou-right-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thankyou-contact-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thankyou-contact-info .contact-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.thankyou-contact-info .contact-link i {
    width: 36px;
    height: 36px;
    background-color: #00c853;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.thankyou-contact-info .contact-link:hover {
    color: #00c853;
}

.thankyou-contact-info .contact-link:hover i {
    background-color: #fff;
    color: #00c853;
}

/* Tambahkan style khusus untuk container dalam thankyou-section */
.thankyou-section .container > .row {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .thankyou-section {
        padding: 50px 0 0;
    }
    
    .thankyou-left-content,
    .thankyou-right-content {
        min-height: 380px;
        padding: 30px 25px;
        border-radius: 0;
    }
    
    .thankyou-left-content {
        border-radius: 10px 10px 0 0;
        padding: 0;
    }
    
    .thankyou-right-content {
        border-radius: 0 0 10px 10px;
    }
}

@media (max-width: 767px) {
    .thankyou-section {
        padding: 40px 0 0;
    }
    
    .thankyou-left-content,
    .thankyou-right-content {
        min-height: 320px;
    }
    
    .thankyou-left-content {
        padding: 0;
    }
    
    .thankyou-right-content {
        padding: 30px 20px;
    }
    
    .thankyou-right-content h2 {
        font-size: 36px;
    }
    
    .thankyou-right-content .inner-content {
        padding: 15px;
    }
    
    .thankyou-contact-info {
        margin-top: 15px;
        gap: 10px;
    }
    
    .thankyou-contact-info .contact-link {
        font-size: 14px;
    }
    
    .thankyou-contact-info .contact-link i {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
}

/* Fix untuk spacing antara thankyou section dan footer */
.thankyou-section + footer,
.thankyou-section + .site-footer,
.thankyou-section + * {
    margin-top: 0 !important;
    padding-top: 60px;
}

/* Fix untuk wrapper thankyou section */
.page-wrapper {
    overflow-x: hidden;
} 
} 