/* assets/css/components.css */
.card-custom {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.btn-custom {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-custom-primary {
    background-color: var(--primary-color);
    color: #212529;
}

.btn-custom-primary:hover {
    background-color: #e0a800;
    transform: scale(1.05);
    color: #212529;
}

.btn-custom-dark {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.btn-custom-dark:hover {
    background-color: #000000;
    transform: scale(1.05);
    color: #ffffff;
}

.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
    font-weight: 800;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 10px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.form-control-custom {
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #e9ecef;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
    outline: none;
}